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 solid in oops?
Why is abstraction used?
What polymorphism means?
What is the highest level of cohesion?
What do you mean by Encapsulation?
What is oops and why we use oops?
What is a superclass in oop?
What are benefits of oop?
when to use 'mutable' keyword and when to use 'const cast' in c++
What does I oop mean?
Why do we use class in oops?
How to call a non virtual function in the derived class by using base class pointer
What is oops concept with example?
Why do we use encapsulation in oops?
What is difference between oop and pop?