Method Overloading blocks the Inheritance from the Super Class
-
True
-
False
-
cant be said
-
none of the above
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.