Q.

What will be the value of X in the
following Python expression?
X = 2+9*((3*12)-8)/10

A. 30.0
B. 30.8
C. 28.4
D. 27.2
Answer» D. 27.2
Explanation: The expression shown above is
evaluated as: 2+9*(36-8)/10, which simplifies
to give 2+9*(2.8), which is equal to
2+25.2 =27.2.
Hence the result of this expression is 27.2.
1.6k
0
Do you find this helpful?
1

Discussion

No comments yet