What are the different types of polymorphism?

Answers were Sorted based on User's Feedback



What are the different types of polymorphism?..

Answer / dee

compile time--->operator and function overlaoding
run time --->virtual

Is This Answer Correct ?    8 Yes 3 No

What are the different types of polymorphism?..

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

What are the different types of polymorphism?..

Answer / uio

there are two types of palymorphism
1.operator overloading
2.function overloading

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More C++ General Interview Questions

How long it will take to learn c++?

0 Answers  


When should you use multiple inheritance?

2 Answers  


how many trys can we write in one class

3 Answers   Cap Gemini,


write a program to add two numbers without using an arithmetic operator.

1 Answers   NIIT,


What are 2 ways of exporting a function from a dll?

0 Answers  






Is it possible to provide special behavior for one instance of a template but not for other instances?

0 Answers  


Is c++ pass by reference or value?

0 Answers  


Which operator can not be overloaded in C++?

1 Answers  


What is flag in computer?

0 Answers  


When is a template better solution than a base class??

2 Answers   emc2,


Explain Text Manipulation Routines?

0 Answers  


Define whitespace in C++.

0 Answers   HCL,


Categories