Answer Posted / janet
An object that implements the Enumeration interface
generates a series of elements,one at a time. It has two
methods,namely hasMoreElements() and nextElement().
hasMoreElements() tests if this enumeration has more
elements and nextElement() method returns successive
elements of the series.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are synchronized methods ?
How large is a boolean?
Can we override private method?
What is a method in coding?
What is a method in java?
What is the base class of all classes?
what is function overloading in java?
What is string data type?
Is break statement can be used as labels in java?
Can we have any other return type than void for main method?
Can we call virtual funciton in a constructor ?
List some important characteristics on jre
Explain what do you mean by functional overloading in java?
What is garbage collection? Can it be forced to run?
extending thread class or implementing runnable interface. Which is better? : Java thread