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 are the advantages and disadvantages of B-star trees over Binary trees?
When would you use a pointer? A reference?
Define namespace.
what do you mean by exception handling in C++?
dynamic scoping is
Can we call C++ OOPS? and Why
What is the difference between realloc() and free() in C++?
What is the difference between malloc, calloc and realloc?
How to invoke a C function using a C++ program?
Difference between Call by pointer and by reference.
Write a program to generate the Fibonocci Series in C++.
What is the difference between virtual functions and pure virtual functions?