Unit 4 Vocab (code.org)

12345678910111213
Across
  1. 4. a named group of programming instructions. Also referred to as a “function”.
  2. 7. a data type that is either true or false.
  3. 8. a combination of operators and values that evaluates to a single value
  4. 9. a command that calls a procedure/function with a specific value for the parameter. Ex. tripleIt(4)
  5. 10. affects the sequential flow of control by executing different statements based on the value of a Boolean expression.
  6. 11. a command that executes the code within a procedure/function.
  7. 13. <, >, <=, >=, ==, != indicate a Boolean expression
Down
  1. 1. NOT, AND, and OR, which evaluate to a Boolean value.
  2. 2. a named group of programming instructions. Also referred to as a “procedure”.
  3. 3. a named reference to a value that can be used repeatedly throughout a program.
  4. 5. allows a program to change the value represented by a variable
  5. 6. a command that executes the code within a function
  6. 12. an ordered sequence of characters.