What Will Be The Output Of The Following Java Codep Pre #877
What will be the output of the following Java code?</p> <pre><code class="language-java"> class X { public void A() { System.out.println("India-New Delhi"); } } class Y extends X { public void B() { System.out.println("USA-Washington, D.C."); } } class Z extends X { public void C() { System.out.println("England-London"); } } class V extends Y { public void D() { System.out.println("Australia-Canberra"); } } public class Capitals { public static void main(String[] args) { V obj=new V(); Z obj2=new Z(); obj.A(); obj.D(); obj2.C(); } } </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.1.
What will be the output of the following Java code?
class X { public void A() { System.out.println("India-New Delhi"); } } class Y extends X { public void B() { System.out.println("USA-Washington, D.C."); } } class Z extends X { public void C() { System.out.println("England-London"); } } class V extends Y { public void D() { System.out.println("Australia-Canberra"); } } public class Capitals { public static void main(String[] args) { V obj=new V(); Z obj2=new Z(); obj.A(); obj.D(); obj2.C(); } }
India-New Delhi Australia-Canberra England-London
India-New Delhi USA-Washington, D.C. England-London
USA-Washington, D.C. Australia-Canberra India-New Delhi
Australia-Canberra India-New Delhi USA-Washington, D.C.