In a class hierarchy, if a method is overridden, how can you call the method from the parent class?

  • Using this.method()
  • super.method()
  • parent.method()
  • class.method()
The 'super' keyword is used to call the overridden method from the parent class. It ensures that the overridden method in the subclass is bypassed, and the method from the parent class is invoked.
Add your answer
Loading...

Leave a comment

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