Question
class Bus
{
void seatingCapacity()
{
System.out.println("Superclass Seats=32");
}
}
class ElectricBus extends Bus
{
void seatingCapacity()
{
System.out.println("Subclass Seats=20");
}
void showInfo()
{
seatingCapacity();
this.seatingCapacity();
}
}
public class MethodOverriding1
{
public static void main(String[] args)
{
ElectricBus eb = new ElectricBus();
eb.showInfo();
}
}
a.
Subclass Seats=20
Superclass Seats=32
b.
Superclass Seats=32
Subclass Seats=20
c.
Superclass Seats=32
Superclass Seats=32
d.
Subclass Seats=20
Subclass Seats=20
Posted under Java Programming
Subclass Seats=20
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of the below Java program with Method Overriding?
Similar Questions
Discover Related MCQs
Q. Identify INVALID Java Method Overriding in the below code snippets?
Follow the notation "superclassMethod" and "subclassMethod".
View solution
Q. A successful Method Overriding calls the method of ___ in Java.
View solution
Q. A failed method overriding calls the method of a ___ in Java.
View solution
Q. If the method signature of a Superclass and the method signature of a Subclass are the same, then the subclass method is said to be _____ the superclass's method.
View solution
Q. A method of a Superclass can not override the method of the Subclass. State TRUE or FALSE.
View solution
Q. Method overriding increases the burden on the JVM in terms of runtime checks and resolution. State TRUE or FALSE.
View solution
Q. What are the advantages of Method Overriding in Java?
View solution
Q. An Overridden method is the method of ____ class and the overriding method is the method of ___ class.
View solution
Q. To successfully override a superclass method in Java, the access modifier of the method of the subclass can be ___ restrictive.
View solution
Q. Which is the correct way of overriding a method throwing exceptions in Java?
View solution
Q. An abstract class in Java can be created using the keyword ____.
View solution
Q. To create an Abstract class, the keyword "class" is also required. State TRUE or FALSE.
View solution
Q. Can you create an object from an abstract class in Java?
View solution
Q. Which is the opposite of an Abstract Class?
View solution
Q. Choose a correct implementation of an Abstract class in the below Java code?
View solution
Q. An abstract class in Java usually contains one or more abstract ____.
View solution
Q. An object of multi-level inherited abstract class can not be created in memory? State TRUE or FALSE.
View solution
Q. An abstract class with 100% abstract methods is equivalent to ______.
View solution
Q. Choose a correct statement about abstract classes?
View solution
Q. Choose correct statements about an Abstract class in Java?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!