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 kind of problems does name mangling cause?
What is the difference between realloc() and free() in C++?
What does it mean to take the address of a reference?
How to delete array of objects in C++? Proof by C++ code for proper deletion
How do you work around them?
what is the difference between a pointer and a reference?
0 Answers Amazon, Blue Star, C DAC,
Difference between Call by pointer and by reference.
Name the operators that cannot be overloaded.
What is bool in C++
What is latest update of C++ ?
When would you use a pointer? A reference?
What is the difference between creating an object, using 'new' and using 'malloc'?