4.3 While Loops

12345678910
Across
  1. 2. A while's expression is involves what type of operator?
  2. 4. Fill: Iterate while c equals 'g'. while (?) {..}
  3. 5. x = 0; while (x > 0) { System.out.print(x+ " "); x = x - 1; } System.out.print("Bye");
  4. 7. Fill: Iterate while x is greater than or equal to 0. while (?) {..}
  5. 8. Fill: Iterate while x is less than 100. while (?) {..}
  6. 9. Programmers should remember that the expression describes when the loop should _____, not when the loop should terminate.
  7. 10. A loop that repeatedly executes sub-statements while expression is true
Down
  1. 1. Fill: Iterate until c equals 'z' while (?) {..}
  2. 3. Loop that never stops iterating
  3. 4. Fill: Iterate while c is not equal to 'x'. while (?) {..}
  4. 6. Fill in the blank: while(______) {...}