Google News
logo
Data Structures - Quiz(MCQ)
Which one of the following is the size of int arr[9] assuming that int is of 4 bytes?
A)
9
B)
15
C)
24
D)
36

Correct Answer :   36


Explanation : The answer is b because the size of int type data is 4 bytes. The array stores 9 elements, so the size of the array is 9*4=36 bytes.

Advertisement