Using the "Super" keyword we can go one level up (T/F)
A
Correct answer
Explanation
The 'super' keyword in Java provides access to the immediate parent class (one level up in the inheritance hierarchy). It can be used to call parent class constructors, access hidden fields, or invoke overridden methods. This statement is True - super only goes one level up to the direct parent.