(Choose 1 answer)
What will be the result when you try to compile and run the following code?
}
private class Base{
Base(){
int i = 100;
System.out.println(i);
}
}
public class Pri extends Base{
static int i = 200;
public static void main(String argv[]){Pri p = new Pri();
System.out.println(i);}
A. Error at compile time
B. 200
C. 100 followed by 200
D. 100
Exit 8