Arrays Flashcards

1
Q

An array size can not change once it is created.

A

True

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

To access Nth element of an array students, use students[n-1] as the starting index is 0.

A

True

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

Array element value can be changed any number of times

A

True

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

is a series of elements of the same type placed
in contiguous memory locations that can be individually
referenced by adding an index to a unique identifier.

A

Array

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

is used to store a collection of data

A

Array

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

a collection of
variables of the same type.

A

Array

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

to declare an array in C++

A

type arrayName [ arraySize ];

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

The number of values between braces { } is the number of
elements that we declare for the array between square
brackets [ ].

A

True

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