Section 3.15 Check Point Questions4 questions 

3.15.1
List the precedence order of the Boolean operators. Evaluate the following expressions:
true || true && false
true && true || false
3.15.2
True or false? All the binary operators except = are left associative.
3.15.3
Evaluate the following expressions:
2 * 2 - 3 > 2 && 4 - 2 > 5
2 * 2 - 3 > 2 || 4 - 2 > 5
3.15.4
Is x > 0 && x < 10 the same as x > 0 && x < 10?
Is x > 0 || x < 10 the same as x > 0 || x < 10?
Is (x > 0 || x < 10) && y < 0 the same as (x > 0 || (x < 10 && y < 0))?