Google News
logo
Data Structures - Quiz(MCQ)
Assuming int is of 4bytes, what is the size of int arr[15];?
A)
11
B)
15
C)
19
D)
60

Correct Answer :   60


Explanation : Since there are 15 int elements and each int is of 4bytes, we get 15*4 = 60bytes.

Advertisement