Term
| What is one of the fundamental activities of a program? |
|
Definition
|
|
Term
| Term: Associates items as a group, allowing user to select an item group a group |
|
Definition
|
|
Term
| What is special about a groupbox object? |
|
Definition
|
|
Term
| True/False: You can only place radiobuttons in a groupbox object |
|
Definition
| False, the box may also contain caption text |
|
|
Term
| Term: Objects that allow a user to choose between them |
|
Definition
|
|
Term
| What is the prefix for a groupbox object? |
|
Definition
|
|
Term
| True/False: When a groupbox is moved, all contained items are moved too |
|
Definition
|
|
Term
| What is the prefix for a radiobutton? |
|
Definition
|
|
Term
| Term: Object that allows user to select more than one choice |
|
Definition
|
|
Term
| Which radiobutton should be checked when a program starts? |
|
Definition
|
|
Term
| Term: Dialog box; opens if user omits or enters incorrect data |
|
Definition
|
|
Term
| Term: Each text string in a procedure |
|
Definition
|
|
Term
| What is the format of a messagebox? |
|
Definition
| MsgBox("What you want messagebox to say", , "Title bar") |
|
|
Term
| What is the default messagebox style? |
|
Definition
|
|
Term
| Term: One of the three fundamental control structures used in programming; deals with different conditions that occur based on values entered into an app |
|
Definition
|
|
Term
| Term: Statement that tests a condition |
|
Definition
|
|
Term
| Term: If 1 condition is true, a second is then tested |
|
Definition
|
|
Term
| Term: More than one condition is included in an if-then statement |
|
Definition
|
|
Term
| Term: And, Or, and Not used in a compound condition |
|
Definition
|
|
Term
| Term: Complete programming task that can be added into a program |
|
Definition
|
|
Term
| Term: Checks input value to determine if it can be converted to a numeric data type |
|
Definition
|
|
Term
| What is the order of operations for logical operators? |
|
Definition
|
|
Term
| True/False: IsNumeric is a way to validate data |
|
Definition
|
|
Term
| What decision structure should you use if you have many different options? |
|
Definition
|
|
Term
True/False: You can specify intervals in a select case by stating: 'Case 1 To 3' |
|
Definition
|
|
Term
| What statement will exit a procedure if it finds a statement true? |
|
Definition
|
|