00:32 How does HashMap work in Java? 05:18 What is the difference between fail-fast and fail-safe Iterators? 06:57 The difference between HashMap and Hashtable? 08:10 When do you use ConcurrentHashMap in Java? 09:40 What is CopyOnWrite Array List, how it is different than Array List and Vector? 11:00 While passing a Collection as argument to a function, how can we make sure the function will not be able to modify it? 11:47 How to decide between HashMap and TreeMap? 12:49 What is Comparable and Comparator interface?
@sachinsingh-hm7cj3 жыл бұрын
Hii, Thanks for uploading the live interviews they are of great value. If possible can you upload a pdf of mostly encountered questions/topics company wise it will be very helpful to follow up. thanks ☺️
@JavaTechies3 жыл бұрын
Sure, I will create one and will share the link in description
@PetTalks.3 жыл бұрын
Thank you very much If you prepare the pdf...🙂
@bantypatel72673 жыл бұрын
Great explanation 👍
@dp-sg8hc3 жыл бұрын
Hi, Thanks for uploading valuable content. please Java8-Java11 interview questions as well.
@pranoydas96542 жыл бұрын
For a pojo class, why do we need to create or override hashcode and equals method ?
@JavaTechies2 жыл бұрын
To change the behaviour according to our requirement, like differentiate on the basis of I'd only
@navyaj15273 жыл бұрын
Sister please provide CV preparation tips too
@irckdwrld3 жыл бұрын
Hi, Thanks for helping those who are planning for job change. I have a doubt and a request. Doubt: What's the difference between segment and bucket when we talk about ConcurrentHashMap. Request - If you're taking mocks even now, can you please provide the URL of the form, where we can fill details to schedule a mock interview.
@JavaTechies3 жыл бұрын
@Stoic Guy Bucket is the complete array( by default 16 segments in a bucket). Hope I cleared your doubt. Join us on telegram, you will find the link in pinned messages.
@vickygill073 жыл бұрын
Hi, good job. The way you have started the video was good with an example. But later on, it was totally theoretical what everyone can google and find. It would be best if you have explained the topics with some sample example or code. This will help those who won't understand much from theory concepts. Best of luck with future videos.
@JavaTechies3 жыл бұрын
Thanks Vikas,yes this was our first video apart from Interviews, we have created a couple of more videos also, these are with code snippets
@navyaj15273 жыл бұрын
Well done sis, thank you soo much
@rexsam31342 жыл бұрын
What are the limitations of storing data in HashMap? What if there is huge amount of data where the linkedlist too may cause issue like what they have discussed in binary tree enhancement in Java 8?
@JavaTechies2 жыл бұрын
Thread safety is one limitation. Linkedlist serve a different purpose, we go for map in case we need key value pair, otherwise we go for lists or array only
@rexsam31342 жыл бұрын
@@JavaTechiesMansi : so for a huge data volume only ArrayList is a probable option. Can you have a topic on when to use which collection w.r.t. data volume? Also you mentioned to use CopyOnWriteArraylist being preferred over ArrayList? Did any of your projects used this?
@prakashbtw6783 жыл бұрын
Thanks a lot for sharing valuable things. Please tell me steps followed by you to track JP Morgan.how did you apply to JP Morgan and how you got shortlisted..
@JavaTechies3 жыл бұрын
I updated Naukri portal almost daily and also filtered out few companies that I liked and put my resume over their career site. These 2 things helped me to get through very good companies like JP Morgan, Morgan Stanley, Oracle, FIS, Ciena.
@prakashbtw6783 жыл бұрын
@@JavaTechies thanks a lot for reply
@JavaTechies3 жыл бұрын
@@prakashbtw678 definitely it matters, well organised informationand latest 3 projects, make sure you mention your role in each
@prakashbtw6783 жыл бұрын
@@JavaTechies thank you
@JavaTechies3 жыл бұрын
@@prakashbtw678 welcome 🙏
@BabaBabaji3 жыл бұрын
Keep update this type of video
@JavaTechies3 жыл бұрын
Thanks 👍
@subramanianchenniappan40593 жыл бұрын
Thanks
@ramkumar_balu3 жыл бұрын
Very useful
@JavaTechies3 жыл бұрын
Thank you, if you have any specific questions, feel free to ask, I will include them in coming videos
@ramkumar_balu3 жыл бұрын
@@JavaTechies Can we have a session on Generics?
@JavaTechies3 жыл бұрын
@@ramkumar_balu sure
@prakashbtw6783 жыл бұрын
We have many design pattern, Pls list out design pattern to learn and crack product based company interview??
@JavaTechies3 жыл бұрын
Sure, Learn all the 5 creational design patterns, template, observer and strategy. Also learn SOLID Principles.
@JavaTechies3 жыл бұрын
Creational includes singleton, prototype, factory, abstract factory,builder design patterns
@prakashbtw6783 жыл бұрын
@@JavaTechies thank you. Do you suggest any website, udemy course, plural website.. Etc to learn from basic??
@JavaTechies3 жыл бұрын
@@prakashbtw678 Telusko from youtube, best and quick
@prakashbtw6783 жыл бұрын
@@JavaTechies thank you
@ashwindhoke44113 жыл бұрын
Which is the best book/online portal to learn Core Java?
@JavaTechies3 жыл бұрын
If you have time then for core java deep understanding go for java tutorial by durga sir. Telusko also share good lectures and his lectures are quicker as compared to Durga sir. You can choose the best suitable to you. Thanks
@personelpurpose15313 жыл бұрын
Is careergap ok for java can I rejoin after having 1+ year break
@gajanannandawadekar20753 жыл бұрын
Manasi you are great. Please upload L &T pseudo code asked in interview?
@JavaTechies3 жыл бұрын
Thankyou, Here is the link for the same javaconceptoftheday.com/find-frequency-of-all-digits-in-number-in-java/
@mail2zingo3 жыл бұрын
I think in the video it is mentioned that equals in Object class does reference and content comparison, while equals in String class does content comparison only. This would be incorrect.
@JavaTechies3 жыл бұрын
It can be incorrect, thanks for noticing and corrections
@mail2zingo3 жыл бұрын
@@JavaTechies : Thanks for replying. I believe equals() in Object class does reference comparison only, while String has overridden equals() by including content comparison as well by checking if the object being considered is of String class. Hence, if we compare two String variables, one initialized as a constant, while the other initialized with a String constructor would fail == comparison, but pass equals comparison.