A

Admin • 828.03K Points
Coach

Q. Determine output:
class Small{
public Small(){
System.out.print("a ");
}
}
class Small2 extends Small{
public Small2(){
System.out.print("b ");
}
}
class Small3 extends Small2{
public Small3(){
System.out.print("c ");
}
}
public class Test{
public static void main(String args[]){
new Small3();
}
}

  • (A) a
  • (B) c
  • (C) a b c
  • (D) a b c D. c b a
  • Correct Answer - Option(C)
  • Views: 15
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.