Multiple choice technology programming languages

The concept in VB.NET by which one can provide a new implementation for the base class member without overriding the member is called as

  1. Shadowing

  2. Late Binding

  3. .NET Reflection

  4. All of the above

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

Shadowing (using the Shadows keyword in VB.NET) redefines an inherited member with the same name in a derived class without overriding it, completely replacing the base class member's signature and implementation.