| A | B |
| Global Variables | accessible by every procedure in a form module |
| Variable identifier | must begin with a letter |
| Fall | strCov("fall,vbProperCase) |
| interpreter | automatically reads each line of program code as it is entered |
| constant declaration | Const strFirstName As String="Mia" |
| text box | Can be used to obtain a value from a user |
| Three | The value of intStringPosition=InStr("poem","poe") |
| Caption | changes the text displayed in an object |
| Pseudocode | an algoithm created using both English and VB code |
| MsgBox statement | displays a VB predefined dialog box with a message and an OK button |
| Comments | used to explain and clarify program code for a human reader |
| variable declaration | Dim strFirstName As String |
| syntax error | a statement that violates the rules of Visual Basic |
| Form Load event procedure | is automatically executed when an applcation is running |
| double | a data type used to store a number with a decimal |
| Boolean | evaluates to true or false |
| integer | a data type used to store whole numbers |
| string | a data type used to store all the characters on a keyboard |
| debugging | the process of getting an application to run correctly |
| binary | the number system used by the computer |
| CPU | a chip inside the computer that processes and controls the flow of data |
| event procedure | a block of code that executes in response to an event |
| scope | determines the accessibility of a variable |
| assignment | is used to change a property vaule at run time |
| properties | define the appearance, behavior, position, and other attributes of an object |
| compiler | translates program code into a separate executable file |
| immediate window | displays the output of the Debug.Print statement |