Home »
MCQs »
C# MCQs
The protected access modifier defines a member that can be accessible within ___
79. The protected access modifier defines a member that can be accessible within ___.
- its class and all other classes
- its class and by derived class instances
- its class only
- None of the above
Answer: B) its class and by derived class instances
Explanation:
In C#, the protected access modifier defines a member that can be accessible within its class and by derived class instances.