Unit 4 code.org

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