Output is 12 (Option B). Why? Python's __add__ method was overloaded to perform multiplication (3 * 4 = 12) instead of addition. The expression n1 + n2 returns a new Num object, so .x is required to extract the final integer value. #Python #CodingChallenge #OperatorOverloading
1
0
1
0