Multiple choice technology programming languages

Using super keywork how many levels up we can go

  1. one level

  2. two levels

  3. multiple levels

  4. none

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The 'super' keyword in Java specifically refers to the immediate parent class of the current subclass. It allows you to access parent class methods, constructors, and fields, but only ONE level up in the inheritance hierarchy. You cannot use 'super' to access a grandparent class directly - you would need to chain through the parent class. Option A is correct.