| 1. | b. The != operator means is not equal to. |
| 2. | a. The switch statement can test the same variable or expression for a number of different values. |
| 3. | c. The do…while loop uses a condition at the end of the loop. |
| 4. | c. The break statement escapes the loop. |
| 5. | b. Because the condition (3==3) will always be true, this statement creates an infinite loop. |