Answer Posted / santosh
Polymorphism is one of the important feature of OOP's. It
consist of 2 words i.e., 'Poly' which stands for many
and 'Morphism' stands for forms.
We can divide the polymorphism into 2 types.
1. Static polymorphism
2. Dynamic polymorphism
Static polymorphism:- In this the binding is taken place in
compile time. The different types of static polymorphism
are:-
a) Function Overloading
b) Operator Overloading
Dynamic polymorphism:- In this the binding that takes place
at run-time. The difference types of dynamic polymorphism
are:-
a) Virtual function
b) Abstract class
| Is This Answer Correct ? | 272 Yes | 22 No |
Post New Answer View All Answers
What is inheritance in oop?
What is persistence in oop?
write a C++ program for booking using constructor and destructor.
Can we have inheritance without polymorphism?
Why we use classes in oop?
What is pure oop?
what are the ways in which a constructors can be called?
to find out the minimum of two integer number of two different classes using friend function
What is the benefit of oop?
What is object and example?
How do you achieve polymorphism?
What are the 3 principles of oop?
What is pointer in oop?
Who invented oop?
What is for loop and its syntax?