Multiple choice .net asp

Custom Controls are derived from which of the classes

  1. System.Web.UI.Webcontrol

  2. System.Web.UI.Customcontrol

  3. System.Web.UI.Customcontrols.Webcontrol

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

Custom controls in ASP.NET typically derive from System.Web.UI.WebControls.WebControl (for UI-heavy controls) or System.Web.UI.Control (for logic-heavy controls). The option provided (2625) appears to be a specific or slightly mislabeled hierarchy, but WebControl is the standard base.