Expression Evaluation
1. Evaluate 2 * 3 + 5 % 3.
2. Evaluate ( 2 * ( 3 + 5 ) ) % 3.
3. The order of evaluation of the operators in ( 2 * ( 3 + 5 ) ) % 3 is:
4. The order of evaluation of the operators in 2 * ( 3 + 5 ) % 3 is:
5. Assume x = 8.8, y = 3.5 and z = -5.2 and m = 4. Calculate x % y
6. Assume x = 8.8, y = 3.5 and z = -5.2 and m = 4, Calculate x % m
7. Assume x = 8.8, y = 3.5 and z = -5.2 and m = 4, Calculate 7/m
8. Assume x = 8.8, y = 3.5 and z = -5.2 and m = 4, Calculate 2 * x / (3 * y)
9. Assume x = 8.8, y = 3.5 and z = -5.2 and m = 4, Calculate 2 * x / 3 * y