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