CUET PG 2021 — Computer PYQ
CUET PG | Computer | 2021Which among the following best describes polymorphism?
Choose the correct answer:
- A.
it is the ability for a message/data to be processed in more than one form
(Correct Answer) - B.
It is the ability for a message/data to be processed in only one form
- C.
It is the ability for many messages/data to be processed in one way
- D.
It is the ability for undefined message/data to be processed in at least one way
it is the ability for a message/data to be processed in more than one form
Explanation
Mathematical Definition
In technical terms, if we represent an operation as P, its behavior changes based on the type of data T it receives:
Core Types
-
Compile-time (Overloading):
f(a) vs f(a,b) -
Runtime (Overriding):
Base::draw()→Derived::draw()
Sahi Answer (One-liner):
"One interface, multiple methods."
Explanation
Mathematical Definition
In technical terms, if we represent an operation as P, its behavior changes based on the type of data T it receives:
Core Types
-
Compile-time (Overloading):
f(a) vs f(a,b) -
Runtime (Overriding):
Base::draw()→Derived::draw()
Sahi Answer (One-liner):
"One interface, multiple methods."

