Consider the following class hierarchy: public class Vehicle
{
Private String type;
Public Vehicle(String type)
{
This.type = type;
}
Public String displayInfo()
{
Return type;
}
}
Public class LandVehicle extends Vehicle
{
Public LandVehicle(String type)
{
Super(type) ;
}
}
Public class Auto extends LandVehicle
{
Public Auto(String type)
{
Super(type) ;
}
}
You have written a program to use these classes, as shown in the following code snippet:
Public class VehicleTester
{
Public static void main(String[] args)
{
Auto myAuto = new Auto("sedan") ;
System.out.println("MyAuto type = " + ______) ;
}
}
Complete the code in this program snippet to correctly display the auto's type.
A) myAuto.displayInfo()
B) myAuto.super.displayInfo()
C) myAuto.super.super.displayInfo()
D) This cannot be done unless the Auto class overrides the displayInfo method.
Correct Answer:
Verified
Q30: Which of the following statements about superclasses
Q31: Which of the following indicates that a
Q32: Consider the following code snippet: public class
Q34: Consider the following code snippet: public class
Q35: Consider the following class hierarchy: public class
Q35: Which of the following is true regarding
Q36: Consider the following code snippet: public class
Q39: Which of the following indicates that a
Q41: Consider the following code snippet: public class
Q42: Consider the following code snippet: public class
Unlock this Answer For Free Now!
View this answer and more for free by performing one of the following actions
Scan the QR code to install the App and get 2 free unlocks
Unlock quizzes for free by uploading documents