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
Is java based off c++?
What is the use of data hiding?
Is swift faster than c++?
How does the copy constructor differ from the assignment operator (=)?
Why cstdlib is used in c++?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
What is a down cast?
What are multiple inheritances (virtual inheritance)?
Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
How is static data member similar to a global variable?
What are the various storage classes in C++?
Write some differences between an external iterator and an internal iterator? Describe the advantage of an external iterator.
Write about the scope resolution operator?
What is string in c++ programming?
What is data type in c++?