What is an enumeration class?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ravikiran(aptech mumbai)
enumeration class contains the method elements to traverse
threw the elements of collection
| Is This Answer Correct ? | 2 Yes | 2 No |
how to convert mm/dd/yy to dd/mm/yy using collections in java.
What is public static?
1).Is Object class abstract or not? 2).Is main method(public static void main(String args[])low priority thread or high priority thread?
How many methods does cloneable interface contains?
if a java file without any source code is valid java file?
What is serialization in java?
What are the allowed, non-Unicode letter characters that can be used as the first character of an identifier?
I/O blocking means?
What is the main difference between java platform and other platforms?
State two differences between C and Java.
What is OOPS Concept?
When should we create our own custom exception classes?