Тёмный

Java 8 Stream API and String | Capgemini Mock L1 Coding Interview 

CloudTech
Подписаться 33 тыс.
Просмотров 255 тыс.
50% 1

Capgemini Java Coding Round. The candidate has 3.8 years of experience and he got selected in the interview. In the interview, the question was about Java streams API and String.
Question 1:
There is a list of employees and the candidate needs to increase the salary of the employees by 10% whose age is greater than 25 years.
Question 2:
String comparison using literals and new String constructor.
Freshers Java Interview Questions
Experienced Java Interview Questions
Products I use:
Green Soul Vision Chair: amzn.to/3TcWYLe
Microphone: amzn.to/46GGjTb
SSD: amzn.to/49ZYM05
Mobile: amzn.to/4a5Yp3W

Опубликовано:

 

1 май 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 126   
@alphalearninghub5237
@alphalearninghub5237 2 года назад
I am so happy to have found your channel! This video was exactly what I needed today. You have a wonderful, calming way about your teaching. Thank you for taking the time to make these videos..........
@venkatarr
@venkatarr 2 года назад
Good one. I work for a German defence project and got opportunity to sharpen my Java skills.
@carlacosta3903
@carlacosta3903 2 года назад
you saved me a lot of time looking for a working crack
@santanumukherjee4108
@santanumukherjee4108 2 года назад
Easy peasy, it should be for a fresher.
@vasanth_here
@vasanth_here 2 года назад
Confidence to max💯
@raghavendrac1053
@raghavendrac1053 2 года назад
NYC keep uploading more vedios on Java 8 interview coding questions
@anirudhharaje7192
@anirudhharaje7192 2 года назад
Perfect💯
@ankitshukla5800
@ankitshukla5800 2 года назад
Excellent
@proxy5061
@proxy5061 2 года назад
I am 3 months experience, I dono about streams, but last parts were easy enuf
@goodgrandpa
@goodgrandpa Год назад
Now you are six months, have you handled streams? They are such a strong tool.
@mankindsangel9351
@mankindsangel9351 2 года назад
Piece of cake, even a fresher could have cleared it
@noneofyourbusiness919
@noneofyourbusiness919 2 года назад
No i can't 🤧, btw what is this map which he use ?
@sasidharvivek5817
@sasidharvivek5817 2 года назад
@@noneofyourbusiness919 this map is different. It's just for mapping
@goodgrandpa
@goodgrandpa Год назад
@@noneofyourbusiness919 This is not Map , this is Stream.map().
@gopalkannan4934
@gopalkannan4934 Год назад
Thank you so much
@HarryHoudiny
@HarryHoudiny Год назад
First of all I would prefer not violate OCP. We have to add interface or abstract class Employee and declare method increaseSalary(). Than we have to put increasing salary logic there. With that we can iterate over list of employees and call increaseSalary() without any logic in map lambda that actually violates OCP. Second comment is not to use anythng except BigInteger for money. You can see in current solution have errors are accumulated.
@priyakushwaha9865
@priyakushwaha9865 Год назад
Very nice video
@harishreddy2456
@harishreddy2456 2 года назад
in real interviews.. they will ask take linked list keep in mirror and cut one node in it .. find out the shortest path between two nodes .. lol :) .. it was terribles . For me they asked to me write satellite code
@rohithkoteval1785
@rohithkoteval1785 2 года назад
Bro you are not into capgemini interview 😂 If you are into product based/startup they will screw with DS ALGO
@PraveenKumar-uj2ih
@PraveenKumar-uj2ih 2 года назад
@@rohithkoteval1785 Exactly
@p_varma17
@p_varma17 Год назад
🥶🥶
@javascriptduniya1201
@javascriptduniya1201 2 года назад
Great to see candidate is so excited for Capgemini..my favourite company 👍
@mahendranr8934
@mahendranr8934 2 года назад
Useful video
@mayurlaniya5049
@mayurlaniya5049 2 года назад
Quite easy
@enigma7080
@enigma7080 2 года назад
This makes sense in sql. In java he could have asked some logical question.
@Azhagusuryaa2696
@Azhagusuryaa2696 Год назад
Use filter 7:10 instead of if condition inside map
@prakashsingh-hs3hn
@prakashsingh-hs3hn 2 года назад
I could have used filter() method to filter the Age and then Map() to do the calculations that would be more Java 8
@kavingct
@kavingct 2 года назад
That would make the collected list have only employees with age > 25 but the desired output is to have all employees but increment salary for particular employees.
@prakashsingh-hs3hn
@prakashsingh-hs3hn 2 года назад
@@kavingct in that case I can use filter inside map I guess
@thatsfreaky9603
@thatsfreaky9603 2 года назад
No need of filter. Simplicity is the key
@florin-alexandrustanciu5643
@florin-alexandrustanciu5643 2 года назад
@@kavingct that is because he collected the stream into another list, so he didn't really increase the salaries he created new employees .
@florin-alexandrustanciu5643
@florin-alexandrustanciu5643 2 года назад
@@thatsfreaky9603 the simplest way would be to use for each, also this way you would actually increase the salaries of existing employees not create another list of employees
@tecres9379
@tecres9379 2 года назад
That is like fresher interview
@nikhileshyoutube4924
@nikhileshyoutube4924 2 года назад
Excellent bro confidence level 😉
@cloudtech5260
@cloudtech5260 2 года назад
Thanks Bro!!! 🙂
@goyanihimalay4127
@goyanihimalay4127 2 года назад
@@cloudtech5260 easy question tha
@Pawan-fd6wl
@Pawan-fd6wl Год назад
But really very helpful
@Saikumar_Miryala
@Saikumar_Miryala 2 года назад
Strings questions are very essy even fresher can answer
@cloudtech5260
@cloudtech5260 2 года назад
Thanks Sai for the review. 👍
@rohatgianu
@rohatgianu 7 дней назад
why did not you use filter first for age then map instead of if condition
@sunetramukherjee1805
@sunetramukherjee1805 2 года назад
Can you please tell me for 2 years of experienced candidates what are the selection rounds generally happens from the Scratch after application shortlisting ....
@cloudtech5260
@cloudtech5260 2 года назад
2 Technical Rounds followed by 1 HR Discussion
@sunetramukherjee1805
@sunetramukherjee1805 2 года назад
@@cloudtech5260 is there any written test or any coding test?
@mr.ashwani94
@mr.ashwani94 Год назад
@@sunetramukherjee1805 it quite be possible but not for every time.
@deepakks7678
@deepakks7678 2 года назад
Are there going to be any interview for fresher capg analyst role based on ADAPT training before aloting to project?
@cloudtech5260
@cloudtech5260 2 года назад
Yes there will be one interview before project allocation.
@Ellenki_007
@Ellenki_007 2 года назад
Take one and more interview in hindi
@gowthamraina1628
@gowthamraina1628 2 года назад
How would you get clear knowledge about java ..how could u learn and crack coding rounds
@vikasverma3555
@vikasverma3555 2 года назад
Make practice
@cloudtech5260
@cloudtech5260 2 года назад
Learn small concepts and write programs around it. Best of luck 👍
@RealSlimShady-um6gf
@RealSlimShady-um6gf 9 месяцев назад
Listening
@zuyyx4565
@zuyyx4565 2 года назад
@Makemythings Byme Telugu 👉I got Loi in April 10th... I accepted it...... 👉 April 27 th i got DOJ on May 5th,i send IRF, certificate..... BUT There send a mail on 👉 April 29th that ur DOJ was postponed........ I upload all my documents clearly... When will I get another DOJ Mail ❓ Any requestion will happened ❓
@PoonamGupta-sr5qg
@PoonamGupta-sr5qg 2 года назад
Don't worry, they will send just be in contact with HR
@lividrider8219
@lividrider8219 Год назад
What no is 7:11 1.10?
@80_kunaltilekar30
@80_kunaltilekar30 2 года назад
how many years of experience this guy have ? or was he fresher? btw wonderful video, will surly help!!
@yashwanth8350
@yashwanth8350 2 года назад
What is ur current package brother for this interview?
@cloudtech5260
@cloudtech5260 2 года назад
The student who gave this interview got 9.7L.
@ch.__Sr
@ch.__Sr 2 года назад
Screen not clear visible bro....
@animeshrose
@animeshrose 2 года назад
That was easy. What is the salary PKG? I guess it will be less.
@rexsam3134
@rexsam3134 2 года назад
It's a mock interview. These guys talk between friends. Create a audio and upload it. It's better that they just upload the questions and discuss in short if they know the answers. Others can google for the answers
@Izhar404
@Izhar404 2 года назад
They are in the same room, you can hear double voices 😂
@sunnyvachheta2790
@sunnyvachheta2790 2 года назад
Can you suggest projects to add in resume for Java developer role, Please?
@cloudtech5260
@cloudtech5260 2 года назад
Highest Qualification bro, pls?
@abhishekbhawankar2971
@abhishekbhawankar2971 2 года назад
​@@cloudtech5260 My qualifications is MCA
@ajaysarkate6624
@ajaysarkate6624 2 года назад
@@cloudtech5260 any suggestion for non b tech, self taught developers? 🙂🙂
@shande471
@shande471 2 года назад
Yes help us in projects please bro
@SAM-uy2ek
@SAM-uy2ek 2 года назад
@@abhishekbhawankar2971 have you completed your mca?
@abhay6124
@abhay6124 2 года назад
So easy question kaun poochta hai Bhai
@abhinavpandey3356
@abhinavpandey3356 2 года назад
It's kind of very easy round it should be for freshers.
@cloudtech5260
@cloudtech5260 2 года назад
Thanks Abhinav, the fresher who knows streams are hired first. 👍👍
@20M_Target_1.0
@20M_Target_1.0 2 года назад
I have no experience but these questions you can ask me in the sleep as well 😜
@jonsantos6056
@jonsantos6056 2 года назад
So that you will keep on sleeping right
@kirannani4044
@kirannani4044 2 года назад
I think interviewer is also fresher..
@parvaizsajad8200
@parvaizsajad8200 2 года назад
He could have used filter and then map in first question. One liner code.
@gyvsr
@gyvsr 2 года назад
Yes. I too agree with you. Even, performance wise, filter and then map way would increase performance i believe.
@cloudtech5260
@cloudtech5260 2 года назад
Thanks for the thoughts guys. You can ho for filter when you want only incremented values in the output, if the requirement is to get all values in the output then you can go for map with condition. Happy learning 👍
@gyvsr
@gyvsr 2 года назад
@@cloudtech5260 But, the requirement here is, we need to apply the increment only for the age > 28 right. So, filter the input to get the values with that criteria and apply the increment logic. We are talking about input filtering, not the output filtering.
@kavingct
@kavingct 2 года назад
@@gyvsr when you filter a stream the output list has only the filtered entries which is not the desired output in this scenario.
@rohankavathekar
@rohankavathekar 2 года назад
That was helpful! was it the position for 1-3 years?
@cloudtech5260
@cloudtech5260 2 года назад
Thanks Rohan. Yes it was for 3 years.
@girirajsinghrathore1749
@girirajsinghrathore1749 2 года назад
How much they offered
@ManojManoj-om2sy
@ManojManoj-om2sy 2 года назад
9.7 lpa
@bka9705
@bka9705 2 года назад
Next level 2 interview link?
@cloudtech5260
@cloudtech5260 2 года назад
We don't have questions for 2nd round yet. We will try to find out the questions from the 2nd round.
@sauravpatil5711
@sauravpatil5711 Год назад
Seriously 3.5 y? Cheers for me then 😁 solved this questions easily having 0 y of exp
@krushnnabaviskar2170
@krushnnabaviskar2170 2 года назад
Can u give hint that how much pkg he will get
@cloudtech5260
@cloudtech5260 2 года назад
He got 9.7 LPA
@krushnnabaviskar2170
@krushnnabaviskar2170 2 года назад
@@cloudtech5260 that's too less , For person who is having 2+ yr of experience
@kratikjha8071
@kratikjha8071 2 года назад
Are you fresher or u have experience?
@cloudtech5260
@cloudtech5260 2 года назад
Experienced!!
@anandreddy.k9679
@anandreddy.k9679 5 месяцев назад
the same interviewer and the same candidate
@bestAnkitAgarwal
@bestAnkitAgarwal 2 года назад
Solution provided for employee is not an ideal solution. 1. Filter should be used for the age comparison 2. And new employee object should have been created for the updated salary. Since Immutability should be maintained
@raghwendrapratap2115
@raghwendrapratap2115 Год назад
2. Is wrong reason we are raising the salary of same employee. Creating new employee with same details results duplicacy and also in real time scenario the Employee ID will be disturbed which might not be good if this employee having dependencies. Rest yes point 1 is valid.
@atiqurrahman7914
@atiqurrahman7914 2 года назад
Do they allow editor like eclipse..
@cloudtech5260
@cloudtech5260 2 года назад
Yes. Eclipse or intellij are allowed. Some project interviews don't allow editors but still you can use online editors and solve the problem.
@killerdroid99
@killerdroid99 2 года назад
man so much boilerplate java is messed up actually
@cloudtech5260
@cloudtech5260 2 года назад
I agree. 🙂
@liontalha7383
@liontalha7383 2 года назад
kya bro itna easy bhi Interview hota hai kya? hamare mei toh tree graph wale problem puchhte hai.....😢😢😢😢
@cloudtech5260
@cloudtech5260 2 года назад
haha. which company bro?
@liontalha7383
@liontalha7383 2 года назад
@@cloudtech5260 juspay, Amazon, NCS etc
@cloudtech5260
@cloudtech5260 2 года назад
Thanks. Send me the question if you have it. Solve karte hain videos me 🙂
@liontalha7383
@liontalha7383 2 года назад
@@cloudtech5260 send me your mail I'll send you the questions
@cloudtech5260
@cloudtech5260 2 года назад
jobreadytrainings22@gmail.com
@abhisheksinghnirwan
@abhisheksinghnirwan 2 года назад
humne bhh MCA kiya tha batao ajj berojgar hai 😅
@SAM-uy2ek
@SAM-uy2ek 2 года назад
Kha se bhaiya?
@SAM-uy2ek
@SAM-uy2ek 2 года назад
Mca nhi krni chahiye kya? Go for skills development
@cloudtech5260
@cloudtech5260 2 года назад
Learn any programming language and you will get the job. Best of luck 👍
@abhisheksinghnirwan
@abhisheksinghnirwan 2 года назад
@@SAM-uy2ek NAAC "A" graded University thi GLA university. After all there is a huge difference between theory and practical. Ajj college ki conditions ye h bas placement pe focus rhta h firh bacha kuch sikh paye ya na paaye
@rockstarrr4384
@rockstarrr4384 2 года назад
Obviously both of u sir dont have any coding experience.
@yatendra__singh
@yatendra__singh 2 года назад
What will be the next round after this ,could you pls tell ..
@cloudtech5260
@cloudtech5260 2 года назад
Next round will be L2, where a senior developer will conduct the interview. He will assess the the understanding about java, spring boot and microservices along with a bit of design pattern knowledge.
@proxy5061
@proxy5061 2 года назад
@@cloudtech5260 no coding? If no coding I am strong in understanding depth of technical stuff, am bad at logic
@jacknjill8096
@jacknjill8096 2 года назад
In reality Tier-2 or Tier-3 companies never evaluate coding skills, they just checked one's fundamental and conceptual knowledge on the skillet mentioned in cv. Tier-1 companies like MAANG, Oracle, Wallmart etc have their own dedicated round of coding in which they are looking for a person who is an expert in DSA/Algo.
@zuyyx4565
@zuyyx4565 2 года назад
Brother, 👉I got Loi in April 10th... I accepted it...... 👉 April 27 th i got DOJ on May 5th BUT There send a mail on 👉 April 29th that ur DOJ was postponed........ I upload all my documents clearly... When will I get another DOJ Mail ❓ Any requestion will happened ❓ Who many days it required to send another DOJ Mail ❓❓❓❓
@cloudtech5260
@cloudtech5260 2 года назад
If they sent that the DOJ is postponed, then you will definitely get the new DOJ. I would suggest, please send an email to fresherhiring.in@capgemini.com.
@zuyyx4565
@zuyyx4565 2 года назад
@@cloudtech5260 okay sir Tq
@Sayan_Shankhari
@Sayan_Shankhari Год назад
this looks like showing off 🤣
@Pawan-fd6wl
@Pawan-fd6wl Год назад
Achha fake interview tha
Далее
Java 8 Coding Interview | L2 Capgemini Java Interview
10:05
Capgemini Java Interview 3 Years Selected
13:20
Просмотров 13 тыс.
Capgemini Java Interview | 3 Years | 11 LPA | Selected
13:31
Capgemini Java Developer 3 Years | Selected
25:48
Просмотров 10 тыс.