Compare compile time polymorphism and Runtime polymorphism



Compare compile time polymorphism and Runtime polymorphism..

Answer / hrpynux@gmail.com

In Compile time Polymorphism, the call is resolved by the compiler. In Run time Polymorphism, the call is not resolved by the compiler. It is also known as Static binding, Early binding and overloading as well. It is also known as Dynamic binding, Late binding and overriding as well

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Please post the model question paper of hal?

2 Answers  


Why pointer is used in c++?

0 Answers  


What is the type of 'this' pointer?

0 Answers  


What is a c++ class?

0 Answers  


Explain what is class definition in c++ ?

0 Answers  


Which bit wise operator is suitable for turning off a particular bit in a number?

0 Answers  


How do we balance an AVL Tree in C++?

0 Answers   Impetus,


how can u create a doubly linked list with out using pointers?

2 Answers  


When should I use unitbuf flag?

0 Answers  


How is c++ different from java?

0 Answers  


Are php strings immutable?

0 Answers  


Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300

0 Answers  


Categories