Chapter 8 - Final Flashcards
1
Q
What is an Array?
A
A variable that can store more than one value
General format: Dim intReservations(300) as Integer
2
Q
What are Array Properties?
A
Zero is the index used to reference a value in the first array element. The length of an array contains the number of elements in an array.
decManda(50) <- the array size is 51.
3
Q
What are Parallel arrays
A
They store related data in two or more arrays.
4
Q
What is an element
A
each individual item in an array that contains a value
5
Q
Modal vs. Modeless
A
a modal form the user cannot switch focus between form objects until the first form is closed. a modeless form allows the user to switch the input focus at the same time.