Compare compile time polymorphism and Runtime polymorphism
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 |
Write a program using display() function which takes two arguments.
What is the purpose of the "delete" operator?
What does ios :: app do in c++?
Explain the use of virtual destructor?
How do you differentiate between overloading the prefix and postfix increments?
What are features of c++?
What is wrapper class in c++?
How to avoid changing constant values?
Does there exist any other function which can be used to convert an integer or a float to a string?
Why do we use using namespace std in c++?
What is the type of 'this' pointer?
What is a vector c++?