When there is a collision during a put in a HashMap is the map resized or is the entry added to a list in that particular bucket?
Resising is done when the load factor is reached.
When there is a collision during a put in a HashMap the entry is added to a list in that particular "bucket". If the load factor is reached, the Hashmap is resized.