Table of Content

Array MCQ : General Questions (Multiple Choice Questions)


Question 1
In order to access any element of an array if the position of element is known , Time complexity will be equal to _________.
A
O(n2)
B
O(n-1)
C
O(n)
D
O(1)
Question 2
Size of an array is known at ________.
A
Run Time
B
Compile Time
Question 3
A Pointer to a block of memory is considered same as an array.
A
Yes
B
No
Question 4
What will happen if in a C program you assign a value to an array element whose subscript exceeds the size of array?
A
The program may crash if some important data gets overwritten.
B
The array size would appropriately grow.
C
The compiler would report an error.
D
The element will be set to 0.
Question 5
If you pass an array as an argument to a function, what actually gets passed?
A
First element of the array
B
Base address of the array
C
Value of elements in array
D
Address of the last element of array
There are 5 questions to complete.