Arrays Flashcards
1
Q
An array size can not change once it is created.
A
True
2
Q
To access Nth element of an array students, use students[n-1] as the starting index is 0.
A
True
3
Q
Array element value can be changed any number of times
A
True
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
5
Q
is used to store a collection of data
A
Array
6
Q
a collection of
variables of the same type.
A
Array
7
Q
to declare an array in C++
A
type arrayName [ arraySize ];
8
Q
The number of values between braces { } is the number of
elements that we declare for the array between square
brackets [ ].
A
True