Difference between HashMap and LinkedHashMap

HashMapLinkedHashMap
underlying data structure if HashtableUnderlying Data structure is Hashtable+Linkedlist
Insertion order is not preservedInsertion order is preserved
Introduced in version 1.2Introduced in version 1.4