Question: 15. What is wrong with the following code fragment? class X { public X(int i) { } } } class Y extends X {

15. What is wrong with the following code fragment? class X { public X(int i) { } } } class Y extends X {

15. What is wrong with the following code fragment? class X { public X(int i) { } } } class Y extends X { public Y() { System.out.println(1); } System.out.println(2); 16. What is the output of the following code? class A { public int i = 10; } class B extends A{ public int i = 20; } public class MainClass { public static void main(String[] args) { A a= new B(); System.out.println(a.i);

Step by Step Solution

3.41 Rating (164 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public class CircleTest public static void mainString args Circle C1 new Circle Corrected objec... View full answer

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 Programming Questions!