what is polymorphism?
Answers were Sorted based on User's Feedback
Answer / rupinder
polymorphism is a best feature of object oriented
programming, polymorphism mean one name many forms. 'poly'
means one and 'morph' mean many.
| Is This Answer Correct ? | 3 Yes | 0 No |
Polymorphism is not the same as method overloading or method overriding. Polymorphism is only concerned with the application of specific implementations to an interface or a more generic base class. Method overloading refers to methods that have the same name but different signatures inside the same class. Method overriding is where a subclass replaces the implementation of one or more of its parent's methods. Neither method overloading nor method overriding are by themselves implementations of polymorphism
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / vijay pratap
Polymorphism is most feature of the object oriented
programming language.It means One method hendled the many
data types.
like ,one person do the many work.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jo
polymorphism is a programming language feature that allows
values of different data types to be handled using a
uniform interface.
| Is This Answer Correct ? | 6 Yes | 7 No |
What is a class and object?
Why is destructor used?
write a program for function overloading?
14 Answers HCL, InfoCity, TATA,
c++ is a purely oop concept?
What is the real life example of polymorphism?
what is the difference between class and structure in C++?
how does a main() in C++ is different from main() in C?
what is inline function?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
What are the 3 principles of oop?
In which cases you use override and new base?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).