What is the concept in OOP where a subclass can have methods with the same name as methods in its parent class?

  • Method Overloading
  • Method Hiding
  • Method Overriding
  • Method Inheritance
The concept in OOP where a subclass can have methods with the same name as methods in its parent class is called "Method Overriding." It allows a child class to provide a specific implementation of a method defined in the parent class.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *