An ____ is an object that produces each element of a container, such as a linked list, one element at a time.

A. initiator
B. iterator
C. interpreter
D. accessor


Answer: B

Computer Science & Information Technology

You might also like to view...

Item 2 in the figure above represents the _______ of the style sheet.

A. heading B. filename C. body D. folder

Computer Science & Information Technology

Which of the following sound file formats have a MIME type of audio/basic?

A. AIFF B. WAV C. SND D. MP3

Computer Science & Information Technology

Which of the following is a true statement?

A. a procedure can be called from more than one location B. a procedure call can appear in a procedure C. each procedure call is matched by a return in the called program D. all of the above

Computer Science & Information Technology

The function prototype for a correctly-written overloaded assignment operator for a class called Bar might look like this:

A. void operator =( const Bar & right ); B. Bar operator =( const Bar & right ) const; C. inline Bar operator=( const Bar & right ) &; D. Bar & operator=( const Bar & right );

Computer Science & Information Technology