Which of the following statements is/are true?
A for-each loop can iterate through an array starting
A.
With a for-each loop, the loop order is determined for you.
With an array, this means starting with index 0, and Option A is correct.
A traditional for loop allows you to control the order and iterate in either order.