A
Q. What is the output for the below code?
class A{
public A(){
System.out.println("A");
}
public A(int i){
this();
System.out.println(i);
}
}
class B extends A{
public B(){
System.out.println("B");
}
public B(int i){
this();
System.out.println(i+3);
}
}
public class Test{
public static void main (String[] args){
new B(5);
}
}
- Correct Answer - Option(A)
- Views: 30
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.