| A | B |
| Boolean | A data type used to represent True or False |
| Char | A data type usd to represent a single character |
| Const | Statement used to declare a constant variable |
| Decimal | A data type used to represent resent currency |
| Dim | Statement used to declare a dimensional variable |
| Integer | A data type used to represent positive or negative numbers between -2147483648 and 2147483647 |
| Text | What is displayed in a control object. |
| Variable | A named memory location that stores a value. |
| Constant Variable | A named memory location in which the value stored cannot be changed from its initial assignment. |
| Double | A data type used to represent values with a decimal portion. |
| Static | A variable used to hold a value during the run of the program. |
| Prompt | A label placed near a text box describing the expected input from the user. |
| String | A set of characters. |
| Specification | Definition of what an application should do. |
| Declaration statement | A statement used to create a variable. |
| Design | How an application's interface will look and how the program code will be written. |
| Global declaration | A declaration outside the procedures of a program. |
| Scope | The set of statements that can be accessed by a declared variable or constant. |
| Syntax error | An error caused by a statement that violates the rules of Visual Basic .NET |
| Testing | The process of running an application and entering data to test different possibilities to reveal any bugs. |
| Text Box | An object that allows the user to enter a value. |