What is polymorphism? pl explain practically rather than
theoretical?
Answer Posted / umesh shrivastava
In the word Polymorphism here poly means many and morphism
means form ie.one interface having multiple function.
Polymorphism are of two type
1 Static polymorphism:we can use this by implementing
function overloading and oprator overloading.
2 Dynamic Polymorphism:we can user this by implementing
virtual function and abstract classes.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between list and arraylist c#?
What is difference between events and delegates?
What are partial types in c#?
What does using system mean in c#?
What is using keyword?
What is use of list in c#?
Write a console application and implement the ternary operator to decide whether the age a user entered after being prompted is allowed to vote or not(given that only citizens between 18 and 120 years only inclusive can vote). Use exception handling for non-numerical input.
Why c# is called c sharp?
What is the base class for array types?
Can class inherit from struct c#?
Explain how do you convert a value-type to a reference-type?
Can the accessibility of a type member be greater than the accessibility of its containing type?
What is ilasm.exe used for?
How can I get around scope problems in a try/catch?
What is the use of thread join in c#?