True is correct because these five are indeed the standard access specifiers in .NET (C# and VB.NET). Private restricts access to the containing class, Protected to derived classes, Public to any code, Internal to the same assembly, and Protected Internal to either derived classes or same assembly. These are the fundamental access modifiers for controlling member visibility.