What is polymorphism? pl explain practically rather than
theoretical?
Answer Posted / mayur teli
Polymorphism is the ability of different classes to provide different implementation of the same public interfaces.
For Example: a Driver object can interact with Car object through a Car public interface. If another object such as Truck object or SportCar object, expose the same interface, the Driver object can interact with them without regard to specific implementation of that interface.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does out mean in c#?
How to prevent the error while updating ui control from another thread?
Explain the difference between Response.Write () and Response.Output.Write ().
Can you inherit multiple abstract classes in c#?
What is state c#?
What is private virtual in C#?
Can I call a virtual method from a constructor/destructor?
What are callback methods in c#?
What is the difference between array and list in c#?
What is predicate c#?
What is window application in c#?
What is meaning of type safety in c#?
What is remote data?
What are Types of assemblies that can be created in dotnet
Can we inherit abstract class in c#?