Multiple choice

Superclass methods with this level of access cannot be called from subclasses

  1. private

  2. public

  3. protected

  4. package

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

Private members of a superclass are not accessible to subclasses. Protected and public members are accessible, and package-private members are accessible within the same package.