Quizlet Unit 4 code.org - 2

1234567891011121314151617
Across
  1. 4. a named reference to a value that can be used repeatedly throughout a program.
  2. 6. Value a data type that is either true or false.
  3. 8. operator NOT, AND, and OR, which evaluate to a Boolean value.
  4. 9. Statement affect the sequential flow of control by executing different statements based on the value of a Boolean expression.
  5. 12. Expression evaluates to either true or false
  6. 14. operator part of most programming languages and include addition, subtraction, multiplication, division, and modulus operators.
  7. 15. Call a command that executes the code within a function
  8. 17. Operator allows a program to change the value represented by a variable
Down
  1. 1. Operators <, >, <=, >=, ==, != indicate a Boolean expression
  2. 2. an ordered sequence of characters.
  3. 3. a named group of programming instructions that may have parameters and return values.
  4. 5. Expressions are evaluated to produce a single value.
  5. 7. a programming statement that can consist of a value, a variable, an operator, or a procedure call that returns a value.
  6. 10. a named group of programming instructions. Also referred to as a "procedure".
  7. 11. determines which parts of an algorithm are executed based on a condition being true or false
  8. 13. operator used to test the relationship between two variables, expressions, or values. A comparison using a relational operator evaluates to a Boolean value. For example: =, ≠, >, <, ≥, and ≤
  9. 16. joins together two or more strings end-to-end to make a new string.