Home »
MCQs »
Java MCQs
The 'super' keyword is used to ___
32. The 'super' keyword is used to ___.
- Access instance of the parent class
- Access instance of the same class
- Access instance of child class
- Access instance of friend class
Answer: A) Access instance of the parent class
Explanation:
The super keyword refers to superclass (parent) objects. It is used to call superclass methods, and to access the superclass constructor.