Polymorphism is another important feature of Object Oriented Programming.Polymorphism means one function existing in many forms.There will be many functions of the same name and only the number of parameters, type of parameters, and the order in which they appear will be different.
1. Important feature of Object Oriented Programming
2. Polymorphism - One function and many forms
3. Number of parameters, type of parameters, order in which they appear differs
4. Compiler binds call to function at compilation time itself - static polymorphism
5. Compiler binds call to the function at runtime depending upon context - Dynamic polymorphism


