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