Accenture Coding Round Java Developer Interview Experience - 2.9 years

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 43

  • @technicalstudyajay8037
    @technicalstudyajay8037 ปีที่แล้ว +1

    Very Useful Video

  • @VivekGupta-co4vh
    @VivekGupta-co4vh ปีที่แล้ว +2

    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);

  • @ajaykumarojha372
    @ajaykumarojha372 ปีที่แล้ว

    Good interview

  • @technicalstudyajay8037
    @technicalstudyajay8037 ปีที่แล้ว

    Great news

  • @ajaykumarojha372
    @ajaykumarojha372 ปีที่แล้ว

    Very nice 👍

  • @VivekGupta-co4vh
    @VivekGupta-co4vh ปีที่แล้ว +1

    System.out.println(Arrays.stream(str.split("")).collect(Collectors.groupingBy(Function.identity(), Collectors.counting())));

  • @xolothegermanshepherddog7873
    @xolothegermanshepherddog7873 ปีที่แล้ว +1

    We can also thread safe our classes using volatile

  • @श्रीरामभक्त-थ3ठ
    @श्रीरामभक्त-थ3ठ ปีที่แล้ว +1

    Sir your doing good... but please show the offer letter

  • @Tech_Study_Ajay
    @Tech_Study_Ajay ปีที่แล้ว

    good

  • @narutodihargo
    @narutodihargo 9 หลายเดือนก่อน +1

    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,

  • @shubhamchandak7104
    @shubhamchandak7104 7 หลายเดือนก่อน +1

    Did you get fixed 15lpa or is it with VARIABLE pay?

  • @mohitsharma9553
    @mohitsharma9553 ปีที่แล้ว +1

    Hi Prince, is it the round 2 interview of accenture ?

  • @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

  • @tejpartapsingh9909
    @tejpartapsingh9909 ปีที่แล้ว +1

    Sir Java Sikh sakte hai without c,c+
    + Ke

  • @mohitsharma9553
    @mohitsharma9553 ปีที่แล้ว

    Are they really providing 15Lac for 3yrs experience in current time ?

  • @Demon_KD
    @Demon_KD 5 หลายเดือนก่อน

    Arey yar...he is doing proxy. Fake log ka video kaise upload kiya. Good work admin😂

  • @desi_fifa
    @desi_fifa 5 หลายเดือนก่อน +1

    pehle to bhai tm accenture ka interview ka recording kr he nai skte

  • @samiullah_991
    @samiullah_991 ปีที่แล้ว

    Is this how actual interview will be?

  • @Abhinav-tf3ci
    @Abhinav-tf3ci ปีที่แล้ว

    Did you got Selected?

  • @imranhossain1660
    @imranhossain1660 ปีที่แล้ว

    you are selected?

  • @mohitgupta7488
    @mohitgupta7488 ปีที่แล้ว +5

    Kahan se aate hai aise FAKE log, you can check at timeline 8:59 # FAKE INTERVIEW

  • @Batman_so
    @Batman_so 11 หลายเดือนก่อน

    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  11 หลายเดือนก่อน

      it's real interview question

    • @Batman_so
      @Batman_so 11 หลายเดือนก่อน

      @@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 10 หลายเดือนก่อน

      ​@@Java.is.Awesome Liar😮

    • @SiiitiiFreelancing-jl3ty
      @SiiitiiFreelancing-jl3ty 8 หลายเดือนก่อน

      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 2 หลายเดือนก่อน +2

    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  2 หลายเดือนก่อน

      connect with linkdin will talk

  • @imranhossain1660
    @imranhossain1660 ปีที่แล้ว +1

    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()+ " ");
    }
    }
    }

  • @imranhossain1660
    @imranhossain1660 ปีที่แล้ว

    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);
    }
    }