Тёмный

Capgemini Java Interview | 3 Years | 11 LPA | Selected 

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

In this video, we covered the Capgemini Java Interview where the candidate got selected with the package of 11 LPA. The candidate is able to answer majority of questions and successfully cleared the interview.
Products I use:
Green Soul Vision Chair: amzn.to/3TcWYLe
Microphone: amzn.to/46GGjTb
SSD: amzn.to/49ZYM05
Mobile: amzn.to/4a5Yp3W

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

 

5 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 27   
@pariharmahesh444
@pariharmahesh444 8 месяцев назад
now i understand why people says that freshers can be more productive/impactfull then the experience ones🙂
@CHALLENGESTORY
@CHALLENGESTORY 11 месяцев назад
bro get more such videos like this..Thank you!
@rajk8962
@rajk8962 6 месяцев назад
1:57 i used the list Iterator to add an element in the list and it's throwing concurrent modification exception..
@ankitchatterjee1147
@ankitchatterjee1147 6 месяцев назад
List list=new ArrayList(); list.add(1); list.add(2); list.add(3); ListIterator listIterator= list.listIterator(); while (listIterator.hasNext()) { if(listIterator.next()==3) { listIterator.add(4); } } System.out.println(list); example code : it wont throw
@ankitchatterjee1147
@ankitchatterjee1147 6 месяцев назад
you have to add the element by iterator not by List. The concurrent modification you are getting .It is thrown by List not by ListIterator. Example code : this will throw concurrent modification List list1 = new ArrayList(); list1.add("C"); list1.add("A"); list1.add("B"); ListIterator iterator = list1.listIterator(); while (iterator.hasNext()) { //String element = iterator.next(); // System.out.println(element); if (iterator.next().equals("B")) { // Modify the list while iterating list1.add("D"); // This will throw ConcurrentModificationException } } System.out.println(list); The error *** Exception in thread "main" java.util.ConcurrentModificationException at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1013) at java.base/java.util.ArrayList$Itr.next(ArrayList.java:967) ---> see this line **** at Rough.arraylist.main(arraylist.java:36) I hope you understand !!!
@sourabhsinghrajpoot2505
@sourabhsinghrajpoot2505 5 месяцев назад
Why are using listitterator when there is a foreach loop​@@ankitchatterjee1147
@rajk8962
@rajk8962 5 месяцев назад
@@ankitchatterjee1147 thanks for the explanation. Now I got it
@kcha3391
@kcha3391 Год назад
As I can see from the portal, there are openings for only 4+ years of experienced Java Developers. Is there any position available for 3 years experienced candidate?
@cloudtech5260
@cloudtech5260 Год назад
There are some referral positions also which are not posted on portal.
@saumyajoshi-ym2os
@saumyajoshi-ym2os Год назад
Sir in technical interview is there section wise cutoff or overall cutoff? For ex i answered all Springboot questions correctly but couldn't answer any question of database and average answers of core java so will the cutoff decided by overall correct answers or sections wise??
@cloudtech5260
@cloudtech5260 Год назад
You need to clear core java first before the interviewer moves to spring boot. Java is required!!!
@bipashapal9703
@bipashapal9703 Год назад
Is Capgemini hiring experienced candidates now? Is this a recent interview with Capgemini or an old interview?
@cloudtech5260
@cloudtech5260 Год назад
this interview happened a few days back.
@bipashapal9703
@bipashapal9703 Год назад
@@cloudtech5260 Thanks for the reply. Can you please mention the position for which this interview happened or any JOB ID ??
@Crenuse4051
@Crenuse4051 Год назад
Bro please tell me how can get you call , i did not receive call seems days!!
@cloudtech5260
@cloudtech5260 Год назад
Which platforms are you using for finding a job?
@Crenuse4051
@Crenuse4051 Год назад
@@cloudtech5260 noukari and linked In
@cloudtech5260
@cloudtech5260 Год назад
The market is bit slow, But you can try reaching out to HRs, prepare well so that you grab the first opportunity you get!!
@Crenuse4051
@Crenuse4051 Год назад
@@cloudtech5260 can tell when market will open like normal , when hiring start in bulk
@bikiprasadpradhan2222
@bikiprasadpradhan2222 11 месяцев назад
​. When can we expect call as previous year
@apex095
@apex095 Год назад
Are they really offering 11 lakhs for 3 year experienced ??
@cloudtech5260
@cloudtech5260 Год назад
Yes. They are offering. 👍
@gaurangshinde4342
@gaurangshinde4342 Год назад
Yes they Have given me 12 for 3+
@Kriti_Agnihotri_Motivation
@Kriti_Agnihotri_Motivation Год назад
yes
@lidiaabraham6249
@lidiaabraham6249 6 месяцев назад
Is this year salary?
@anshumishra9285
@anshumishra9285 11 месяцев назад
Is there any coding round?
@cloudtech5260
@cloudtech5260 10 месяцев назад
Yes there was a coding round. 👍
Далее
Two sum Problem | Java Coding Interview
9:06
Просмотров 2,7 тыс.
Capgemini Java Interview 3 Years Selected
13:20
Просмотров 14 тыс.
Java Spring Boot 3 Years Interview Experience 🔥
31:55