Question: Analyze the following code: public class A{ public void print() { System.out.println(A); } } public class B extends A{ public static void main(Stringargs) { Bb
Analyze the following code: public class A{ public void print() { System.out.println("A"); } } public class B extends A{ public static void main(Stringargs) { Bb = new B(); b.print(); } public void print() { System.out.println("B"); } } O Program compiles and prints 'A' O Program compilcs and prints 'B' followed by 'A' O Program compiles and prints 'B' Program compiles and prints 'A' followed by 'B
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
