| A | B |
| Breakpoint | A statement that has been marked as a stopping point |
| Constant | A named memory location which stores a value that cannot be changed from its initial assignment |
| Debugging | The process of getting an application to work correctly. |
| Declaration statement | A statement used to create a variable or constant. |
| Coding | Creating the interface and writing the program code. |
| Design | How an application’s interface will look and how the program code will be written |
| Exception | A syntax or logic error that halts a program at run time |
| Floating point | A data type that can represent values with numbers after the decimal point. |
| Global declaration | A declaration outside the procedures of a program. Also called module-level declaration |
| Integer division | Division performed with the \ operator to return only the whole portion of the ¬quotient. |
| Keyword | Identifier reserved by Visual Basic .NET. |
| Local declaration | A declaration at the beginning of a procedure. |
| Logic error | An error caused by syntactically correct statements that produce unexpected results. Also called semantic error. |
| Modulus division | Division performed with the Mod operator to return only the remainder portion of the division operation. |
| String | A set of characters. |