Multiple choice c sharp

Method Overriding is

  1. Static polymorphism

  2. Dynamic polymorphism

  3. Both static and dynamic polymorphism

  4. Not a polymorphism

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

Method overriding is a feature that allows a subclass to provide a specific implementation of a method already defined in its superclass. The specific method to be executed is determined at runtime, making it dynamic polymorphism.