Multiple choice technology programming languages which of the following iterator must support *, ==, =- and ++ operations Input Iterator Output Iterator Forward Iterator 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.