Term
|
Definition
Operators that require an operand on both sides of the operator. |
|
|
Term
|
Definition
Expression involving relational and/or logical operators. |
|
|
Term
|
Definition
Numeric representation for every key on the keyboard and for other assorted characters. |
|
|
Term
|
Definition
Value of a relational expression will always be True or False. Expressions are evaluated from left to right with no order of operations. |
|
|
Term
|
Definition
Used with Boolean expressions. |
|
|
Term
|
Definition
Expression that evaluates to either True or False is said to have Boolean data type. |
|
|
Term
|
Definition
Block of code that causes the program to take a course of action based on whether a condition is true. |
|
|
Term
|
Definition
Extension of the If block allows for more than two possible alternatives. |
|
|
Term
|
Definition
One If block contained inside another If block. |
|
|
Term
|
Definition
Efficient decision-making structure that simplifies choosing among several actions. It avoids complex nested If constructs. |
|
|
Term
|
Definition
Determines the value of an expression Select Case choices. |
|
|
Term
|
Definition
Itemizes the values of the selector for which the action should be taken. |
|
|
Term
|
Definition
Variable declared inside an If … Then or Select Case block has block level scope and the variable cannot be referred to outside the block. |
|
|
Term
|
Definition
Structures in programming used to repeat a sequence of statements a number of times. |
|
|
Term
|
Definition
Repeats a sequence of statements either as long as or until a certain condition is true. |
|
|
Term
|
Definition
|
|
Term
|
Definition
Numeric variable that keeps track of the number of items that have been processed. |
|
|
Term
|
Definition
Numeric variable that totals numbers. |
|
|
Term
|
Definition
Variable that keeps track of whether a certain situation has occurred. |
|
|
Term
|
Definition
Statements inside a loop that contain another loop. |
|
|