Multiple choice technology programming languages

who can have access for protected internal Access Modifier?

  1. Either code from derived type or code in the same assembly

  2. Only members within the same type

  3. Only derived types or members of the same type.

  4. Only code within the same assembly

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

The protected internal access modifier in C# allows access from any code within the same assembly, or from derived classes in other assemblies. The other options are incorrect because they restrict access to only the same assembly, only the same type, or only derived types within the same assembly.