Q. Which method is used to override the default behavior of the + operator?
β
Correct Answer: (A)
__add__()
Explanation: __add__() is used to override the + operator in a class.