| A | B |
| Algorithm | a series of steps to solve a problem |
| boolean expression | An expression that evaluates to T or F |
| global declaration | Variables and constants declared using "Private" in the place of "Dim" and is placed in the General Section |
| logic error | Statements are syntactically correct but produce undesired results |
| Message box | a predefined dialog box that provides information to the user |
| function | A type of procedure that returns a value |
| pseudocode | an algorithm created using both English and VB code |
| counter | A variable is used to store a value and is updated during run time |
| Update | will increment a counter variable |
| local declaration | Variables and constants declared in a procedure |
| Nested statements | can be one or more statements within a statement |
| decision structure | A statement that executes code depending on a Boolean statement |
| logical operators | Operators (And, Or, and Not) that may be used to form a Boolean expression is called |
| check box | An object used to obtain input from a user is called: |
| scope | The accessibility, or visibility, or variables and constants among procedures is called |
| relational operators | Operators(=,<,<=,=>,>,and <>) that may be used to form a Boolean expression |
| PrintForm | Method to print a form during run time is |
| PasswordChar | ____________ is used in the text box property and is used to replace a typed letter with a special character |
| Value | ____________ is a Check box property that can be set to 0, 1, or 2 |
| randomize | Must be in the Form_Load and initialize the random number generator |
| Private | ___________ is a keyword to declare a variable or a constant global |
| "Next" | _________ is a method to generate a random number |