Java interview question on hashcode() and equals() || Java collection interview questions on HASHMAP

  Рет қаралды 345,619

Selenium Express

Selenium Express

Күн бұрын

Пікірлер: 169
@SeleniumExpress
@SeleniumExpress 5 жыл бұрын
For step by step explanation on hashcode and equals() in Java, please check out my new playlist by clicking the link below kzbin.info/aero/PL3NrzZBjk6m95SR6WzhnOGGCjXZpCoO-k
@ChongSLee
@ChongSLee 5 жыл бұрын
i get invalid parameters... is this right url? thanks.
@vimalsubha
@vimalsubha 6 жыл бұрын
I like the way you started the problem and slowly decoding...
@sanketh768
@sanketh768 2 жыл бұрын
this helped me out with my issue today, thank you ver much
@manojdehran4698
@manojdehran4698 6 жыл бұрын
You are a real coder, otherwise most of the people talks about theory. Keep up the good work !!
@coolfreaks68
@coolfreaks68 5 жыл бұрын
You are what ?
@sreenivasl5383
@sreenivasl5383 Жыл бұрын
Explained very nicely.. The way of started, the way of required info from api document, different type objects.. 👏
@muralimohan7097
@muralimohan7097 3 жыл бұрын
The way you are explaining the concept with example is awesome and it clear to understand
@diavijay08khush94
@diavijay08khush94 4 жыл бұрын
I have become fan of you.... thanks for the informative vedio....and for the people it's not the fake accent ... it's his confidence that he gained due to knowledge....so please don't discourage any knowledgeable person like this...
@niteshpandey8207
@niteshpandey8207 Жыл бұрын
That's Amazing I'am not aware about Wrapper class that it having equal and hashcode.
@swapnilshinde8110
@swapnilshinde8110 3 жыл бұрын
it,s Really Helpful me this video..........Thanks a lot Sir.
@aakashdetwal9950
@aakashdetwal9950 3 жыл бұрын
Your way of explain is understandable it is helpful
@sangeethchitravel3092
@sangeethchitravel3092 4 жыл бұрын
Good explanation. Addition to that I wanna add one more point, if u add your custom object as key of map then it should be immutable. So u have to make your employee object as immutable object as string class.
@subhashininallapati2080
@subhashininallapati2080 4 жыл бұрын
Excellent teaching. May I know where I can find all your Java interview QA videos, Selenium interview QA , Java tutorial and Selenium tutorial at one place? Could you please share. I am learning a lot from your videos.
@madhavanananthan7077
@madhavanananthan7077 3 жыл бұрын
Master level explanation, really hats off Actually I watched several videos to understand this concept. But this one is 🔥 simply
@PoonamSharma-gy3ky
@PoonamSharma-gy3ky 3 жыл бұрын
Really very helpful content with proper explaination
@shanthinis5667
@shanthinis5667 Жыл бұрын
Very nice explanation.... Awesome 👍
@kumarvijayag
@kumarvijayag 2 жыл бұрын
best example, basic point explained, but still should have talked more about equals and hashcode methods
@prashantthite9061
@prashantthite9061 2 жыл бұрын
Perfect explanation that I want. Now I am clear with my doubts in hastable. Thanks and please create more video on programming.
@Karthik-y3o4z
@Karthik-y3o4z 4 ай бұрын
You tooooo have an impeccable knowledge😊😊
@lordgreat6051
@lordgreat6051 2 жыл бұрын
Because map uses hash to target keys! brilliant example thanks
@AllinOne-et2on
@AllinOne-et2on 3 жыл бұрын
I am watching on Sep 2021. Great job bro. ❤️❤️
@nareshch6454
@nareshch6454 3 жыл бұрын
Wonderful explaination brother
@letusmeet5427
@letusmeet5427 4 жыл бұрын
so super explanation , really it's wonderful explanation. You borned for us only. so so sooooo nice of you.. Thank you soooooo much.
@mbrajucse
@mbrajucse 3 жыл бұрын
Super bro. Nice explaination.👍
@danceayush8128
@danceayush8128 3 жыл бұрын
Now I actually got the point.. Thanks brother 👍
@ponsivakumarmanoharan4994
@ponsivakumarmanoharan4994 3 жыл бұрын
Good one
@priyankaraut9289
@priyankaraut9289 4 жыл бұрын
Gud information keep going
@tasteanotherbite1265
@tasteanotherbite1265 2 жыл бұрын
Amazing explanation 👌
@ajaysuresh3781
@ajaysuresh3781 3 жыл бұрын
Very nice clear explanation Sir. Thank you 👍
@saranyan3910
@saranyan3910 3 жыл бұрын
Wow! Awesome explanation 🙏
@ElCanalDelPadrino
@ElCanalDelPadrino 2 жыл бұрын
Excellent explanation!!
@atiqulny
@atiqulny 4 жыл бұрын
You are a genius
@abhinavghosh725
@abhinavghosh725 4 жыл бұрын
finally someone clearly explained it!
@mohanas6697
@mohanas6697 6 жыл бұрын
Hi, if possible, please explain why we need to override hashcode() if we are overriding equals()...By the way, your accent doesn't matter only subject matters...Keep it going :-) you are doing a great job...
@vishalgaikwad873
@vishalgaikwad873 6 жыл бұрын
Bcz of contract between .equals()/ hashCode() method. ->Two equivalent object should be placed in same bucket and There HASHCODE must be same. s1.equals(s2); && s1.hashCode()==s2.hashCode();
@coolfreaks68
@coolfreaks68 5 жыл бұрын
I shall add in a few more points after what Gaikwad said . • Let's consider we have a HashSet which already has 100 elements preloaded in it. • Let's say, we want to add a new element, ie. the 101th element to the set. • The HashSet is designed to keep unique elements only. So when the 101th element is introduced, the add() logic will compare the 101th element, with each of the previously stored 100 elements. Right ? This is where hashcode() comes to rescue. If a proper hashcode() logic has been implemented, then the addition of new elements to the HashSet, will require much fewer equality comparisons. • For example without hashcode() the add() method has to do 100 equality checks. But with a good hascode() logic, the add() operation may not require more that 20 checks.
@srinathravichandran8796
@srinathravichandran8796 5 жыл бұрын
@@coolfreaks68 Hi subhadeep..I can get ur point that with a good hashcode logic, we can avoid more comparisons.could you pls explain how it minimizes the comparison?
@coolfreaks68
@coolfreaks68 5 жыл бұрын
@@srinathravichandran8796 - Obviously because each Hash bucket usually has fewer elements than its parent Hash Set. Only a very bad hascode() logic can push all the elements of HashSet into just one Hash bucket - giving no performance improvement. A good hashcode() logic on the other hand, distributes the elements among multiple buckets, with each bucket having very less number of elements and with all the buckets having almost equal number of elements. Eg : if you have , lets say a 100 element in hash set. A bad hashcode() logic will push all 100 elements into 1 bucket , leaving other buckets empty ! A good hashcode() logic will push 10 elements to each of the 10 buckets. So whenver you are searching , first you find out the bucket number, then you do a binary search inside that specific bucket. So there is performance improvement.
@sergioantoniomartinez9227
@sergioantoniomartinez9227 4 жыл бұрын
@@coolfreaks68 that's a clever way of handling buckets, thank you
@saiadaikappan
@saiadaikappan 4 жыл бұрын
Very clear explanation, thank you !!! your voice makes the explanation more interesting.
@arindamroy7671
@arindamroy7671 3 жыл бұрын
Not really !
@pratikalhat9484
@pratikalhat9484 2 жыл бұрын
very nicely explained
@ShubhamGupta-fm7lv
@ShubhamGupta-fm7lv 6 жыл бұрын
I don't know why I didn't see this video earlier. Got this in an interview and I wasn't able to answer.
@JaspreetSingh-ln1yc
@JaspreetSingh-ln1yc 3 жыл бұрын
same bro,same!!
@AtulMishra-rs5os
@AtulMishra-rs5os 6 жыл бұрын
Explanation was helpful but a bit confusing during few moments. Two advice for you if you accept it.... First: Try to speak in Indian accent of English so it won't fake. Second: Reduce the redundancy of some words you speak very frequently i.e. 'Over here'. You don't complete your most of the sentences without prefixing or suffixing 'Over here' ;). Please don't take it personal and also remember "Your critics are your biggest followers".
@rajeshchouhan458
@rajeshchouhan458 5 жыл бұрын
Agreed men
@SudhanshuSrivastavaIndia
@SudhanshuSrivastavaIndia 5 жыл бұрын
I have same opinion. Sometimes it made me feel annoying. Fantastic tutorial but need to improve the above mentioned points.
@august24outing5
@august24outing5 4 жыл бұрын
Agree, that's the worst part of it...be natural...
@khagendrakumar8025
@khagendrakumar8025 6 жыл бұрын
i saw lots of video but still there is confusion in my mind ,,,after seeing this video i understand 100% of this fundamental,thank u sooooo much,keep going we will support you.
@1976balakrishna
@1976balakrishna 3 жыл бұрын
nice one
@deepikajagadees7996
@deepikajagadees7996 2 жыл бұрын
Thank you a lot for the great explanation
@hetalrachh5665
@hetalrachh5665 4 жыл бұрын
Amazing and very simple explanation, Thanks !!
@chloeren9175
@chloeren9175 2 жыл бұрын
Thank you so much for your great explanations! so all i need to do is to go to Id=>source=>generate hashcode( )and equal(),so i cn get the map.size(1),right?
@harit9380
@harit9380 4 жыл бұрын
Great Video!! Understood clearly!
@somethingforyou891
@somethingforyou891 5 жыл бұрын
Superb explanantion. Thank you
@sauravsrivastava9019
@sauravsrivastava9019 2 жыл бұрын
Good explanation
@DavidCervantesmrclutch
@DavidCervantesmrclutch 4 жыл бұрын
Nice video Bro
@macherladevasundaram4928
@macherladevasundaram4928 4 жыл бұрын
Very good explanation bro.. Thank you..
@oussamabr5851
@oussamabr5851 4 жыл бұрын
Excellent explanation! Thanks.
@erictang4447
@erictang4447 5 жыл бұрын
Thank you for explanation. The visual animation is very helpful.
@srilakshmi5922
@srilakshmi5922 4 жыл бұрын
simply awesome
@rameshbabu5754
@rameshbabu5754 5 жыл бұрын
Below my all question are more help full in interview point of view. So, Could you please explain below all videos to me
@shalabhdixit
@shalabhdixit 5 жыл бұрын
No where the difference between hashCode and equals is explained. Also please explain why we need to generate the hashcode and equals method and how did it make the values change from 2 to 1
@SeleniumExpress
@SeleniumExpress 5 жыл бұрын
Hi Shalabh, This is a video from my interview questions and answers series. So I haven't covered the concept in this video rather this is just an interview question that I am trying to explain. I will be posting a complete video on this concept in the coming week.
@shalabhdixit
@shalabhdixit 5 жыл бұрын
@@SeleniumExpress ok. Thank you!
@merajulhaque9107
@merajulhaque9107 4 жыл бұрын
@@SeleniumExpress Can you please share the link for the complete concept video.
@krishnasuripaka2480
@krishnasuripaka2480 4 жыл бұрын
Super Brother...
@OrdinaryTalesofSamriddhi
@OrdinaryTalesofSamriddhi 3 жыл бұрын
You describe everything in such an organized and nice manner. No one can compete you. From covering the most trivial detail to covering the complex thing of every concept is what makes you unique. Keep up the good work. Looking forward to many more informative videos from you.
@bignormalizedgaps
@bignormalizedgaps 6 жыл бұрын
Спасибо! Thank you from Russia!
@SeleniumExpress
@SeleniumExpress 6 жыл бұрын
You are welcome !!
@dsgtechinfo5639
@dsgtechinfo5639 3 жыл бұрын
Thanks a lot friend
@krishnasingh9111
@krishnasingh9111 5 жыл бұрын
Very help full for beginners thank you :)
@kingajable
@kingajable 4 жыл бұрын
you doing great job buddy keep it up
@amitaswar7010
@amitaswar7010 6 жыл бұрын
I like the ending music so much and video too thank you bhai
@RiyazParasara
@RiyazParasara 5 жыл бұрын
Great thanks.
@alittlecoding
@alittlecoding 5 жыл бұрын
Good job. thanks
@damodaranm3044
@damodaranm3044 5 жыл бұрын
Wow r Ally good .and why don't you make videos in following concept cuz there is no good videos in KZbin threads collection jsf spring
@trendytopics-
@trendytopics- 3 жыл бұрын
THANK YOU SO MUCH!
@Ishnavvulu
@Ishnavvulu 6 жыл бұрын
Thank u sir for the great tutorial.This is fundamental and root to start.This is what we missed till now in other tutorials.very unique explanation.Thank u ..big fan :)
@SeleniumExpress
@SeleniumExpress 6 жыл бұрын
Thanks, Teju..
@techsteering
@techsteering 5 жыл бұрын
Excellent. Thanks for sharing your knowledge.
@shubhamraj5184
@shubhamraj5184 3 жыл бұрын
Wow thanks 💓
@kssinfonet2394
@kssinfonet2394 3 жыл бұрын
Dear Abhilash sir i have one que. which empoyee object will hashmap put 1st ya 2nd after using hashmap and equal method😊
@rameshbabu5754
@rameshbabu5754 5 жыл бұрын
Could you please explain the oops (Abstraction, Inheritance, Encapsulation, Polymorphism ) concepts in java with theory and real examples
@sulavagarwal3561
@sulavagarwal3561 6 жыл бұрын
u got great explanation skills
@anonymouskunal2748
@anonymouskunal2748 3 жыл бұрын
overall conclusion 10:40 thank you sir
@harshav3902
@harshav3902 4 жыл бұрын
Thanks for the explanation dude. It helped.
@premkirankatinedi4479
@premkirankatinedi4479 5 жыл бұрын
Wow...this is to the point. Thanks a lot
@salenaluu8477
@salenaluu8477 3 жыл бұрын
Thank you so much
@ARI-em6me
@ARI-em6me 5 жыл бұрын
Very very clear explanation. Plse upload how to upload webproject deployed server
@JaishriVemuganti
@JaishriVemuganti Жыл бұрын
I put the code as you shown in my side and in both cases ham getting size =2
@rameshbabu5754
@rameshbabu5754 5 жыл бұрын
Could you please explain the Internal mechanism of HashSet in java with theory and real time examples
@tw5529
@tw5529 3 жыл бұрын
Great Explanation👌 Thanks a Lot :-) . BTW, which software are you using for making this video?? It looks so attractive 😊
@lux27.42
@lux27.42 5 жыл бұрын
this video easy to understand :) thankyou so much.
@vishnupriya80
@vishnupriya80 4 жыл бұрын
hi your videos were really helpful. do you have any videos related to regular expressions?
@premkirankatinedi4479
@premkirankatinedi4479 5 жыл бұрын
Simply Awesome!!
@srinivasang4566
@srinivasang4566 5 жыл бұрын
Nice
@trendingtechnologiesit924
@trendingtechnologiesit924 6 жыл бұрын
Simply awesome
@priyankaraut9289
@priyankaraut9289 4 жыл бұрын
Do videos on java framework
@rameshbabu5754
@rameshbabu5754 5 жыл бұрын
Could you please explain the use of Comparable and Comparator in java with theory and real time examples
@dhanalaxmi2569
@dhanalaxmi2569 4 жыл бұрын
Verify durga software videos it is explained thr
@rthiaga
@rthiaga 5 жыл бұрын
In the hashCode method why 31 is multiplied by 1 and id. We can directly return the id right?
@raghavanaliassaravananm1546
@raghavanaliassaravananm1546 5 жыл бұрын
No. That is really required for Hashing, which recommends the key value (here 'id') to be multiplied by a prime number. For all sake of randomness. Most people take 31 as a good prime number to have a better sampling.
@kanagarathinamannamalai8020
@kanagarathinamannamalai8020 5 жыл бұрын
Nice Explanation bro.Thanks👍..
@srikanth29
@srikanth29 6 жыл бұрын
Thank u very much. Very helpful and clear
@SeleniumExpress
@SeleniumExpress 6 жыл бұрын
Thanks, Sri Kanth.
@subramanianchenniappan4059
@subramanianchenniappan4059 5 жыл бұрын
Thanks a lot
@rameshgollapudi588
@rameshgollapudi588 6 жыл бұрын
Very nice
@SeleniumExpress
@SeleniumExpress 6 жыл бұрын
Thanks, Ramesh
@felixkimutai8478
@felixkimutai8478 5 жыл бұрын
Great! Thank you.
@sonyguptayourdearestsony
@sonyguptayourdearestsony 6 жыл бұрын
nice good explanation
@deepar781
@deepar781 5 жыл бұрын
Its good. Keep Posting bro
@bakhromachilov8456
@bakhromachilov8456 5 жыл бұрын
Perfect
@aayush-zw1mx
@aayush-zw1mx 4 жыл бұрын
But Sir the two employees object hold different memory addresses and in a map we cannot have same keys and in this case the keys emp1 and emp2 are already different only the value they contain are same .So how are the entry set duplicates.Can you pls explain
@peedrap987654321
@peedrap987654321 6 жыл бұрын
Excellent
@vishalmishra1937
@vishalmishra1937 5 жыл бұрын
perfect explanation but too many ads literally.
@commonman8540
@commonman8540 2 жыл бұрын
HI Avinash, When we use jpa repository.saveOrUpdate(product);, my product object has 1 lak records, will it accept? Is there any limitation ?
@helishah9065
@helishah9065 5 жыл бұрын
Amazing explanation! Thanks a lot :)
@shares2invest987
@shares2invest987 2 жыл бұрын
For Treemap its not working bro, Can u do a video on How to avoid inserting duplicate employee objects in Treemap
@himachaliravi
@himachaliravi 6 жыл бұрын
Good example
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 213 МЛН
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,9 МЛН
Why string is immutable in java || The 4 reasons you must know || part 1
20:53
[PRACTICAL]How Hashmap works internally || Debugging || part 2
23:35
Selenium Express
Рет қаралды 166 М.
Set and HashSet in Java - Full Tutorial
20:43
Coding with John
Рет қаралды 232 М.
#15 - Top 20 HashMap Interview Questions in Java || By Naveen AutomationLabs
27:35
02. Equals and HashCode Contract & Different Variations
11:19
Ankit Wasankar
Рет қаралды 61 М.