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