Question: JAVA Goal: Learn how to use super constructors. Assignment: The class Oven extends the class Appliance. The Appliance class has the following constructor: Appliance (

JAVA
Goal: Learn how to use super constructors.
Assignment: The class Oven extends the class Appliance. The Appliance class has the following constructor: Appliance(double price, boolean electrical). The Oven class adds one String attribute modelName. Use the super keyword to invoke the Appliance constructor within the Oven constructor:
public Oven(double price, boolean electrical, String modelName)
{
// write your code here
this.modelName=modelName;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!