Problem 4
For an if statement to conditionally execute a group of statements, the statements must be enclosed in a set of __________.
Problem 8
If the sub-expression on the left of the || logical operator is __________, the right sub-expression is not checked.
Problem 10
Logical operators have __________ precedence than relational operators.
Problem 23
Assume the variables x = 5, y = 6, and z = 8. Indicate if each of the following conditions is true or false: A) (x == 5) || (y > 3) B) (7 <= x) && (z > 4) C) (2 != y) && (z != 4)