Programming Week 2-1

12345678910111213141516
Across
  1. 1. A statement that is used to evaluate one value against several others to determine an outcome.
  2. 5. Used to define named integral constants.
  3. 7. Keyword used to prefix a value to be compared to determine switch statement conditions.
  4. 8. A statement that allows you to execute code only if a certain condition is true.
  5. 11. A statement that can be either true or false.
  6. 12. Data type that can only hold a true or false value.
  7. 14. A statement that allows for different code to execute on whether a particular condition is true or false.
  8. 16. Composed of or based on three elements or parts.
Down
  1. 2. A statement that allows for multiple conditions to execute different code blocks.
  2. 3. The practice of placing one constructor or statement inside of another.
  3. 4. Programming languages commands for handling decisions. ______ statement.
  4. 6. Improving the operation of your code without altering its functionality.
  5. 9. The track your code travels as it executes. Code ____
  6. 10. A complete, ordered listing of all items in a collection.
  7. 13. The order in which an imperative program's statements, instructions, or function calls are executed or evaluated. Control ____
  8. 15. Keyword used to half and exit a control flow statement.