Cracking the coding interview || Java streams Coding questions

  Рет қаралды 57,356

Java Techies

Java Techies

Күн бұрын

Пікірлер: 118
@abhilashpatel6852
@abhilashpatel6852 Жыл бұрын
On the spot. Best practical video on this topic so far. Will revisit again and again to refresh my memory.
@JavaTechies
@JavaTechies Жыл бұрын
Thanks for your support
@vikrantharne9345
@vikrantharne9345 3 жыл бұрын
one more question to add to list... que : get all employee having address (is of list type) start with P and having age greater than 22 ans : employees.stream() .filter(employee -> employee.getAge()>22&&employee.getAddresses().stream() .anyMatch(adr -> adr.getCity().startsWith("p"))) .forEach(System.out::println);
@samsonrj5628
@samsonrj5628 11 ай бұрын
This is very informative and useful. Thanks for the excellent streams questions and solutions.
@JavaTechies
@JavaTechies 11 ай бұрын
Thank you so much for your feedback and support, it motivates me.
@MrSid2279
@MrSid2279 3 жыл бұрын
Very nice exercise for practice on Streams. Excellent.
@sandeepikaenagaluru8462
@sandeepikaenagaluru8462 3 жыл бұрын
Love you Manasi. You really helping others.
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@anuragpundir1483
@anuragpundir1483 3 жыл бұрын
i love you too mansi
@rexsam3134
@rexsam3134 2 жыл бұрын
@@anuragpundir1483 ?????
@ajeet382
@ajeet382 Жыл бұрын
You nailed it mansi . very impressive set of questions . keep up the good work
@JavaTechies
@JavaTechies Жыл бұрын
Thank you so much, I really appreciate your feedback 🙏
@vengateshm2122
@vengateshm2122 3 жыл бұрын
Excellent. We'll organised.
@ankitmishra9324
@ankitmishra9324 3 жыл бұрын
Keep up the good work Mansi and Team , you guys are really helpful in cracking the interviews.
@JavaTechies
@JavaTechies 3 жыл бұрын
Thank you sir ji
@sekhar14301
@sekhar14301 Жыл бұрын
Thank you so much.. these examples are enough to crack the java8 for interview questions
@JavaTechies
@JavaTechies Жыл бұрын
Thank you
@vishnuprahladan4152
@vishnuprahladan4152 3 жыл бұрын
It s really helpful. Thanks Java Techies Team.
@apx1011
@apx1011 3 жыл бұрын
Very very Helpful 👍 Thank you so much. Keep posting such real time scenarios of coding.
@mdmujahid8968
@mdmujahid8968 Жыл бұрын
Best stream api videoon KZbin
@JavaTechies
@JavaTechies Жыл бұрын
Thank you so much
@srikanthlaggeri9325
@srikanthlaggeri9325 3 жыл бұрын
Thank you so much. This video gave more clarity on Streams. Can you please make a video on the Design patterns where it is implemented interview point of view .
@JavaTechies
@JavaTechies 3 жыл бұрын
Sure
@Krishnaentertainments7653
@Krishnaentertainments7653 2 жыл бұрын
THANKS FOR YOUR VALUABLE INFORMATION ,IT HELP TO GET KNOWLEDGE
@JavaTechies
@JavaTechies 2 жыл бұрын
Most welcome, we keep on sharing more valuable information in our whatsapp and telegram groups too. Feel free to join there of you want.
@manuvashist3464
@manuvashist3464 Жыл бұрын
Really helpful questions to brush up
@JavaTechies
@JavaTechies Жыл бұрын
Thank you so much
@naveenbv1838
@naveenbv1838 2 жыл бұрын
Thanks a lot for your effort and time you have invested to make us understand so clear in simple but effective examples. 🙏
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@ashrafqureshi9333
@ashrafqureshi9333 2 жыл бұрын
Thanks, Looking for such compilation of questions to practise stream. Really helpful 😄
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@abhilashpatel6852
@abhilashpatel6852 Жыл бұрын
But how static method reference to Employee getter methods are working even if they are non-static method?
@rajumurugesan6927
@rajumurugesan6927 2 жыл бұрын
Hi i really happy for this example.please prepare more programming interview questions
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you so much, sure
@rushikeshgodase8498
@rushikeshgodase8498 Жыл бұрын
Excellent Questions
@JavaTechies
@JavaTechies Жыл бұрын
Thank you
@venkatreddy525
@venkatreddy525 3 жыл бұрын
This is a fantastic list of questions.
@rohitkumar-vk4fx
@rohitkumar-vk4fx 3 жыл бұрын
You people are doing great work 👍👍
@saivamsi4811
@saivamsi4811 3 жыл бұрын
Thanks a ton for your hardwork and service...you are really helping a lot in cracking interviews..
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@basavarajnv1017
@basavarajnv1017 3 жыл бұрын
Great work Manasi 👍thanks for the video ✌️
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@radharanganathan9610
@radharanganathan9610 3 жыл бұрын
Vry useful examples Request u to increase the font size of programs
@JavaTechies
@JavaTechies 3 жыл бұрын
Extremely sorry if that's not correctly visible, will take care next time
@radharanganathan9610
@radharanganathan9610 3 жыл бұрын
@@JavaTechies tq
@nextgensolver
@nextgensolver 3 жыл бұрын
Thanks Mansi for sharing your knowledge & Experience ❤️.
@JavaTechies
@JavaTechies 3 жыл бұрын
Welcome 🙏
@manishagarwal1505
@manishagarwal1505 2 жыл бұрын
Good tutorial for java streams and lambda. Though I noticed that you used == for string comparison while we should use .equals something like "Male".equals(x.getGender())
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you
@Anilkumar-reddy
@Anilkumar-reddy Жыл бұрын
Thanks Mansi for your extreme efforts, keep it up. we need more videos from you. For the method 8 we can use like these right? Optional min = employeeList.stream().min(Comparator.comparing(Employee :: getYear));
@priyakoli5572
@priyakoli5572 9 ай бұрын
Hi Ma'am, First of all Thank you very much for your efforts, its really helpful. wanted to ask one question: in method8 i am getting Optional.empty whereas if i remove either of condition then then o get some result, why so for me?
@JavaTechies
@JavaTechies 9 ай бұрын
I did not get your question, join us on WhatsApp or telegram group, which is totally free, you can share your code and questions, either me or someone will be able to help you. thank you
@naveenvenkatesh3222
@naveenvenkatesh3222 3 жыл бұрын
Keep up the good work 👏
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@karanjain24
@karanjain24 3 жыл бұрын
Absolutely loved the content, helped me a lot! Thanks 👍🏼
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@jagadishgouda4496
@jagadishgouda4496 2 жыл бұрын
Thanks a ton Mansi..Really appreciate you 👏🏻👏🏻
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you
@flight_of_phoenix
@flight_of_phoenix 2 жыл бұрын
I appreciate your hard work
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@pratikgaurav6631
@pratikgaurav6631 3 жыл бұрын
Good one mansi and the backend team :)
@JavaTechies
@JavaTechies 3 жыл бұрын
Be the team
@nchavva
@nchavva 3 жыл бұрын
Superb
@dheerajjham3910
@dheerajjham3910 2 жыл бұрын
Thanks a lot Java Techies..
@JavaTechies
@JavaTechies 2 жыл бұрын
You are welcome
@imvickkie
@imvickkie 3 жыл бұрын
Excellent
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@dellcruzo
@dellcruzo 3 жыл бұрын
Awesome content 👍
@JavaTechies
@JavaTechies 3 жыл бұрын
Thank you DellCruzo
@sreejak6776
@sreejak6776 3 жыл бұрын
Thankyou so much for the informative questions
@JavaTechies
@JavaTechies 3 жыл бұрын
You're welcome 🙏
@WhiteObama112
@WhiteObama112 2 жыл бұрын
for the question no 12 - I did some changes, here we need the list of names for each department which can be done with only stream like below. Map namesByDept = employeeList.stream().collect( Collectors.groupingBy(Employee::getDepartment) ) .entrySet().stream() .collect(Collectors.toMap(o -> o.getKey(), o -> o.getValue() .stream() .map(m -> m.getName()) .collect(Collectors.toList()) ));
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@sanchitthai4822
@sanchitthai4822 2 жыл бұрын
This is awesome dude, why you stopped making, please make some more
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you buddy, for sure we will add more. Working on something more awesome 😊
@thiyagarajan9410
@thiyagarajan9410 3 жыл бұрын
If source code link was added in the description it would be better
@JavaTechies
@JavaTechies 3 жыл бұрын
Added
@pravinppatil2116
@pravinppatil2116 3 жыл бұрын
Examples you have taken here are really helpful, Good Work keep it up. I want you to Correct 1-2 mistakez here while comparing string you have using == operation instead of that we should use equals method.
@JavaTechies
@JavaTechies 3 жыл бұрын
Ya, fine, thank you
@priyakoli5572
@priyakoli5572 9 ай бұрын
Also for method4, what if we have 2 employees with same highest salary? then it displays only 1 person's salary....why so why not 2 if both have same highest salary?
@JavaTechies
@JavaTechies 9 ай бұрын
Is it using findfirst ??
@Ankitkumar-js3cj
@Ankitkumar-js3cj 2 жыл бұрын
Great work . Thanks a lot.
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@HandleAdded1
@HandleAdded1 2 жыл бұрын
just awesome 👍
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you
@start1learn-n171
@start1learn-n171 2 жыл бұрын
TQ...that's helpful
@srinath710
@srinath710 3 жыл бұрын
This what exactly iam looking for.
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@asashish905
@asashish905 3 жыл бұрын
Hi, most of your videos in the description are private. Unable watch. Can you help please?
@JavaTechies
@JavaTechies 3 жыл бұрын
You can directly go to my channel and watch, all the visible ones will be public
@sangitamohanty7919
@sangitamohanty7919 3 жыл бұрын
Hi , Need one help can u plz help how to get 2nd highest salary of each department
@kasivundavalli1883
@kasivundavalli1883 3 жыл бұрын
method4. high salary name is giving only last list name always.. please correct it.
@joelgeorge1064
@joelgeorge1064 3 жыл бұрын
could get the result by this way also employeeList.stream().max(Comparator.comparing(Employee::getSalary);
@AmitKumar-we8dm
@AmitKumar-we8dm Жыл бұрын
bahaut badhiya didi
@JavaTechies
@JavaTechies Жыл бұрын
Thank you
@KiranKumar-ud6zz
@KiranKumar-ud6zz 3 жыл бұрын
👏👏👏👏👍👍👍👍👍
@rahuljain-zw8vx
@rahuljain-zw8vx 2 жыл бұрын
cant get the source code, page not opening
@JavaTechies
@JavaTechies 2 жыл бұрын
Login and try, it should open
@rahuljain-zw8vx
@rahuljain-zw8vx 2 жыл бұрын
@@JavaTechies got it🥳
@neerajrajak6150
@neerajrajak6150 3 жыл бұрын
Thanks you so much
@JavaTechies
@JavaTechies 3 жыл бұрын
Wc
@simplyarranged
@simplyarranged 2 жыл бұрын
Where is sir?🌹
@tanishkaggarwal2846
@tanishkaggarwal2846 Жыл бұрын
Can I get te code for pratice
@JavaTechies
@JavaTechies Жыл бұрын
Yes, go to our GitHub
@vamshikrishnagolla6506
@vamshikrishnagolla6506 3 жыл бұрын
Tqs a lot !!
@JavaTechies
@JavaTechies 3 жыл бұрын
Welcome 🙏
@start1learn-n171
@start1learn-n171 10 ай бұрын
Tq
@JavaTechies
@JavaTechies 10 ай бұрын
You are welcome
@brijeshverma7456
@brijeshverma7456 2 жыл бұрын
Hi I have one question where i need to sort based on price. Can you please help Ques: Using Java8, sort the products in "Electronics" and "Accessories" by attribute "price" in desc order? public static void sortData() { List electronics = new ArrayList(); Map map1 = new HashMap(); map1.put("price", "100"); map1.put("name", "Camera"); Map map2 = new HashMap(); map2.put("price", "200"); map2.put("name", "Laptop"); Map map3 = new HashMap(); map3.put("price", "90"); map3.put("name", "WebCam"); electronics.add(map1); electronics.add(map2); electronics.add(map3); // Comparator.comparing() ->Integer.parseInt(); List accessories = new ArrayList(); Map amap1 = new HashMap(); amap1.put("price", "50"); amap1.put("name", "CameraBag"); Map amap2 = new HashMap(); amap2.put("price", "80"); amap2.put("name", "LaptopBag"); Map amap3 = new HashMap(); amap3.put("price", "10"); amap3.put("name", "MousePad"); accessories.add(amap1); accessories.add(amap2); accessories.add(amap3); Map input = new HashMap(); input.put("Electronics", electronics); input.put("Accessories", accessories); }
@AHMADRAZAKHANjava
@AHMADRAZAKHANjava 3 жыл бұрын
Pls provide the source code
@shankararvapally3333
@shankararvapally3333 3 жыл бұрын
Can you please share github link?
@JavaTechies
@JavaTechies 3 жыл бұрын
Posted on our website: javatechiess.wordpress.com/2021/06/02/cracking-the-coding-interview-java-streams-coding-questions/
@viswanathperada5956
@viswanathperada5956 3 жыл бұрын
@@JavaTechies couldn't find the githib link in the site. Can you please add it under the video description section. Thanks in advance. Nice content extremely helpful. Awaiting for more concepts and videos.
@girish44444
@girish44444 2 жыл бұрын
If there is more than 1 highest paid employee then it will give wrong result I think? For that : empList.stream() .collect(Collectors.groupingBy(Employee::getSalary, TreeMap::new, Collectors.toList())) .lastEntry() // for lowest salary you should use firstEntry; .getValue().forEach(entry -> System.out.println("Name : "+entry.getName() + " , "+ "Salary : "+ entry.getSalary()));
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
Java 8 Streams programs you must prepare for Java Interviews
23:02
Java 8 Streams 🔥  | 10 IMPORTANT Coding Questions & Answers | Streams API
28:15
Code With Ease - By Varsha
Рет қаралды 22 М.
Cognizant Java Coding Interview | Stream API, Java 8 | Package 12LPA
21:31
Easy Google Coding Interview With Ben Awad
28:00
Clément Mihailescu
Рет қаралды 1 МЛН