Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the difference between HashMap And HashTable?

Answers were Sorted based on User's Feedback



what is the difference between HashMap And HashTable?..

Answer / ravikiran

HashMap allows one null key and multiple null values
HashTable doesnn't allow nulls
HashMap is not synchronized
hashtable is synchronized

Is This Answer Correct ?    13 Yes 0 No

what is the difference between HashMap And HashTable?..

Answer / stalin

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

Is This Answer Correct ?    8 Yes 0 No

what is the difference between HashMap And HashTable?..

Answer / guest

HashMap is a nonsyncronized and HashTable is a
syncronized.

Is This Answer Correct ?    7 Yes 0 No

what is the difference between HashMap And HashTable?..

Answer / venkateswarlu

HashMap :
->It is a key,value pair.
->key are not duplicated but values can be duplicated.
->Null key is possible.
->It is not Synchronized by default.

Hashtable:
->It is also key,value pair but both are Strings only.
-> Keys are not duplicated but values can be duplicated.
->Null insertion is not possible of both(key and value).
->It is Synchronized by default.

Is This Answer Correct ?    0 Yes 0 No

what is the difference between HashMap And HashTable?..

Answer / raghu

HashMap only one null key and multiple values. Hashtable
doesn't allow null keys and values, it throws
NullPointerException. Both are not guarantee order. HashMap
is unsyncronized, whereas Hashtable is not.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

Can a final variable be initialized in constructor?

0 Answers  


What is the difference between processes and threads?

0 Answers  


Explain about static imports in java?

0 Answers  


what do you mean by stream pipelining in java 8? Explain

0 Answers  


Why is boolean important?

0 Answers  


What is lexicographically smallest string?

0 Answers  


Which is better ascii or unicode?

0 Answers  


Can I import same package/class twice?

0 Answers  


What is the static block?

0 Answers  


How do you sort words in java?

0 Answers  


Can we have a try block without catch block?

0 Answers  


Can we serialize singleton class?

0 Answers  


Categories