What Will Be The Output Of The Following Java Codep Pre #881
What will be the output of the following Java code?</p> <pre><code class="language-java"> class X { public void A() { System.out.println("Superclass"); } } class Y extends X { public void B() { System.out.println("Subclass of X"); } } class Z extends X { public void C() { System.out.println("Subclass of X"); } } class V extends Y { public void D() { System.out.println("Subclass of Y"); } } public class Superclass { public static void main(String[] args) { V obj=new V(); obj.A(); obj.D(); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs111 OOP Object Oriented Programming Java. It can also be found in gs gs111 Inheritance (Using Java) - Hybrid Inheritance - Quiz No.2.
What will be the output of the following Java code?
class X { public void A() { System.out.println("Superclass"); } } class Y extends X { public void B() { System.out.println("Subclass of X"); } } class Z extends X { public void C() { System.out.println("Subclass of X"); } } class V extends Y { public void D() { System.out.println("Subclass of Y"); } } public class Superclass { public static void main(String[] args) { V obj=new V(); obj.A(); obj.D(); } }
Superclass Subclass of Y
Superclass Subclass of X
Subclass of X Subclass of Y
Superclass Superclass