(Choose 1 answer)
class Base{
What will happen when you attempt to compile and run the following code
protected int i = 99;}
public class Ab{
private int i=1;
public static void main(String argv[]){
Ab a = new Ab();
a.hallow();
}
abstract void hallow(){
System.out.println("Claines "+i);}
}
A. Compile time error
B. Compilation and output of Claines 99
C. Compilation and output of Claines 1
D. Compilation and not output at runtime
Q: 48