MCQ
Single Best Answer
Moderate
QArray indexing in C++ starts from
ID: #24491
Array in C++
29 views
Question Info
#24491Q 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 always starts from 0.
That means:
-
The first element of an array is accessed using index 0
-
The second element uses index 1, and so on
Example:
int a[3] = {10, 20, 30};
Index-wise access:
-
a[0] = 10 -
a[1] = 20 -
a[2] = 30
Correct Answer: B) 0
Description:
C++ uses zero-based indexing for arrays.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic