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 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
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.
Very Useful Video
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);
Good interview
Great news
Very nice 👍
System.out.println(Arrays.stream(str.split("")).collect(Collectors.groupingBy(Function.identity(), Collectors.counting())));
We can also thread safe our classes using volatile
Sir your doing good... but please show the offer letter
sure
good
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,
thanks for sharing
Did you get fixed 15lpa or is it with VARIABLE pay?
fixed
Hi Prince, is it the round 2 interview of accenture ?
Bro could you please help me regarding Java, Spring boot interview
sure book your call topmate.io/princekumar
Sir Java Sikh sakte hai without c,c+
+ Ke
yes
@@Java.is.Awesome thank you so much sir
Are they really providing 15Lac for 3yrs experience in current time ?
yes
Arey yar...he is doing proxy. Fake log ka video kaise upload kiya. Good work admin😂
enjoy it's not proxy
pehle to bhai tm accenture ka interview ka recording kr he nai skte
Is this how actual interview will be?
yes
Did you got Selected?
you are selected?
Kahan se aate hai aise FAKE log, you can check at timeline 8:59 # FAKE INTERVIEW
Same😂😂
Yes 100%
there is no way! it is an interview question for experience developer, this guy just trying to get views and likes
it's real interview question
@@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
@@Java.is.Awesome Liar😮
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.
Hi Prince Bro, naresh it me 2019 me hm sath se Natraj sir ki class kiye the.
kaise ho , contact number share karo bhai .
connect with linkdin will talk
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()+ " ");
}
}
}
NICE
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);
}
}