18.
What is the value of the following expression: (10 - 3) / (2 * 5)?
0.7
1
1.5
3
Correct: C
In JavaScript, parentheses have the highest precedence. So, the expression is evaluated inside the parentheses like this: 10 - 3 = 7 for the numerator, and 2 * 5 = 10 for the denominator. Then, the division is performed as 7 / 10 = 0.7.