InterviewSolution
Saved Bookmarks
| 1. |
Explain About Polymorphism? |
|
Answer» Polymorphism HELPS a sub class to behave like a parent class. When an OBJECT belonging to DIFFERENT DATA TYPES respond to methods which have a same name, the only condition being that those methods should perform different function. Polymorphism helps a sub class to behave like a parent class. When an object belonging to different data types respond to methods which have a same name, the only condition being that those methods should perform different function. |
|