To evaluate the expression in the code print(10 - 2 * 5)
, we need to follow the order of operations, also known as PEMDAS (Parentheses, Exponents, Multiplication and Division (from left to right), Addition and Subtraction (from left to right)).
-
First, we perform the multiplication: \(2 * 5 = 10\).
-
Next, we perform the subtraction: \(10 - 10 = 0\).
So, the output of the line of code print(10 - 2 * 5)
will be 0
.
Therefore, the correct response is: 0