Chapter 4 Making Decisions

123456789101112131415
Across
  1. 2. program logic that involves choosing between alternative actions based on some value
  2. 5. statement part of a structure that determines whether the subsequent block of statements run
  3. 6. if statement if one decision structure is contained within another
  4. 7. statement used to make a single-alternative decision
  5. 9. tool that helps programmers plan a program's logic written in English statements
  6. 10. identifies a course of action in a switch structure
  7. 14. diagrams used in math and logic to help describe the truth of an expression based on the truth parts
  8. 15. program logic in which one step follows another unconditionally
Down
  1. 1. an abbreviated version of an if-else statement; requires three expressions separated by a question make and a colon
  2. 3. series of if statements that determine whether a value falls within a specified range
  3. 4. performs a dual-alternative decision
  4. 8. pictorial tool to help understand a program's logic by writing program steps in a diagram form (shapes and arrows)
  5. 11. tests a single variable against a series of exact matches
  6. 12. operator that negates the result of a Boolean expression
  7. 13. collection of one or more statements