Multiple choice .net c-sharp

Exception objects are derived from the class.

  1. Try

  2. Catch

  3. Exception

  4. Event

  5. System

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

In .NET and Java, the base class for all exceptions is named Exception. Try and Catch are keywords used for handling exceptions, not classes for derivation. Event and System are related to the broader framework but do not serve as the specific base for exception objects.