Multiple choice technology programming languages

Method-Overloading implements the principle of Compile-time Polymorphism, wheras Method Over-riding implements the concept of Runtime Polymorphism.

  1. True

  2. False

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

Method overloading is resolved at compile time based on method signatures, representing compile-time polymorphism. Method overriding is resolved at runtime based on the actual object type, representing runtime polymorphism.