Multiple choice technology programming languages

Methods that are marked protected can be called in any subclass of that class.

  1. True

  2. False

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

The protected access modifier allows members to be accessed within the same package and by subclasses, even if those subclasses are in different packages. This statement correctly describes that protected methods can indeed be called in any subclass.