What is polymorphism in OOP ?
2025
What is polymorphism in OOP ?
Answer: A. The ability of an object to take many forms — Polymorphism in Object-Oriented Programming allows objects to take multiple forms. It enables method overriding and overloading, letting different classes…
- A.
The ability of an object to take many forms
- B.
The process of defining a method in the child class
- C.
The process of class inheritance
- D.
The ability to access private data members
Attempted by 203 students.
Show answer & explanation
Correct answer: A
Polymorphism in Object-Oriented Programming allows objects to take multiple forms. It enables method overriding and overloading, letting different classes respond uniquely to the same interface.
Loading lesson…