Java 6-7: Conditional Logic - If and Looping Statements

123456789101112131415
Across
  1. 2. This type of operator allows you to check more than one condition at a time (&& or ||)
  2. 4. This type of loop is indefinite, since it does not have a set amount of repeating
  3. 10. A combination of "English" and coding that gives you an idea how to solve a problem
  4. 11. A computer cannot think, so it follows directions to represent using this
  5. 12. A for loop is a __________ loop, since it has a set amount of repeating
  6. 13. The looping variable that is checked and changed by the while loop
  7. 14. Just like if, else if, and if else statements, loops can also be ____________
  8. 15. Loops allow you to go backwards and _________ code
Down
  1. 1. != represents a basic condition meaning _____ __________
  2. 3. Going through a loop is called traversing, or this
  3. 5. The way the looping variable is changed
  4. 6. An if statement will either run code or skip over it based on this
  5. 7. A loop with a condition that is never false
  6. 8. The order of the while loop is ________, but the order of the for loop is NOT
  7. 9. This type of statement will allow you to chain logic together so you can have more than two choices