What is the general form of an if statement?
What is the function of the else clause for an if statement?
How many else if statements can follow an if statement?
The switch statement only evaluates what type of values?
Which loop ensures that the body of the loop is evaluated at least once?
What is an infinite loop?
What is the most popular type of loop for iterating over a variable or set of variables?
How do you skip the statements in the current iteration of a loop?
How do you stop executing the statements in a loop and continue at the first line following the loop?
How do you break out of multiple nested loops?