Question: Analyze the following code: public class A{ public void print() { System.out.println(A); } } public class B extends A{ public static void main(String[] args) {

 Analyze the following code: public class A{ public void print() {

Analyze the following code: public class A{ public void print() { System.out.println("A"); } } public class B extends A{ public static void main(String[] args) { A a = new A(); a.print(); } public void print() { System.out.println("B"); } } Program compiles and prints 'A' Program compiles and prints 'B' O Program compiles and prints 'A' followed by 'B' O Program compiles and prints 'B' followed by 'A

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!