For this question, assume we want to print out every other element in an array. This means we'd want to print out index 0 and 2, but not 1 or 3. Which of the following types of loop would NOT be a good choice for this scenario?

For-Each Loop
  • While Loop
  • Numeric For Loop (Counter-controlled For Loop)

There are no hints for this question