Multiple Choice
The loop control structure used to move through a collection (group of data items) that does not require you to increment a loop control variable or test the expression to determine when all data has been processed is the ____ statement.
A) while
B) for
C) do...while
D) foreach
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q18: With while loops, if the conditional expression
Q19: With nested loops, the outermost loop is
Q20: A sentinel value is a(n) _. It
Q21: int counter = 0; while (counter <
Q22: The only posttest loop structure available with
Q24: What is a requirement of the sentinel-controlled
Q25: Inside the for statement, when you place
Q26: int counter = 0; while (counter <
Q27: for (int i = 0; i <
Q28: The most appropriate sentinel value that might