Decisions... Decisions...

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