public V putIfAbsent(K key, V value)
a) key is not present-->return null
b)key is already present-->returns old Value
void computeIfAbsent(K key,Function function)
a) key is already present-->map wont be changed
b)key is not present-->computes value