Multiple choice .net Which statement will call a constructor of a base class? Base.New( ) BaseConstructor.New ( ) CallBase.New( ) Constructor.New ( ) 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.