When overriding a method in a subclass, use super.methodName() to call the original method from the _______ class.

  • child
  • parent
  • subclass
  • overridden
When overriding a method in a subclass, use super.methodName() to call the original method from the parent class. This allows the subclass to extend or modify the behavior of the parent method while still utilizing its functionality.
Add your answer
Loading...

Leave a comment

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