Multiple choice

Polymorphism means a function with one name & many forms.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Polymorphism in OOP allows objects of different classes to be treated as objects of a common superclass. The core concept is one interface (function/operator name) with multiple implementations (forms). This includes function overloading, operator overloading, and virtual functions.