Table of Content

Array MCQ : General Questions (Multiple Choice Questions)


Question 1
Set of consecutive memory locations is called as ________.
A
Array
B
Loop
C
Pointer
D
Function
Question 2
Array can be considered as set of elements stored in consecutive memory locations but having __________.
A
Same Data Type
B
Different Data Type
C
None of these
D
Same Scope
Question 3
In Array, There is one to one correspondence between set of ________ and set of values.
A
Constants
B
Variables
C
Memory Locations
D
Indices
Question 4
Smallest element of an array is called as _______.
A
Range
B
Lower Bound
C
Middle Bound
D
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 ?
A
arr[6]
B
arr[0]
C
arr[5]
D
arr[4]
There are 5 questions to complete.