What is the Set interface?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
Set interface is the one which will provide convinience
methods to add the objects which contains no duplicates.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / vijayakumar chinnasamy
Set is an interface in java.util package.Set does not allow
duplicate values but using set we can easily sort the
elements in ascending order using treeset.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is use of super keyword in java?
What is the size of arraylist in java?
How to perform Singleton of the java class object on multi JVM?
Does every java program need a main?
What kind of variables can a class consist?
Define Compiling?
Can a abstract class be defined without any abstract methods?
Can singleton class be cloned?
whether java is fully object oriented language or partially object oriented language
What is the difference between assignment and initialization?
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;
How to disable caching on back button of the browser?