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 |
What is a storage class used in c++?
What you mean by early binding and late binding? How it is related to dynamic binding?
What is a "RTTI"?
How many types of classes are there in c++?
What is a node class in c++?
Differentiate between structure and class in c++.
what is the use of Namespace in c++.
Explain how to initialize a const member data.
What is name hiding in c++?
Which of the following is evaluated first: a) && b) || c) !
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is design pattern?