Match the evaluation of each C expression with the correct a
Match the evaluation of each C++ expression with the correct answer. 25 - 9 * 2 - 3/7 1 == 5 || !true le3 * squareroot (25.0) 2 > 0 && !false 18.0/2.0 + 6.0 7 5000.0 true false 15.0
Solution
25 - 9 * 2 - 3 /7 Answer is 7
1==5 || !true Answer is false
le3 * sqrt(25.0) Answer is 5000
2 > 0 && !false Answer is true
18.0/2.0 + 6.0 Answer is 15.0
