Q75
What will be the output of the following Java code? class A public int i; private int j; class B extends A void display() super.j = super.i + 1; System.out.println(super.i + " " + super.j); class inheritance public static void main(String args[]) B obj = new B(); obj.i=1; obj.j=2; obj.display();
A.
2 2
B.
3 3
C.
Runtime Error
D.
Compilation Error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board