what is polymorphism?
Answers were Sorted based on User's Feedback
Answer / priyanka chourasia
Two or more function of same name but different defination is
called as Polymorphism.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / rohit jindal
One thing having different work in Different situation.Eg:
Operator overloading,Function overloading
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / sangita patel
Polymorphism means one name multiple form.
It is implemented using overloaded function and operators.
Its is of two types
1) compile time polymorphism(function overloding
2) run time ploymorphism
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / kananatha kowsik.r
Polymorphism is a greek word.'Poly' means many.'Morphism'
means programs.'Polymorphism' many programs.That means by
calling many forms or many programs using one interface.By
using polymorphism we can achieve overloading and overriding.
Types of polymorphism.
1.Compile time polymorphism or late bind polymorphism
2.Run time polymorphism or early bind polymorphism or
dynamic polymorphism.
1.Compile time polymorphism:
The polymorphism which is created at compile time or
late bind is called compile time polymorphism.
Example: Function overloading, Operator overloading.
2.Runt time polymorphism:
The polymorphism which is created at run time or late
bind or dynamically is called run time polymorphism.
Example: Abstract class, Virtual function.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / jithin s
It means The Ability to take more than one form....ie the
same function name can be used to perform diffrent tasks...
depending up on the number and type of the argument and
also the function return type..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / prasath
polymorphism is defined as one operator or function used in more than one work. it is called polymorphism.
ex:
OPERATOR OVERLOADING
2+3=5
1.2+2.3=3.5
"HA"+"I"="HAI"
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / kanchana
polymorphism means giving same name to differt functions
.but it signature will be different
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vigneswari
USE SINGLE OPERATOR FOR MANY OPERATINS OR
FUNCTIONS..........POLY-MANY,MORPHISM-SHAPES.....
BEST OF LUK.... ROCK ALL COMPUTER ENGINEERS
| Is This Answer Correct ? | 0 Yes | 0 No |
What do c++ programmers do?
Define virtual constructor.
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
What is command line arguments in C++? What are its uses? Where we have to use this?
What is the difference between #define debug 0 and #undef debug?
Can I uninstall microsoft c++ redistributable?
If dog is a friend of boy, is boy a friend of dog?
When is the copy constructor called?
What are separators in c++?
What is the use of volatile keyword in c++? Give an example.
Define a constructor - what it is and how it might be called (2 methods)?
Where are setjmp and longjmp used in c++?