Question:Which of the following is an example of polymorphism in C#?
A Overloading methods.
B Inheritance.
C Abstract classes.
D All
/28
+ Answer
D
+ ExplanationPolymorphism in C# can be achieved through method overloading (compile-time polymorphism) and method overriding (runtime polymorphism), both of which can involve inheritance and abstract classes.