Assuming int is of 4bytes, what is the size of int arr[15];?
Answer: D
Since there are 15 int elements and each int is of 4bytes, we get 15*4 = 60bytes.