Java Interview| 10+ years experience| Realtime Java Microservices Interview.Git Maven Interview.

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

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

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

    i love the interviewer, very patient and knowledgeable. The interviewee though is hard headed. I know he is good but he doesn't listen to instructions so it depends on what kind of projects you want to put him. it's always good to listen to the interviewer and comply with the instructions.

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

    Very helpful. The explanations of the candidate were well enough to use this to prepare for a similar job or to learn something about the covered topics.

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

    you are good interviewer, taking interview on selection mode not a rejection mode, most of interviewer pre decided like I will ask question from interviewee those he don't know

  • @PJ-oz2pg
    @PJ-oz2pg ปีที่แล้ว +1

    I used to pause in between the videos and tried to give the answers and it was very good rehearsal. You were also very patient with the interviewee in moments when he panicked initially. That was really nice. Thank you for the upload.

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

    That is a great experience. Please keep them coming

  • @anupkumarbaranwal
    @anupkumarbaranwal 2 ปีที่แล้ว +2

    Although you have asked very easy questions for candidate with 10+ years of exp, yet i would say these are very much practical. You have examined most of the skills needed for anyone to work in actual office environment. I would have added questions related to system design and devops as well... 😊

  • @shwetarameshtapele6856
    @shwetarameshtapele6856 ปีที่แล้ว +2

    It would be really helpful if you could post more videos like this

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

    Thanks for uploading. ❤️

  • @sriramprakash7492
    @sriramprakash7492 2 ปีที่แล้ว +3

    Superb set of questions sir, will you be also sharing a followup session on the system design questions?

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

    It was so so helpful for the job seekers. Superb sir well done. 👏... Thank you so much. I subscribed your Chanel.

  • @priyasrinath9997
    @priyasrinath9997 2 ปีที่แล้ว

    This is more powerful assessment

  • @punyabikash3624
    @punyabikash3624 9 หลายเดือนก่อน

    Excellent very helpful sir👌 👌

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

    @Stream nice interview

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

    @Stream2learn i want to learn design and springboot Microservices would you please recommend me some course where i can learn i depth

    • @adityashankar6884
      @adityashankar6884 2 ปีที่แล้ว

      would you please recommend me where i can learn spring boot amd microservices in depth

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

    Are these actual or mock interviews ?

    • @stream2learn
      @stream2learn  2 ปีที่แล้ว

      What do you think ?

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

      I’m guessing these are live interviews. But in the case you are ever doing mock, I would be interested.
      And good level of questions .

    • @stream2learn
      @stream2learn  2 ปีที่แล้ว

      @@priyakdey7891 You got it right. It is live. I would be glad to help by conducting a mock interview. You can reach out by email.

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

    Awesome knowledge share. But sometime it amazes me a person who is so much technically sound finds hard for a easy level DSA problem.

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

      Because it's not required at those experiences, Even at five years of experience I was barely actively programming mostly guiding, reviewing code and mentoring juniors. Most of the time I was doing maintenance or creating new projects just to delegate to junior devs.

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

      @@saalikkhan7768 Then you should reconsider your company buddy, unless you are in your comfort zone. Ive seen people who have 15+ years of experience and single handedly wrote an entire framework.

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

      @@swarupcodes may be that 15+ years guy didn't have a life LOL

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

    That was not the best way to do the arrangement of zeros and one's so many conversations he is doing

  • @MindFreeaforLife
    @MindFreeaforLife ปีที่แล้ว +2

    Arrays.stream(integers).sorted().forEach(System.out::print);
    He was thinking very complex and strange to me, also stressed :D

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

      Arrays.stream(integers)
      .sorted((a, b) -> b - a)
      .forEach(System.out::print)

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

      @@tomjosi742 you do not need even to sort via lambda, the natural sort is given by default

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

      @@MindFreeaforLife i know that, but incase you want to reverse from left to right

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

    For the questions wtih 0 on left and 1 set right
    here is the best code i think
    public static void put0OnTheLeft(Integer[] integers) {
    List integersList = Arrays.asList(integers );


    integersList.parallelStream().sorted((y,x ) -> x.compareTo(y)).forEach(System.out::println);
    }
    main table ---> Integer[] entiers = {1,0,0,1,0,1,0,1,0,0,0,1,1,1};

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

      public static void separateZerosAndOnes(Integer[] entiers) {
      Arrays.sort(entiers, (a, b) -> a.compareTo(b));
      }

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

      Declare two pointers one for zero and other for 1...n swap it at every occurrence.