Multiple choice technology web technology

Only Abstract class, Static class and Sealed class are in .Net

  1. True

  2. False

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

False is correct because .NET supports many more class types beyond just these three. .NET includes partial classes (split across files), generic classes (with type parameters), abstract classes (cannot be instantiated), static classes (only static members), sealed classes (cannot be inherited), and regular concrete classes. The statement is too restrictive.