MCQ
Single Best Answer
Moderate
QWhat is the last index of an array declared as int a[5];?
ID: #24492
Array in C++
32 views
Question Info
#24492Q ID
ModerateDifficulty
Array in C++Topic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option B
Explanation
In C++, array indexing starts from 0.
For the array:
int a[5];
-
Total elements = 5
-
Index values =
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.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic