Java Interview Questions - III

Started by sukishan, Jul 15, 2009, 01:34 PM

Previous topic - Next topic

sukishan

Q: What is HashMap and Map?
A: Map is Interface and Hashmap is class that implements that.


Q: Difference between HashMap and HashTable?

A: The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls. (HashMap allows null values as key and value whereas Hashtable doesnt allow). HashMap does not guarantee that the order of the map will remain constant over time. HashMap is unsynchronized and Hashtable is synchronized. 


Q: Difference between Vector and ArrayList?
A: Vector is synchronized whereas arraylist is not.
A good beginning makes a good ending