| A | B |
| Adding 1 to Variable | Incrementing |
| Remarks ignored by compiler | Comments |
| To drop the digits to the right of the decimal point | Truncate |
| Words reserved for the C++ language | Keywords |
| The condition where an integer becomes too large for its data type | Overflow |
| A block of code that carries out a specific task | Function |
| The operator that provides the integer division | Modulus |
| To assign a value to a variable | Initialize |
| A group of characters put together to make one or more words | String |
| A string hard coded into a program | String Literal |
| Operators used to make comparisons | Relational Operators |
| Data flowing from one place to another | Stream |
| Subtracting 1 from a variable | Decrementing |
| A set of options presented to the user of a program | Menu |
| The function where every C++ program begins | Main Function |
| Names given to variables and constants | Identifier |
| An operator (=) that changes the value of the varialbe to the left of the operator | Assignment Operators |
| Lines of C++ Code | Statements |
| Special characters used to mark the beginning and ending blocks of code. | Braces |
| A math statement made up of terms, operators, and functions. | Expression |
| An expression that provides for a decision to be made in an if statement or to end a loop | Control Expression |