Site MapHelpFeedbackTrue or False
True or False
(See related pages)

1
An array is a list or series of values
A)True
B)False
2
An array is a series of values, all referenced by the same variable name
A)True
B)False
3
Sometimes arrays are referred to as list boxes
A)True
B)False
4
Each individual variable in an array is called a "member" of the array
A)True
B)False
5
An array is a series of individual variables, all referenced by the same name but having unique indexes
A)True
B)False
6
A subscript may also be called an index
A)True
B)False
7
A Dim statement can be used to specify initial values for the array elements
A)True
B)False
8
When an array is initialized with the Dim Statement, the index starts at 1 instead of 0.
A)True
B)False
9
StudentNameString (0) is a valid position in an array that is declared with the statement: Dim StudentNameString(15) As String.
A)True
B)False
10
The following code is valid for declaring an array with ten elements: Dim EmployeeNameString(0 to 10).
A)True
B)False







Bradley:Programming in VB 2008Online Learning Center

Home > Chapter 8 > True or False