What is the output of the following code ?


			  		

Loading

โœช Choose the correct option.

What is the output of the following code ?

class A {
public int i;
protected int j;
}

class B extends A {
int j;
void display() {
super.j = 3;
System.out.println(i + " " + j);
}
}

class Output {
public static void main(String args[]) {
B obj = new B();
obj.i = 1;
obj.j = 2;
obj.display();
}
}

A. 44594
B. 44593
C. 44562
D. 44563

Leave a Comment