Multiple choice technology

Method Overloading blocks the Inheritance from the Super Class

  1. True

  2. False

  3. cant be said

  4. none of the above

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

Method overloading (defining multiple methods with the same name but different parameters) does not block inheritance. A subclass can overload methods while still inheriting all other methods from its superclass. Overloading and inheritance are independent concepts - a class can both inherit from a superclass and overload its own methods.