Infosys java interview questions | 3 years of experience | 12+ LPA

Поделиться
HTML-код
  • Опубликовано: 4 дек 2024

Комментарии • 41

  • @raviraushan235
    @raviraushan235 Год назад +21

    She had all things in her tongue..

  • @kumudamvasudevan2727
    @kumudamvasudevan2727 8 месяцев назад +1

    thanks for sharing :) All the best for your career:)

  • @shivendramohanraina6194
    @shivendramohanraina6194 Год назад +5

    please suggest some realtime interview of java 8 microservices springboot including aws and kafka

  • @ujjwalkatiyar3249
    @ujjwalkatiyar3249 2 года назад +7

    Coding Question
    find 2nd largest element

  • @chinmayasahoo755
    @chinmayasahoo755 2 года назад +6

    what was the current ctc
    and excepted ctc

  • @zeezinc7
    @zeezinc7 10 месяцев назад +3

    women are scary, she memorized the whole book and ratatatatatata...Damn.

  • @nullpointer500
    @nullpointer500 Год назад +10

    Strictly speaking she has mugged everything.... It's ok to mug after all getting offer is more important

  • @lonewalker7193
    @lonewalker7193 2 года назад +4

    Thanks for sharing.

  • @nikhildevabhaktuni
    @nikhildevabhaktuni 2 года назад +4

    Please try to ask code answer also, that would be helpful for freshers.

  • @AxissehSammy
    @AxissehSammy Год назад +1

    Very very simple questions

  • @rahulsharma8825
    @rahulsharma8825 10 месяцев назад

    please tell me important interview question for java springboot developer for infosys

  • @akku6811
    @akku6811 2 года назад +3

    What's the last question for coding? Please provide full code and question

  • @vishakhapawar2018
    @vishakhapawar2018 Месяц назад +1

    Stream to find the second highest distinct number
    Optional secondHighest = numbers.stream().distinct()
    // Removeduplicates
    .sorted(Comparator.reverseOrder()) // Sort in reverse order
    .skip(1) // Skip the first (highest) number
    .findFirst();
    // Get the second distinct number

  • @user-ib1zq3gj7u
    @user-ib1zq3gj7u 2 года назад +1

    Total how many rounds are there?

  • @krishnabangari1292
    @krishnabangari1292 10 месяцев назад

    I just cleared. My technical round for the same role. Java developer, java spring boot and micro-services. Day after tomorrow i have managerial round. What salary can i expect? What should i prepare on for my managerial round

    • @saikiranrachakonda5452
      @saikiranrachakonda5452 10 месяцев назад

      Congratulations, Can you please share your interview questions and experience.

    • @Psychopillayoutuber
      @Psychopillayoutuber 5 месяцев назад

      Could you please share your interview questions?

  • @imsairaj5160
    @imsairaj5160 9 месяцев назад +2

    Actually, you did good😁

  • @kirannani4044
    @kirannani4044 12 дней назад

    actually basically ....basically actually 😅😅😅

  • @azuboof
    @azuboof Год назад

    Wow. She is so good. Who is she?

  • @Saif4u2
    @Saif4u2 2 месяца назад

    Call me by my name and not by calling me “Sir”! “Basically” is not so basic anymore but rather has become complexed and troublesome.

  • @eduonnetcomputer8878
    @eduonnetcomputer8878 Год назад

    Voice is not clear

  • @kranthisingh
    @kranthisingh 2 года назад +2

    Thanks.

  • @redrosses9338
    @redrosses9338 Год назад +3

    Actually...😂

  • @humptydumpty4527
    @humptydumpty4527 2 года назад +1

    Basic Questions.

  • @hexadecimalhexadecimal5241
    @hexadecimalhexadecimal5241 2 года назад +5

    THANKS DADDY

  • @omkarkasar5487
    @omkarkasar5487 2 года назад +2

    Atleast Type kar lete bro

  • @Niteshkumar-dd1ek
    @Niteshkumar-dd1ek Год назад +3

    Arrays.stream(arr1).boxed().sorted(Comparator.reversedOrder).skip(1).findFirst().get();
    find second highest number in array

    • @sourabhbidikar4143
      @sourabhbidikar4143 9 месяцев назад

      We should also put . distinct which removes duplicates because we may have duplicates so the desc sorted stream second elem may also be the first largest.

  • @harshrathod50
    @harshrathod50 9 месяцев назад +1

    those people who insert "like", "actually", etc. in every sentence they spit out, are very annoying actually 🙃

  • @nitinmittal1706
    @nitinmittal1706 Год назад

    Goog interview

  • @jaswanthreddy7135
    @jaswanthreddy7135 6 месяцев назад +1

    She is not good at logical skills

  • @ajayagrawal2067
    @ajayagrawal2067 Год назад +4

    Solution to the coding problem:-
    List arrayList2=arrayList.stream().sorted().toList();
    Integer max= arrayList2.get(arrayList2.size()-1);
    arrayList2 = arrayList2.stream().filter(i -> !i.equals(max)).toList();
    System.out.println(arrayList2.get(arrayList2.size()-1));

    • @uttkarshmilampure5821
      @uttkarshmilampure5821 Год назад

      arrayList.stream().filter(o->o!=arrayList.stream().max(Comparator.comparing(Integer::valueOf)).get()).limit(1).forEach(System.out::println);

    • @sureshkumar-cw1dy
      @sureshkumar-cw1dy Год назад +1

      a small change in your solution:
      List arrayList2=arrayList.stream().sorted().toList();
      Integer secondMax= arrayList2.get(arrayList2.size()-2);
      these two lines were enough.

    • @gadinaresh5458
      @gadinaresh5458 11 месяцев назад

      Interviewer expects logic ...if do like these they don't accept

  • @BeamNG_SP
    @BeamNG_SP Год назад +1