Compare compile time polymorphism and Runtime polymorphism
Answer Posted / 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 View All Answers
What are the comments in c++?
What is data type in c++?
Give example of a pure virtual function in c++?
Is map sorted c++?
What is c++ map?
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
What operators can you overload in c++?
If you don’t declare a return value, what type of return value is assumed?
Why c++ is not a pure oop language?
How java is different from c and c++?
What is a class template?
Which operator cannot be overloaded c++?
What is the difference between new() and malloc()?
What are containers in c++?
Define a conversion constructor?