- A Compilation Fails
- B Prints 0
- C Prints 10
- D Prints 7
Java Programming Language MCQ Inheritance in Java MCQ
⚠ Report ✓ Question Verified Copy Link
class A{
int b=10;
private A(){
this.b=7;
}
int f(){
return b;
}
}
class B extends A{
int b;
}
public class Test{
public static void main(String[] args){
A a = new B();
System.out.println(a.f());
}
}
Learn More MCQ Questions from Java Programming Language MCQ Inheritance in Java MCQ