MCQ
Single Best Answer
Moderate
QWhich loop is most commonly used to access array elements?
ID: #24494
Array in C++
36 views
Question Info
#24494Q 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 C
Explanation
The for loop is most commonly used to access array elements because:
-
The number of elements in an array is usually known
-
It allows easy control of the index using initialization, condition, and increment
Example:
for (int i = 0; i < 5; i++) {
cout << arr[i];
}
Other loops (while, do-while) can also be used, but they are less convenient for array traversal.
A switch loop cannot be used to iterate over arrays.
Correct Answer: C) for loop
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic