Telstra real interview experience in java Microservices spring springboot hibernate question answers

Поделиться
HTML-код
  • Опубликовано: 20 окт 2024
  • This video contains java interview questions, Microservices interview questions and answers, spring springboot interview questions.
    This interview was conducted on 26 feb 2021, The questions were mainly from Core java, spring springboot and microservices.
    There was a coding questions as well.
    Covered in this video:
    Java telephonic interview
    java tutorial
    Oops concepts interview questions
    core java basics
    Top 10 Tricky core java Interview questions top java interview questions,top java interview questions and answers,top interview questions and answers,top java interview questions for freshers,top 10 java interview questions,tricky java interview questions,tricky java interview questions for experienced,tricky java questions,java tricky interview questions,top 50 java interview questions,top 50 core java interview questions,java interview questions by durga sir,java interview questions for experienced,java interview questions for freshers,java interview questions and answers,java interview questions and answers edureka
    #JavaInterviewQuestionsandAnswers​ #JavaInterviewQuestions​ #Intellipaat​ #JavaInterview​ #CoreJavaInterviewQuestions​ #JavaInterviewQuestionsandAnswersForExperienced​ #JavaTutorial​ #JavaProgramming​ #JavaTutorialForBeginners​
    Please Subscribe Channel : / javatechies
    Core Java Interview questions : • Top 10 Core java inter...
    Java Collections Interview questions : • Top 10 Java collection...
    Company wise Java Interview Questions and answers playlist : • Java real time intervi...
    #java
    #questions
    #interview
    #microservices
    #intermediate
    #springboot
    #spring
    #hibernate Unisys Round 1 : • Unisys Round 1 Java de... Connect us on :
    Telegram: t.me/joinchat/...
    Whatsapp: chat.whatsapp....
    Facebook: / kumarlbindal

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

  • @aabhasjain96
    @aabhasjain96 8 месяцев назад +4

    00:00 - Starting
    00:20 - Introduction of Interviewer and about Company
    02:52 - Roles and Responsibility in your current project
    04:12 - OOPs concept with short example related to work
    07:05 - What is the basic difference between Inheritance (He wants to say Interface) and Abstract classes.
    07:49 - After extending abstract class, is it must to define all the abstract methods?
    08:12 - How abstract class is different from Interfaces?
    09:10 - Why two different concepts like Interface and Abstract class?
    09:45 - Difference between public, protected, private & default?
    10:27 - Basic difference between dependency injection and inversion of control.
    15:06 - Multiple service implementation class of service interface
    18:02 - Handling different API call scenarios
    21:43 - Basic difference between String, StringBuffer & StringBuilder and when to use what?
    24:50 - How Garbage collection works?
    25:43 - What are the different generation during Garbage collection?
    26:15 - JPA & Hibernate related scenario based question
    35:35 - Stream related scenario based question
    40:42 - When and when not to use Microservices?
    46:20 - Coding question

    • @JavaTechies
      @JavaTechies  8 месяцев назад

      Thanks

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

      @@JavaTechies Thanks to you for sharing your experience. One suggestion, you can add these timestamp in the description so it will create chapters, which will be helpful for others.

    • @JavaTechies
      @JavaTechies  8 месяцев назад

      @@aabhasjain96 sure, thank you

    • @aabhasjain96
      @aabhasjain96 8 месяцев назад

      @@JavaTechies also as I can see you got the offer after this. Could you please tell the entire process ?

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

    good interview, for the last question on sequencing zero firt and non zero second, i would use stream.concat api and concat a two streams, one iwth zero and other non zero
    Integer[] array = {4, 0, 3, 0, 2, 0, 1};
    Integer[] result = Stream.concat(
    Arrays.stream(array).filter(num -> num == 0),
    Arrays.stream(array).filter(num -> num != 0)
    ).toArray(Integer[]::new);

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

      Thank you so much for your answer, i appreciate 🙏😊

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

    The interviewer is such a nice human being. Awesome questions too.

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

    For last question on sequencing array elements, it can be done using deque
    List input = Arrays.asList(1,3,0,4,3,0,7);
    Deque deque = new LinkedBlockingDeque();
    input.stream().forEach(i -> {
    if(i==0) {
    deque.addFirst(i);
    } else {
    deque.add(i);
    }
    });

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

      Thanks

    • @ManishTiwari-or8zt
      @ManishTiwari-or8zt 2 года назад +1

      you can use TreeSet and add the element to it, find with treeset.last() method--> will give max result

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

      @@ManishTiwari-or8zt but bro, Treeset stores values in sorted order, here we want is insertion order. right?

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

      You could also use Linked list impl of double ended queue

  • @suganya8810
    @suganya8810 3 года назад +6

    Awesome mansi .. your way of explaining things is really good... and your videos are very useful

  • @garrybal719
    @garrybal719 3 года назад +5

    Good info..
    Candidate seems very good with theoretical questions, however, when it comes to practical/coding/problem solving, seems pretty stuck or confused.

  • @MrKishorekommula
    @MrKishorekommula 3 года назад +9

    You have to implement all methods of abstract classs

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

    Your Interview experience are very helpful mam. I have learned a lot from these interviews. Keep up the good work mam

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

    last question is perhaps on Insertion sort, i.e. in-place sorting

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

    Madam you are very good at your answers everything is perfect but this "So Basically" before every answers is headache...😂😂

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

    Please share java coding interview questions for telstra.

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

    for the question asked at @35:36
    we can have 2 int variable named as min and max.
    and for every number generation whatever number stream generates, we can put this in max variable first
    and after 2nd iteration put a check to compare a number if greater than what this variable already has.
    if yes then replace the latest number in max.
    if the number generates in 2nd iteration is less than the previous number , put this number in min variable.
    at the end of the iteration you will get the max and min numbers in those variable.

    • @JavaTechies
      @JavaTechies  2 года назад

      Thanks, good approach and we will be able to solve it in o(n).

    • @0brajeshsharma
      @0brajeshsharma 2 года назад

      Exactly

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

    I c only Masi interview in all the videos ...is she selected or not

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

    Great video. Could you please share further rounds with Telstra?

  • @vivekanandasuggu4247
    @vivekanandasuggu4247 3 года назад +1

    Thankyou your videos are helping a lot. Subscribed to your channel.

  • @erichuynh6857
    @erichuynh6857 3 года назад +3

    Too much "basically" and "actually" :). Anyway, good video.

  • @rohitkumar-vk4fx
    @rohitkumar-vk4fx 3 года назад +2

    Thanks for sharing

  • @shankars4281
    @shankars4281 3 года назад +6

    -355 and 365 answer for question at @37:00. Is that correct ?

  • @gouravrusiya
    @gouravrusiya 3 года назад +3

    Were you able to crack this round?
    Coding problem was easy though, Thanks for sharing 👍

    • @JavaTechies
      @JavaTechies  3 года назад +3

      Yes, I was selected in this round.

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

    Hello mam, I have completed my btech 3rd year and i has TR round on monday...So what can i expect them to ask me as a fresher ... it is an oncampus placement. So can u please share any concepts where i have to focus more

    • @JavaTechies
      @JavaTechies  2 года назад

      Normal questions like where do you see yourself in 5 years.
      What are your weakness, strength

  • @mansimadiratta969
    @mansimadiratta969 3 года назад +4

    👍👍

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

    i have interview tomorrow can someone tell what would be the process. do they ask coding questions in interview.i am a fresher

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

    If its like i will get 50 rs for every "basically". I would be an millionaire in one month 😅

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

      Thanks, hopefully you start getting

  • @RealSlimShady-um6gf
    @RealSlimShady-um6gf Год назад +1

    Interviewer is Manasi. Unless she is a panel looks like a mock interview

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

    For example actually basi8

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

    Are you really using Eureka or made that up 😂 helpful interview though

  • @abirkec
    @abirkec 3 года назад +1

    Please provide IBM interview experience also Mansi.

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

      She will record some questions with her knowhow and upload

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

    How much experience you are holding?

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

    GOOD QUESTIONS ON SPRING BOOT N SPRING MVC.
    Qualifiers done in controller or .... Does it ......
    18. Scenario : API Call from UI... 3 Conditions happens for any API
    1. Successful... Authorized
    2. Not Authorize
    3. Failed due to any kind of failure
    What kind of approach 🤔

  • @sachinbohra007
    @sachinbohra007 3 года назад +1

    Can you please give me details for third round of wissen tech?

  • @sachinbohra007
    @sachinbohra007 3 года назад +1

    Can you please give me details for third round of wissen tech? I really need to know the reference. Please help

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

      You are talking about technical round right, refer to one of my experience with them as technical discussion.
      ruclips.net/video/IWUUkG2HhJM/видео.html

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

      @@JavaTechies But that was round two only. I am done with hacker earth and one technical round. What about the next one?

    • @JavaTechies
      @JavaTechies  3 года назад

      @@sachinbohra007 I didn't get a chance to get to third round, I guess.
      If it happens then I will share, it would be nice of you if you can share a recording of your experience with us.
      Thanks

    • @sachinbohra007
      @sachinbohra007 3 года назад +1

      @@JavaTechies I haven't recorded for the second round. But surely i will record the next round. Didn't you received a mail for the clearance of the technical round?

    • @JavaTechies
      @JavaTechies  3 года назад

      @@sachinbohra007 rarely any company HR replies in negative scenario, but I don't hope of positive anymore.

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

    I has the same TR for Telstra company

    • @JavaTechies
      @JavaTechies  2 года назад

      Nice, thanks

    • @miniatureclips7652
      @miniatureclips7652 2 года назад

      @@JavaTechies Hi, thanks for your interview videos it’s really helping me. could u share coding questions for Telstra. I have an interview next week. It would be great if u can reply. Thanks in advance

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

    HR will get back to you with details ... 😂😂

  • @learningkids5327
    @learningkids5327 2 года назад

    Stupid question.. U asked.. I know u r not selected

    • @JavaTechies
      @JavaTechies  2 года назад

      Thanks for your comment. Questions doesn't matter, answers should be perfect. You are also most welcome to answer questions, looking for something good from you.

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

      @@JavaTechies u gave interview for backend developer. And u r asking for what role.. Omg.. Then what interview u gave for

  • @SumitSingh-vt8gd
    @SumitSingh-vt8gd 3 года назад +1

    Wrong answer string buffer vs bilder

    • @dac5961
      @dac5961 3 года назад +7

      She is right. Do not mislead people.