The `super` keyword allows a subclass to call a method from its superclass, enabling the subclass to extend or modify the behavior of the method. For example, you might call `super.show()` within an overridden `show()` method to include the superclass's behavior.
Additional Notes
How does the super keyword aid in method overriding?