Q. What is `super()` used for in Python OOP?
β
Correct Answer: (C)
To call method from parent class
Explanation: `super()` is used to access methods of the parent class from the child class.