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