Multiple choice technology web technology

Which access label allows the variables to be accessible in both the current assembly and by any classes derived from the base class?

  1. private

  2. protected

  3. protected internal

  4. It is not possible to do it

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

protected internal combines both access modifiers: accessible within the current assembly (internal) AND to derived classes in other assemblies (protected). private is class-only, protected excludes current assembly, and option D is incorrect.