Java Microservice interview experience with Morgan Stanley | 6 years

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ก.ค. 2021
  • Java Microservice interview experience Morgan Stanley | 6 years
    This video contains Java Microservice interview experience Morgan Stanley | 6 years
    For mock interviews join the telegram channel:-
    t.me/mockinterview_agtech
    Java complete Reference book
    amzn.to/36A2jT3
    Kindly subscribe channel for all updates and Learn how to pass your Java Developer interview
    Core Java 2+ Interview Questions:- • java developer intervi...
    Hexaware Java Interview:- • Hexaware Java Intervie...
    Cognizant Java Interview:- • Cognizant java intervi...
    Tech Mahindra Java Interview:- • Tech Mahindra 5+ years...
    Accenture Java Interview:- • Accenture Core Java In...
    Mphasis Interview :- • Mphasis interview ques...
    Amdocs Metrops software test:- • Video
    Birlasoft Interview:- • Realtime interview que...
    HCL Interview Questions:- • HCL Java developer int...
    Yash teachnology Interview:- • Solution architect int...
    IBM Java developer hacker rank test:- • Video
    Wipro Java developer Interview :- • Wipro Java Developer I...
    Capgemini Java developer Interview :- • Capgemini Java Develop...
    Apache Wicket Interview Questions:- • Apache Wicket Intervie...
    City Bank Codility Test:- • Video
  • วิทยาศาสตร์และเทคโนโลยี

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

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

    Interviewer is very great, He is proving the weakness of candidates in very polite way. Set of question is brilliant, it's not like general market question like what is difference between overloading and overriding.

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

    why these long answers for small questions? 😃 would praise the interviewer for his listening skill n patience .

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

      That's a trick to consume as much time as possible, so to avoid further difficult questions which may impact the whole interview.

    • @itsnarahari
      @itsnarahari 2 หลายเดือนก่อน

      😂​@@digvijay1228

  • @Akshay-fz7ms
    @Akshay-fz7ms ปีที่แล้ว +2

    Spring has webflux for reactive programming ..interviewee is giving wrong reason for moving to vertx

  • @PramodKumar-kg3sd
    @PramodKumar-kg3sd 2 ปีที่แล้ว +17

    That SQL question , u have to use count(emp) and group by emp in the query , with count having greater thn 1

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

    a transcript of this entire thing would've been great

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

    my observation there is no sync of question and answers

  • @20M_Target_1.0
    @20M_Target_1.0 ปีที่แล้ว +5

    Print 1,A,2,B
    You have to use wait and notify within 2 threads

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

      How to Prepare for Multithreading, and Microservices as I have not apportunity to work on it. And I want to go it that segment

    • @Nirbhaykumar-jo1xv
      @Nirbhaykumar-jo1xv 9 หลายเดือนก่อน

      Correct

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

      # This is not that efficient we can improve this but it works for context switching
      package com.mohit.multithreading;
      public class NumberAphabet {

      public static void main(String[] args) {

      ThreadWorkAlphabetNumber numberThread= new ThreadWorkAlphabetNumber("num");
      ThreadWorkAlphabetNumber alhaThread = new ThreadWorkAlphabetNumber("alp");

      Thread t1= new Thread(numberThread);
      Thread t2= new Thread(alhaThread);

      t1.start();
      t2.start();

      }
      }
      class ThreadWorkAlphabetNumber implements Runnable{

      static Object lock=new Object();
      static int counter=1;
      static int numVal=1;
      static int asciiVal=65;
      String resultType;
      public ThreadWorkAlphabetNumber(String resultType) {
      this.resultType=resultType;
      }

      @Override
      public void run() {

      while(counter

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

    Depending on request accept header we can return response in XML/json.

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

      Produces and consumes with json too can be used

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

    sql Query for finding duplicates
    select empId, count(empId)
    group by empId where count(empId) > 1

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

      Where or having???

    • @rexsam3134
      @rexsam3134 7 หลายเดือนก่อน

      @@Pawan76457 both work. Use explain plan to check which is more time consuming

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

      @@Pawan76457 having , something like this ::::: SELECT id,count(*) FROM students group by id having count(*) > 1;

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

    He asked you on JWT token validity and what did you answer?

  • @user-gt6xk2pk4i
    @user-gt6xk2pk4i 7 หลายเดือนก่อน

    New features of 1.8 concurrenthashmap. Both don't know token expiration logic

  • @DeepakKumar-du3xt
    @DeepakKumar-du3xt 2 ปีที่แล้ว +1

    What do you use to record the interviews?

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

    Great interview. Can you upload videos without the background buzzing noise please?

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

    Do you provide mock interview service ? Please let me know

    • @rexsam3134
      @rexsam3134 7 หลายเดือนก่อน

      This is a mock interview

  • @TheExamCentral
    @TheExamCentral 7 หลายเดือนก่อน

    22:32

  • @TheExamCentral
    @TheExamCentral 7 หลายเดือนก่อน

    6:56

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

    Where container came in concurrent hashmap??

  • @murthyinutube
    @murthyinutube 8 หลายเดือนก่อน +1

    Answering any question like blah blah... without content won't help.
    No need to answer in hurry burry. Just explain your understanding of the concept.

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

    How much years of experience this interview?

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

    He must have passed this technical interview
    level.

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

    Was it allowed by your interviewer to record?

    • @Akshay-fz7ms
      @Akshay-fz7ms ปีที่แล้ว

      No company or interviewer will allow you to record.

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

    With all my experience and exposure so far, I could easily say that, the interviewee is far better than interviewer. The interviewer himself is lot confused about his questions... such as how do you check duplicate column(????) insertion or updation. Or in Endpoint question, he himself doesn't have clarity what is he asking. Such kind of interviews throw tantrums in interviewee's minds. So one need to lucky enough to get an able interviewer too...😊

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

      Ok will check with him

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

      no dude the question is valid one has to use group by clause prety common qs for junior devs

    • @chaitanyabalanagu626
      @chaitanyabalanagu626 8 หลายเดือนก่อน

      Yeah for ur understanding about this interview, u really need a lot of luck to get job in good companies.

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

    9pp

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

    PHK

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

    Why in garbage collector dominant to the Hashamp but weak hashmap garbage collector not be dominated

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

      If the object specified as key is have no reference, if it is associated with the hashmap map then it is not eligible for garbage colleciton.
      It will be eligible for garbage collector if the same object associated with the weak hashmap

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

      @@nagendersripada7798 what is new things in ur comments Boss same things u also commenting my Question why this kind facilities sun people only provided by weak hashmap not hashmap

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

      My Q why same type of weak hashmap feature not provided by in a Hashmap see the example in a Hashmap
      Garbage collector unable to destroy but in weak hashmap it will distroy the unreferenced object

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

      Hashmap example
      class HashMapDemo
      {
      public static void main(String args[])throws Exception
      {
      HashMap m = new HashMap();
      Demo d = new Demo();
      // puts an entry into HashMap
      m.put(d," Hi ");
      System.out.println(m);
      d = null;
      // garbage collector is called
      System.gc();
      //thread sleeps for 4 sec
      Thread.sleep(4000);
      System.out.println(m);
      }
      }
      class Demo
      {
      public String toString()
      {
      return "demo";
      }
      // finalize method
      public void finalize()
      {
      System.out.println("Finalize method is called");
      }
      }
      Output:
      {demo=Hi} {demo=Hi}

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

      Weak hashmap
      class WeakHashMapDemo
      {
      public static void main(String args[])throws Exception
      {
      WeakHashMap m = new WeakHashMap();
      Demo d = new Demo();
      // puts an entry into WeakHashMap
      m.put(d," Hi ");
      System.out.println(m);
      d = null;
      // garbage collector is called
      System.gc();
      // thread sleeps for 4 sec
      Thread.sleep(4000); .
      System.out.println(m);
      }
      }
      class Demo
      {
      public String toString()
      {
      return "demo";
      }
      // finalize method
      public void finalize()
      {
      System.out.println("finalize method is called");
      }
      }
      Output:
      {demo = Hi}
      finalize method is called
      { }

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

    Selected ?

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

    Bore kar diya dono ne