Multiple choice

Which of the following access modifier is used to access members in the class and all the derived classes of the base class, but no access from any outside class, which is not the derived class of the base class?

  1. public

  2. private

  3. protected

  4. internal

  5. static

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

This access modifier is used to access members in the class and all the derived classes of the base class.