Multiple choice .net

Polymorphism makes it easier to:

  1. reuse and modify existing modules of code.

  2. write and read code by sharing method names.

  3. hide and protect data from external code.

  4. Both a and b.

  5. All of the above.

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

Polymorphism allows different classes to be treated as instances of the same interface or base class. This makes code easier to write and read because developers can use the same method names (like .Draw() or .Calculate()) across different object types.