What is the purpose of the 'super' keyword in Java?
Q1. What is the purpose of the 'super' keyword in Java?
Answer: To access superclass members
Explanation: The 'super' keyword is used to access members of the superclass from a subclass, allowing for code reuse and facilitating inheritance.