Q. Which method is called automatically when an object is created?
β
Correct Answer: (C)
__init__()
Explanation: `__init__()` is the constructor method in Python, called when an object is created.