What Is Polymorphism in C++ ?
Answers were Sorted based on User's Feedback
Polymorphism in C++ means, the same entity (function or object) behaves differently in different scenarios. Consider this example: The “ +” operator in c++ can perform two specific functions at two different scenarios i.e when the “+” operator is used in numbers, it performs addition.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
An object-oriented programming concept called polymorphism enables a function or object to act differently depending on the situation. Polymorphism in C++ can be called at compile time or at runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between malloc, calloc and realloc?
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
Write a C++ Program to Find whether given Number is Odd or Even.
Explain the importance of method overloading in C++?
0 Answers Akamai Technologies, Infogain,
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.
Write a syntax and purpose of switch statement.
What is the difference between Stack and Queue in C++?
0 Answers Global Logic, iNautix,
What is a constructor initializer list?
Tell How To Check Whether A Linked List Is Circular ?
Discuss about iteration statements in C++ .
How to stop class inheritance in C++ with condition that object creation should be allowed
What is Coupling?