Contents

How many types of array data structure?
a) one                                    
b) two
c) three                                  
d) four

b

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

b

How many common terminologies used in array?
a) one                                    
b) two
c) three                                 
d) four

c

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

a

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

b

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

a