InterviewSolution
Saved Bookmarks
| 1. |
Which among the following best describes polymorphism?(a) It is the ability for a message/data to be processed in more than one form(b) It is the ability for a message/data to be processed in only 1 form(c) It is the ability for many messages/data to be processed in one way(d) It is the ability for undefined message/data to be processed in at least one wayI have been asked this question in an interview.This intriguing question comes from Polymorphism in division OOPs Concept & Features of Object Oriented Programming |
|
Answer» RIGHT choice is (a) It is the ability for a message/data to be processed in more than one form The EXPLANATION is: It is actually the ability for a message / data to be processed in more than one form. The word polymorphism INDICATES many-forms. So if a single ENTITY takes more than one form, it is known as polymorphism. |
|