_____ is used to generate a series of elements one at a time.
-
Vector
-
Hash Table
-
Stack
-
Enumeration
D
Correct answer
Explanation
Enumeration is an interface in Java that allows you to generate (iterate through) a series of elements one at a time from collections like Vector or Hashtable. Unlike other data structures, Enumeration specifically provides the hasMoreElements() and nextElement() methods for sequential access.