Click an option to check whether your answer is correct.
In C++, array indexing starts from 0.
For the array:
int a[5];
Total elements = 5
Index values = 0, 1, 2, 3, 4
0, 1, 2, 3, 4
So, the last index is 4, not 5.
Correct Answer: B) 4
Description:The highest index of an array is always size − 1.
Explore more questions from similar topics.
Share this MCQ with your friends or study group.