Multiple choice technology testing

In places of 'For Each … Next loop', conventional For loop cannot be used, to iterate through collections . State true or false.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A conventional For loop using an index counter can iterate through collections by index (e.g., using Item(i) or id(i)), so a For Each loop is not strictly mandatory, making the statement false.