How many types of array data structure?
a) one
b) two
c) three
d) four
Explanation: one dimensional array, two-dimensional array
Array elements are stored in ………. Memory locations inside the
computer memory.
a) memory locations
b) consecutive memory locations
c) disjected memory locations
d) none of these
How many common terminologies used in array?
a) one
b) two
c) three
d) four
Explanation: name of array, size of array, index of array
Which of the following can be valid identifier of the array?
a) name of array
b) size of array
c) index of array
d) none of these
The number of elements that can be stored in an array is called?
a) name of array
b) size of array
c) index of array
d) none of these
Which of the following is the correct format of array?
a) float z[10];
b) float z{10};
c) float z(10);
d) none of these