Term
| Variable (or simple variable) |
|
Definition
| Name to which Visual Basic can assign a single value. |
|
|
Term
|
Definition
| Collection of simple variables of the same type to which Visual Basic can efficiently assign a list of values. |
|
|
Term
|
Definition
| Unique number that identifies each variable in a one-dimensional array. |
|
|
Term
|
Definition
| Individual variable in the array. |
|
|
Term
|
Definition
| Searching successive elements of an ordered list beginning with the first element. |
|
|
Term
|
Definition
| Array in ascending order and a sought-after value, quarry, that may be in the array. Repeatedly halve the range of indices where quarry might be found. Halving routine looks at the middle value of the current range and compares it to quarry with =, >, and <. |
|
|
Term
|
Definition
| Stores a table of items of the same type. |
|
|