Array MCQ : General Questions (Multiple Choice Questions)
Question 1 |
Set of consecutive memory locations is called as ________.
Array | |
Loop | |
Pointer | |
Function |
Question 2 |
Array can be considered as set of elements stored in consecutive memory locations but having __________.
Same Data Type | |
Different Data Type | |
None of these | |
Same Scope |
Question 3 |
In Array, There is one to one correspondence between set of ________ and set of values.
Constants | |
Variables | |
Memory Locations | |
Indices |
Question 4 |
Smallest element of an array is called as _______.
Range | |
Lower Bound | |
Middle Bound | |
Upper Bound |
Question 5 |
If we have declared an array described below -
int arr[6];then which of the following array element is considered as last array element ?
arr[6] | |
arr[0] | |
arr[5] | |
arr[4] |
There are 5 questions to complete.