package net.dharmaraj;
class Base {
protected int i = 99;
}
public class Ab {
private int i = 1;
public static void main(String argv[]) {
Ab a = new Ab();
System.out.println(a.i);
a.hallow();
}
void hallow() {
System.out.println("Claines " + i);
}
}
1) Compile time error
2) Compilation and output of Claines 99
3) Compilation and output of Claines 1
4) Compilation and not output at runtime
Answer:--
1
Claines 1
No comments:
Post a Comment