What are the different forms of polymorphism??
Answers were Sorted based on User's Feedback
Answer / suganyamuralidharan
1.Compile time polymorphism
Exhibited by: Function overloading
Operator overloading
2.Run time polymorphism
Exhibited by: Function overriding
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / sriram
A.) Runtime POLYMORPHISM
B.) Compiletime POLYMORPHISMS.,
| Is This Answer Correct ? | 12 Yes | 2 No |
Answer / purba phalguni mishra
(1). Operator overloading.
(2). Function overloading.
(3). Virtual functions
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / amit
1.Compile time polymorphism
Exhibited by: Function overloading
Operator overloading
2.Run time polymorphism
Exhibited by: Function overriding
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / amit
There are two types of polymorphism:-
1.Compile time polymorphism
This is achieved by:
- Function overloading
- Operator overloading
2.Run time polymorphism
This is achieved through inheritance and virtual functions.
In this, base class has one or more virtual functions which
are overridden in the derived class. And then base class
pointer is used to access base or derived class virtual
function.
Example:-
class base {
public:
virtual void func() {
cout << "In base class" << endl;
}
};
class derived {
public:
void func() {
cout << "In derived class" << endl;
}
};
int main(){
base *bp, b;
derived d;
bp = &b;
bp->func(); // base class func() will be called
bp = &d;
bp->func(); // derived class func() will be called
return 0;
}
Here, the decision to call base or derived class func() is
taken at run time.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mms zubeir
Though there are many answers which are all true to some
extent, I would like to conclude all these into two broad
categories:
1. Ad-hoc polymorphism
2. Parametric polymorphism
As the meaning of the names themselves suggests their usage.
If the range of actual types that can be used is finite
and the combinations must be specified individually prior
to use, it is called Ad-hoc polymorphism.
If all code is written without mention of any specific type
and thus can be used transparently with any number of new
types, it is called parametric polymorphism.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / ramesh
1.Compile time polymorphism
Exhibited by: Function overloading
Operator overloading
2.Run time polymorphism
Exhibited by: Function overriding
| Is This Answer Correct ? | 0 Yes | 0 No |
c++ provides classes...and classes do what we want but why then strcut are used...if we say data hiding... it is also provided by c++ in structs then why to prefer clasess
advantage and disadvantage in c++>>oops and what are the questions ask for interview in c++>>oops. could you tell me or reply me
How do you answer polymorphism?
when my application exe is running nad i don't want to create another exe what should i do
What is ambiguity in c++
Can a destructor be called directly?
why oops need in programming
what is runtime polymorphism? For the 5 marks.
Write a c++ program to display pass and fail for three student using static member function
Differences between inline functions and non-inline functions?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is solid in oops?