| A | B |
| assignment operator | Changes the value of the variable to the left of the operator. |
| arithmetic operators | Used to perform calculations in C++. |
| modulus operator | returns the remainder rhater than the result of the division. |
| compound operators | Special operators that provide a shorthand notation for statements that change a variable. |
| incrementing | Adding 1 to a variable. |
| decrementing | Subtracting 1 from a variable. |
| order of operations | Rules related to the order in which operations are performed in mathematics. |
| promotion | The condition in which the data type of one variable is temporarily converted to match the data type of another variable. |
| typecasting | Using a typecast operator. |
| overflow | The condition where an integer becomes too large for its data type. |
| underflow | Occurs with floating-point numbers when a number is too small for the data type. |