Hi, I have a Question. Consider that i have a global HashMap hashMap1. If 1 execute the below statment, it will insert a new entry with key = "k1" (If the key wasnt there) or it will replace the value for "k1" with hashMap2, if the key "k1" is already there. hashMap1.put("k1",hashMap2); Thus I assume that during the time when hashMap1.put("k1",hashMap2); ...