Across
- 6. The number of repetitions is not known before the loop begins executing,
- 7. The number of repetitions is known before the loop begins executing.
- 8. operators (== and !=)
- 10. Statements also known as iteration statements or loops.
- 13. Can be used in the place of for statements if no counter is needed.
Down
- 1. Similar to a while loop, however the loop will always execute at least one time.
- 2. controls the order in which the individual operators are evaluated.
- 3. If condition evaluates to true, the then-statement runs. If condition is false, the else-statement runs.
- 4. The value a user enters when they'd like to stop.
- 5. Executes until a specified value is false.
- 9. operators (>, <, >= and <=)
- 11. Based on the value of a boolean expresseion.
- 12. Statement header consisting of 3 parts.
