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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are Parallel arrays

A

They store related data in two or more arrays.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an element

A

each individual item in an array that contains a value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly