Is java hashset ordered?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is the difference between hashmap and hashtable? What is an interface?

0 Answers  


What is contract between hashcode and equal method?

0 Answers  


What is polymorphism in java? What are the kinds of polymorphism?

0 Answers  


What is mysql driver class name?

0 Answers  


What is the difference between static and non-static variables in java programming?

0 Answers  


What is native code?

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


What is difference between iterator access and index access?

0 Answers  


What is method and methodology?

0 Answers  


Can a class have 2 constructors?

0 Answers  


What is the purpose of garbage collection in java, and when is it used?

0 Answers  


Why set do not allow duplicates in java?

0 Answers  


Categories