(Choose 1 answer)
final class A
What will be the output of the following Java program?
{ 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