Q. What is the purpose of `__del__()` method in Python?
β
Correct Answer: (D)
To perform clean-up before object is deleted
Explanation: `__del__()` is the destructor in Python, called when the object is about to be destroyed.