Correct answer is : B
With this expression x = y = z we are assigning a single value to multiple variables x, y and z
So 10, 20, "amazon" becomes a single value for x, y and z.
The expression without parentheses becomes a tuple.
Therefore the result will be
Comment here: