Sir your explaination is crystal clear.. I watched so many videos it was too confused I thought no one can make me understand this concept.. Bt I'm wrong you broke that.. Hats off sir..
@SivaReddyJavaTechie4 жыл бұрын
Thanks Priya. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy learning.
@deepak1234177 жыл бұрын
Please describe load factor and issues with re hashing and how it can be resolved in details
@ankittiwary37128 жыл бұрын
sir please upload tutorial on contract between equals and hashcode method with example
@SuprajaYKM7 жыл бұрын
In concurrent hashmap suppose one segment is locked for writing data, and user is accessing data from concurrent hashmap at same time then will user loose data from locked segment.
@pratikshajadhav72976 жыл бұрын
Can you please explain collision concept and handling in HashMap
@maheshreddy93517 жыл бұрын
Hi sir, If we add one entry to hashMap,On which basis it will be inserted into bucket i mean how it choose the particular index. Thanks in advance.
@abhishekcooldude1005 жыл бұрын
Hi Sir, its been an excellent session for interview questions, however can you upload tutorials for spring interview questions for experienced professionals too.
@SivaReddyJavaTechie5 жыл бұрын
Hi Abhishek, You can find spring related Interview Q&A @ kzbin.info/www/bejne/hXmbhJyCjc6ChM0. You can go through our KZbin channel playlists, you will find more useful videos on various topics for interviews. Please refer our KZbin channel to your friends circle as it might be helpful for them. Happy Learning.
@RoopkishorPandeyji7 жыл бұрын
Hi Sir, I am looking for internal implementation of Hashmap, can u please explain. provide link if you already have release the video.
@SivaReddyJavaTechie7 жыл бұрын
kzbin.info/www/bejne/r4qXloytr619aas
@RoopkishorPandeyji7 жыл бұрын
thank you shiva but i was looking for explanation of internal implementation of get put and remove methods. what to write inside put if i have to write my own put method
@unbiased-review6 жыл бұрын
Very well explained sir
@SivaReddyJavaTechie6 жыл бұрын
Thanks.
@princeverma49387 жыл бұрын
Can we use custom object as a key of hadhmap
@SivaReddyJavaTechie7 жыл бұрын
Hi Prince, Yes we can use custom object as a key to HashMap but you need to override the hashcode and equals methods.
@shivanaikrachanaikar28437 жыл бұрын
Hi , Hashmap is accepting the 2 null values but you said it will allow only one null value so please clarify
@SivaReddyJavaTechie7 жыл бұрын
HashMap allows only one null value as key. Even though you add multiple null values as keys, it will override the early null key value and when you print the hashMap you will see only one key with null value in the HashMap.
@melodyjunction69086 жыл бұрын
Hi..sir can assign same value for multiple keys?
@amitdeshmukh2666 жыл бұрын
sanmati ayatawad, yes can assign same value to multiple keys
@SivaReddyJavaTechie6 жыл бұрын
You can assign mutile null values but it will accept only one null value as a key
@monissiddiqui15295 жыл бұрын
Hashmap custom value if put then how it work
@SivaReddyJavaTechie5 жыл бұрын
If you want to add custom value then you need to override equals and hashcode in class. Hashmap works based on your custom logic for equals and hashcode when you add custom (user defined object) as key.
@monissiddiqui15295 жыл бұрын
@@SivaReddyJavaTechie sir can u give any example today interviewer had ask me this quest in Accenture