Multiple choice .net

Which statement will call a constructor of a base class?

  1. Base.New( )

  2. BaseConstructor.New ( )

  3. CallBase.New( )

  4. Constructor.New ( )

  5. MyBase.New( )

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

In VB.NET, the 'MyBase' keyword refers to the base class in inheritance. 'MyBase.New()' explicitly calls the base class constructor from the derived class constructor, ensuring proper initialization of the inherited portion of the object.