Accenture Coding Round Java Developer Interview Experience - 2.9 years

  Рет қаралды 24,897

Java is Awesome

Java is Awesome

Күн бұрын

Пікірлер: 43
@technicalstudyajay8037
@technicalstudyajay8037 2 жыл бұрын
Very Useful Video
@narutodihargo
@narutodihargo 11 ай бұрын
00:00=Introduction, 01:08=Project, 03:48=Map & Collection, 04:27= Internal HashMap working, 06:31=String vs StringBuffer, 07:47= How to make class ThreadSafe ?, 09:30= Program to find frequency of Character,
@Java.is.Awesome
@Java.is.Awesome 11 ай бұрын
thanks for sharing
@xolothegermanshepherddog7873
@xolothegermanshepherddog7873 Жыл бұрын
We can also thread safe our classes using volatile
@ajaykumarojha372
@ajaykumarojha372 2 жыл бұрын
Very nice 👍
@ajaykumarojha372
@ajaykumarojha372 2 жыл бұрын
Good interview
@technicalstudyajay8037
@technicalstudyajay8037 2 жыл бұрын
Great news
@Tech_Study_Ajay
@Tech_Study_Ajay 2 жыл бұрын
good
@mohitgupta7488
@mohitgupta7488 Жыл бұрын
Kahan se aate hai aise FAKE log, you can check at timeline 8:59 # FAKE INTERVIEW
@billion_dreams__7787
@billion_dreams__7787 Жыл бұрын
Same😂😂
@nktt9351
@nktt9351 10 ай бұрын
Yes 100%
@श्रीरामभक्त-थ3ठ
@श्रीरामभक्त-थ3ठ 2 жыл бұрын
Sir your doing good... but please show the offer letter
@Java.is.Awesome
@Java.is.Awesome 2 жыл бұрын
sure
@mohitsharma9553
@mohitsharma9553 2 жыл бұрын
Hi Prince, is it the round 2 interview of accenture ?
@tejpartapsingh9909
@tejpartapsingh9909 Жыл бұрын
Sir Java Sikh sakte hai without c,c+ + Ke
@Java.is.Awesome
@Java.is.Awesome Жыл бұрын
yes
@tejpartapsingh9909
@tejpartapsingh9909 Жыл бұрын
@@Java.is.Awesome thank you so much sir
@shubhamchandak7104
@shubhamchandak7104 9 ай бұрын
Did you get fixed 15lpa or is it with VARIABLE pay?
@Java.is.Awesome
@Java.is.Awesome 9 ай бұрын
fixed
@AshishSingh_in
@AshishSingh_in Жыл бұрын
Bro could you please help me regarding Java, Spring boot interview
@Java.is.Awesome
@Java.is.Awesome Жыл бұрын
sure book your call topmate.io/princekumar
@mohitsharma9553
@mohitsharma9553 2 жыл бұрын
Are they really providing 15Lac for 3yrs experience in current time ?
@Java.is.Awesome
@Java.is.Awesome 2 жыл бұрын
yes
@samiullah_991
@samiullah_991 Жыл бұрын
Is this how actual interview will be?
@Java.is.Awesome
@Java.is.Awesome Жыл бұрын
yes
@VivekGupta-co4vh
@VivekGupta-co4vh Жыл бұрын
StringBuilder stringBuilder = new StringBuilder(""); Arrays.asList(8, 1, 9, 5, 0).stream().sorted((a,b)->b-a).map(num->stringBuilder.append(num)).collect(Collectors.toList()); System.out.println(stringBuilder);
@desi_fifa
@desi_fifa 7 ай бұрын
pehle to bhai tm accenture ka interview ka recording kr he nai skte
@Demon_KD
@Demon_KD 7 ай бұрын
Arey yar...he is doing proxy. Fake log ka video kaise upload kiya. Good work admin😂
@Java.is.Awesome
@Java.is.Awesome 7 ай бұрын
enjoy it's not proxy
@imranhossain1660
@imranhossain1660 2 жыл бұрын
you are selected?
@Abhinav-tf3ci
@Abhinav-tf3ci 2 жыл бұрын
Did you got Selected?
@Batman_so
@Batman_so Жыл бұрын
there is no way! it is an interview question for experience developer, this guy just trying to get views and likes
@Java.is.Awesome
@Java.is.Awesome Жыл бұрын
it's real interview question
@Batman_so
@Batman_so Жыл бұрын
@@Java.is.Awesome i am in my 3 rd year tire 3 clg, I REAPEAT TIRE 3 COLLEGE,i can solve both of them in less than 10 min pretty easily by myself, my question why will they ask this much easy question, even i can solve them that's my point
@CodingWorld369
@CodingWorld369 Жыл бұрын
​@@Java.is.Awesome Liar😮
@SiiitiiFreelancing-jl3ty
@SiiitiiFreelancing-jl3ty 10 ай бұрын
Soumen or whoever is too a youtuber posting mocks. These are common repeated questions asked. Soumen too has less exposure so he too has limited knowledge of possible questions to be asked.
@rohitkumaryadav1581
@rohitkumaryadav1581 4 ай бұрын
Hi Prince Bro, naresh it me 2019 me hm sath se Natraj sir ki class kiye the. kaise ho , contact number share karo bhai .
@Java.is.Awesome
@Java.is.Awesome 4 ай бұрын
connect with linkdin will talk
@VivekGupta-co4vh
@VivekGupta-co4vh Жыл бұрын
System.out.println(Arrays.stream(str.split("")).collect(Collectors.groupingBy(Function.identity(), Collectors.counting())));
@imranhossain1660
@imranhossain1660 2 жыл бұрын
import java.util.*; public class Main { public static void main(String[] args) { String s="abbc"; Map map=new HashMap(); for(Character c:s.toCharArray()){ map.put(c,map.getOrDefault(c,0)+1); } for(Map.Entry entry:map.entrySet()){ System.out.print(entry.getKey()+"="+entry.getValue()+ " "); } } }
@Java.is.Awesome
@Java.is.Awesome 2 жыл бұрын
NICE
@imranhossain1660
@imranhossain1660 2 жыл бұрын
import java.util.*; public class Main { public static void main(String[] args) { int[] arr={8,6,0,4,6,4,2,7}; PriorityQueue pq=new PriorityQueue((a,b)->b-a); for(int i:arr){ pq.add(i); } StringBuilder sb=new StringBuilder(); while(!pq.isEmpty()){ sb.append(pq.poll()); } int result=Integer.parseInt(sb.toString()); System.out.println(result); } }
First Round | Java Developer Interview in Accenture experience
23:07
Java is Awesome
Рет қаралды 192 М.
Watch this!! If you are applying with 2 years of experience.
29:41
JAVA INTERVIEW BUDDY
Рет қаралды 78 М.
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Most Asked Strings Questions in Accenture
32:34
Prime Coding
Рет қаралды 28 М.
Accenture Java Interview 2022
15:27
CloudTech
Рет қаралды 38 М.