Which of this keyword can be used in a subclass to call the constructor of superclass?
2.
What is the process of defining a method in a subclass having same name & type signature as a method in its superclass?
3.
Which of these keywords can be used to prevent Method overriding?
Explanation: To disallow a method from being overridden, specify final as a modifier at the start of its declaration. Methods declared as final cannot be overridden.
4.
Which of these is correct way of calling a constructor having no parameters, of superclass A by subclass B?
5.
At line number 2 in the following code, choose 3 valid data-type attributes/qualifiers among “final, static, native, public, private, abstract, protected”
Explanation: Every interface variable is implicitly public static and final.