What are the different types of polymorphism?
Answers were Sorted based on User's Feedback
Answer / dee
compile time--->operator and function overlaoding
run time --->virtual
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / mms zubeir
There are two types of polymorphism.
1. Adhoc polymorphism (Overloading, templates).
2. Parametric polymorphism(Overriding).
If the behaviors are finite and known before its usage, it
is adhoc polymorphism. These bindings are done at
compilation itself and hence called compile time binding.
If the behaviors are infinite and known only at run time at
the time of use, it is parametric polymorphism. These
binding can be mapped at run time only and hence sometimes
referred as run time binding.
Note:- Virtual mechanism is used to resolve conflicts in
overriding polymorphically. Virtual mechanism itself
doesn't provide any polymorphism rather the overriding
leads to run time polymorphism.
| Is This Answer Correct ? | 4 Yes | 7 No |
Answer / uio
there are two types of palymorphism
1.operator overloading
2.function overloading
| Is This Answer Correct ? | 2 Yes | 6 No |
What are the different operators in C++?
What is a far pointer? where we use it?
What does std mean in c++?
How do you invoke a base member function from a derived class in which you have not overridden that function?
Is empty stack c++?
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
Mention the ways in which parameterized can be invoked. Give an example of each.
What are the advantages of prototyping?
why we cant create array of refrences
How do I download c++?
What is the basic difference between C and C++?
What is a built-in function?