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

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

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

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

      Thanks

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

      @@aabhasjain96 sure, thank you

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

      @@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 🙏😊

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

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

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

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

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

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

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

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

  • @rohitkumar-vk4fx
    @rohitkumar-vk4fx 3 ปีที่แล้ว +2

    Thanks for sharing

    • @JavaTechies
      @JavaTechies  3 ปีที่แล้ว

      Thanks for watching!

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

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

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

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

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

      Yeah, I improved now

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

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

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

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

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

    Please share java coding interview questions for telstra.

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

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

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

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

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

    👍👍

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

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

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

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

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

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

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

      Yes, expect 1 easy problem

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

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

    For example actually basi8

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

    Please provide IBM interview experience also Mansi.

    • @learningkids.1M
      @learningkids.1M 2 ปีที่แล้ว +1

      She will record some questions with her knowhow and upload

  • @RealSlimShady-um6gf
    @RealSlimShady-um6gf ปีที่แล้ว +1

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

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

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

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

    How much experience you are holding?

  • @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.
      th-cam.com/video/IWUUkG2HhJM/w-d-xo.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.

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

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

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

  • @learningkids.1M
    @learningkids.1M 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.

    • @learningkids.1M
      @learningkids.1M 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.