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?
There are no hints for this question