click below
click below
Normal Size Small Size show me how
comp science
unit 4
| Term | Definition |
|---|---|
| Expression | a combination of operators and values that evaluates to a single value |
| Assignment Operator | allows a program to change the value represented by a variable |
| Variable | a named reference to a value that can be used repeatedly throughout a program. |
| function | a named group of programming instructions. Also referred to as a “procedure”. |
| Function call | a command that executes the code within a function |
| Boolean Value | a data type that is either true or false |
| Comparison Operators | <, >, <=, >=, ==, != indicate a Boolean expression |
| Logical operator | NOT, AND, and OR, which evaluate to a Boolean value. |
| Conditional statement | affect the sequential flow of control by executing different statements based on the value of a Boolean expression |