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 much do coding jobs pay?

0 Answers  


Difference between Operator overloading and Functional overloading?

10 Answers   HP,


Brief explaination about #include<iostream.h>, cin and cout

3 Answers  


Write any small program that will compile in "C" but not in "C++"?

4 Answers  


write a program that takes 5 digit no and calculate 2 power that no and print it.

3 Answers  


How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?

2 Answers   CTS,


what are the characteristics of Class Members in C++?

0 Answers  


What are the conditions that have to be met for a condition to be an invariant of the class?

1 Answers  


Explain the difference between c & c++?

0 Answers  


wap to accept 10 numbers & display the number of odd and even numbers??

1 Answers  


write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.

0 Answers  


What is meant by entry controlled loop? What all C++ loops are exit controlled?

0 Answers   TCS,


Categories