| Keyword | Definition |
|---|---|
| assign | set or change the value of a variable |
| decrement | decrease the value of a variable by one |
| identifier | the name of a variable |
| increment | increase the value of a variable by one |
| sequence | more than one instruction that will be executed in a specific order when a program runs |
| value | the data that is stored in a variable |
| variable | a named location in memory that can store a value. The value might change when a program runs but the name stays the same. |