polymorphism means?
Answers were Sorted based on User's Feedback
It is a feature that allows one interface to be used for
general class of actions. The specific action is determined
by the exact nature of the situation. In general
polymorphism means "one interface, multiple methods", This
means that it is possible to design a generic interface to
a group of related activities. This helps reduce complexity
by allowing the same interface to be used to specify a
general class of action. It is the compiler's job to select
the specific action (that is, method) as it applies to each
situation
| Is This Answer Correct ? | 15 Yes | 1 No |
Answer / poorna
polymorphisum means many forms
one object acting on differnt type actions for the our
requiremts
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sachin
runtime type identification within a class hierarchy
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / parul kataria
Polymorphism is the ability for a message or data to be proceeded in more than one form. ennie
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sujith
The above answer is well explained. In technical terms it
can be explained as same function name with different
signature. Signature means only interms of arguments, and
not for return types. The idea is very simple and is a
feature which make the end user comfortable, and as Swetcha
said, it is finally the compiler will decide, which function
to call when, according to the type of data passed to the
function.
eg. int add(int, int)
double add(double, double)
char add(char, char)
but the following is not possible
int add(int, int)
char add(int, int)
| Is This Answer Correct ? | 0 Yes | 7 No |
What is namespace?
What is inheritance in simple words?
In multilevel inheritance constructors will be executed from the .... class to ... class
What is oops and why we use oops?
What is a scope resolution operator?
What is destructor in oop?
the difference between new and malloc
What is an advantage of polymorphism?
what is diff between .net 1.1 and .net 2.0
Why multiple inheritance is not allowed?
i ahve v low % in 12th n BSC which is aroun 50 coz science was imposed on me......nw m doin MCA n my aggregate in above 74%,what shud i say if asked about low previous percentage??????
What is overriding vs overloading?