}
(Choose 1 answer)
private class Base{
What will be the result when you try to compile and run the following code?
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