OD
(Choose 1 answer)
final class A
{
What will be the output of the following Java program?
A. Compiler error
int i;}class B extends A
B. Display nothing (empty)
C. Runtime Error
{ } int i;System.out.println(j + " " + i);
D. 00
class inheritance
{ public static void main(String args[])
B obj = new B();obj.display();
}
}
Exit 13