

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program? 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 |
Answer» E. | |