Multiple choice technology programming languages

Two methods with the same name but with different parameters?

  1. Overloading

  2. Overriding

  3. Overridable

  4. Duplexing

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

Method overloading occurs when a class has multiple methods with the same name but different parameter lists (different number, types, or order of parameters). Overriding refers to a subclass providing a specific implementation of a method already defined in its superclass with the same signature.