| A | B |
| CODING | Creating an application's interface and writing its program code. |
| CONSTANT | A named memory location that stores a value that cannot be changed at run time from it's initial assignment. |
| DATA TYPE | The kind of value a variable or canstant is storing. |
| DEBUGGING | The process of getting an application to work correctly. |
| DESIGN | How an application's interface will look and how the program code will be written. |
| FLOATING POINT | A data type that can represent values with numbers after the decimal point. |
| FRAME | A container object used to group option buttons. |
| IDENTIFIER | The name used to represent a variable or constant. |
| INTEGER DIVISION | Division performed with the operator to return only the whole portion of the quotient. |
| KEYWORD | Identifier reerved be Visual Basic |
| MODULUS DIVISION | Division performed with the Mod operator to return only the division operation |
| OPTION BUTTON | An object the user can click to provide input |
| RADIO BUTTON | An object the user can click to provide input |
| RUN-TIME ERROR | A syntax error that halts a program at run time |
| SPECIFICATION | Definition of what an applicaiton should do. |
| STRING | A set of characteristics that can include the letters of the alphabet, digits, symbols, spaces, and any chacter that can be typed or displayed. |
| SYNTAX ERROR | An error that caused by a statement that violates the rules of Visual Basic. |
| TESTING | The process of an application andentering datato test different possibilities to reveal any bugs. |
| TEST BOX | An object that provides space for the user to enter text. |
| VARIABLE | A named memory location that stores a value. |