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 bool in C++
When would you use a pointer? A reference?
What is partial specialization or template specialization?
What is name mangling/name decoration?
Explain the operator overloading feature in C++ ?
C++ Public access specifier instead of Private – What is bad ?
write a program To generate the Fibonacci Series.
In C++ what is a vtable and how does it work?
What is a virtual function in C++?
How to delete array of objects in C++? Proof by C++ code for proper deletion
Declare a pointer to a function that takes a char pointer as argument and returns a void pointer.
Question on Copy constructor.