Which Of These Is Correct Way Of Calling A Constructor Having #304
Which of these is correct way of calling a constructor having no parameters, of superclass A by subclass B?
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Inheritance - Method Overriding in Java - Quiz No.1.
Which of these is correct way of calling a constructor having no parameters, of superclass A by subclass B?
super(void);
superclass.();
super.A();
super();