Multiple choice technology web technology

Whats the top .NET class that everything is derived from?

  1. System.Object

  2. System.Page

  3. System.Web

  4. System.Namespace

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

In .NET, System.Object is the ultimate base class from which all other classes derive. Every class in the .NET Framework, whether built-in or custom, inherits from System.Object either directly or through inheritance chains. This provides common methods like ToString(), Equals(), and GetHashCode() to all objects.