How is polymorphism different from overloading in C++?
A. Polymorphism involves different implementations of the same function name.
B. Overloading involves multiple functions with the same name but different parameters.
C. Polymorphism is resolved at compile time, while overloading is resolved at runtime.
D. Polymorphism is a feature of C++ while overloading is a feature of Java.
Answer: Option A

Join The Discussion