Array in C++ Array in C++ Question #24494
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

Choose the Best Option

Click any option to instantly check if you're correct.

  • A while loop
  • B do-while loop
  • C for loop
  • D switch loop
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

Share This Question

Challenge a friend or share with your study group.