What Will Be The Output Of The Following Java Codep Pre #859
What will be the output of the following Java code?</p> <pre><code class="language-java"> class X { public void A() { System.out.print("#"); } } class Y extends X { public void B() { System.out.print("@"); } } class Z extends X { public void C() { System.out.print("&"); } } public class Symbols { public static void main(String[] args) { Y ob1 = new Y(); Z ob2 = new Z(); ob1.B(); ob2.C(); ob2.A(); } } </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) - Hierarchical Inheritance - Quiz No.1.