11) The <then-statement> of an if statement only executes when the predicate is true.
12) The closing curly brace of a compound statement does not end with a semicolon.
13) When the <Boolean expression> of an if/else statement is false, the <else-statement> of the
expression is executed.
14) Adele Koss, one of the first professional programmers, stressed that one of the most
challenging aspects of writing a program is devising an elegant solution.
15) When defining a variable you must also initialize it.
16) When three statements, when wrapped inside a pair of curly brackets, suddenly becomes one
statement.
17) The statement x = x + 1; makes no sense, since x cannot equal x + 1.
1) Programming languages are most helpful to programmers because they:
A) are precise
B) are very close to English
C) allow for only a single possible solution for a problem
D) automate the process of writing a program
2) From language to language, generally an identifier:
A) can be made up of only letters
B) cannot contain numbers, spaces, or lowercase letters
C) starts with a letter and is followed by letters, numerals, or the underscore
D) starts with two digits followed by letters or numbers