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

What are the debugging methods you use when came across a problem?

1 Answers  


Is it possible for a member function to delete the pointer, named this?

0 Answers  


When do you call copy constructors?

0 Answers  


How do you traverse a btree in backward in-order?

0 Answers  


What is pointer to array in c++?

0 Answers  






In a function declaration, what does extern mean?

0 Answers  


What is meant by the term name mangling in c++?

0 Answers  


how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds

0 Answers   Thought Works,


What is a linked list in c++?

0 Answers  


I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

0 Answers  


Can I have a reference as a data member of a class? If yes, then how do I initialise it?

0 Answers  


How do I start a c++ project?

0 Answers  


Categories