Both are used to traverse a sequence of elements.
>> Iterator is new while Enumeration is old.
>> Iterator take the place of Enumeration in Java collections framework.
>> Iterator iterates over a collection while Enumeration iterates over Vector, key and value of Hashtable.
>> Iterator allows to remove elements during the iteration while Enumeration is read only
>> Iterator improves the method names