Final answer:
The output of the given code is -90.
Step-by-step explanation:
The code given is x = 10, y = -3, z = 3, print(x y * z). To calculate the output, we need to follow the order of operations, which is parentheses, multiplication/division, and addition/subtraction. In this case, we multiply y and z first, and then multiply the result with x. So the output is 10 * (-3 * 3) = 10 * (-9) = -90.