Multiple choice technology programming languages

Using the "Super" keyword we can go one level up (T/F)

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.