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 is the c++ programming language used for?
When there is a global variable and local variable with the same name, how will you access the global variable?
Which of the following is evaluated first: a) && b) || c) !
What is a binary file? List the merits and demerits of the binary file usagein C++.
Explain all the C++ concepts using examples.
Why is c++ so fast?
What is unary operator? List out the different operators involved in the unary operator.
Explain the concept of friend function in c++?
Is it possible to get the source code back from binary file?
How would you implement a substr() function that extracts a sub string from a given string?
What is abstraction in c++ with example?
Can a class be static in c++?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
Explain the advantages of using friend classes.
What is the difference between c++ and turbo c++?