Multiple choice technology programming languages

which of the following iterator must support *, ==, =- and ++ operations

  1. Input Iterator

  2. Output Iterator

  3. Forward Iterator

  4. None of these

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

Forward iterators must support dereferencing (*), equality comparison (==), assignment (=), and increment (++). Input iterators lack assignment capability, and output iterators cannot compare equality, making Forward Iterator the correct answer.