Single Choice Not Set

QDetermine 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();
      }
}

ID: #2270 Inheritance in Java MCQ 1,883 views
Question Info
#2270Q ID
Not SetDifficulty
Inheritance in Java MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A a
  • B c
  • C a b c
  • D c b a
Correct Answer

Explanation

a b c

Share This Question

Challenge a friend or share with your study group.