SELECTED? | INFOSYS | java spring boot microservices hibernate interview | real time java interview

Поділитися
Вставка
  • Опубліковано 14 жов 2024
  • If you want to give a mock interview for the preparation. please follow the below steps.
    step 1: Like this video
    step 2: comment any answer from this video.
    step 3: message me following thing to my instagram id.(java_interview_buddy)
    I will reply with an available time slot.
    my instagram id: java_interview_buddy
    Name:
    Technologies:
    Years of experience:
    If you want to buy me a coffee :
    UPI ID: jibyoutube@apl
    mock interview
    java mock interview
    java interview questions and answers
    java interview questions and answers for experienced
    telephonic interview for java developer
    java telephonic interview
    java telephonic interview questions for 3 years experience
    java telephonic interview questions for 5 years experience
    spring boot interview questions
    spring boot interview questions and answers for experienced
    java interview questions and answers for freshers
    microservices interview questions
    core java interview questions and answers
    java 8 interview questions and answers
    infosys interview experience
    infosys interview for freshers
    java developer interview questions and answers for experienced
    spring interview questions

КОМЕНТАРІ • 88

  • @PraveenKumar-vh2qm
    @PraveenKumar-vh2qm 3 роки тому +15

    select max(salary) from employee where salary

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      Very good.

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      How much experience you are having?

    • @PraveenKumar-vh2qm
      @PraveenKumar-vh2qm 3 роки тому +3

      @@javainterviewbuddy567 4 years of experience

    • @pradeeshp2339
      @pradeeshp2339 3 роки тому +6

      select distinct(salary) from employee order by salary desc limit 1,1;
      limit n,m(select nth row - offset, select m rows - limit)
      you can find 8th highest salary by giving limit 7,1(row count starts from 0)

  • @charmishah3712
    @charmishah3712 2 роки тому +10

    2 objects will be created for S1 and S2 as they are stored in Heap new keyword will create new object.
    If new keyword was not used only 1 object would have created which was because it is stored in String Constant Pool and there two obj with same content are not allowed

    • @desi_fifa
      @desi_fifa Рік тому +3

      Correct I was also got confused when she said 3. And also string is created immutable because of security reasons . For this to overcome java created stringbuilder and stringbuffer. But she relied in a complicated mannner

    • @Sreeni_JavaTechie
      @Sreeni_JavaTechie 8 місяців тому

      2 objects are created in Heap . There are two string objects one is for S1 and another for S2

    • @adhaverohini276
      @adhaverohini276 6 місяців тому

      Yeah... Only 2 obj will be created.

    • @RahulJain0718
      @RahulJain0718 Місяць тому +1

      No idiots 3 objects created total

  • @niteshpandey8207
    @niteshpandey8207 2 роки тому +4

    String class is final class thats why string is immutable or you cannot extends string class.

  • @chetanbavaskar877
    @chetanbavaskar877 2 роки тому +4

    Just one addition to abstract vs interface , after java8 interface can have method implementation in form of default() and static() methods

  • @PraveenKumar-vh2qm
    @PraveenKumar-vh2qm 3 роки тому +6

    Optional class use to avoid NPE, method reference use to short notation of lamba expression, to represent '::'operator.

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      You are correct.

    • @kavingct
      @kavingct 2 роки тому +5

      Primary purpose of Optional is for writing fluent apis where you can handle an absence of value scenario by Optional class methods like orElse(), orElseThrow(), etc.
      Although the most common usage of Optional is to use its isPresent() and get() methods to avoid NPE, learning it’s other methods would help you write much better code.

  • @giridharankannan3187
    @giridharankannan3187 3 роки тому +5

    The Interview is very useful requesting to kindly upload more videos like this

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      Thank you so much, after a long break I will post soon. I am also working on a series of tutorials.

  • @Rajesh-qk1ne
    @Rajesh-qk1ne 2 роки тому +2

    Good contemporary questions.....
    Really helped me ....👍👍👍

  • @priyankarauthan1225
    @priyankarauthan1225 3 роки тому +5

    There will be 2 objects created instead of 3. Right?

    • @vaishnavipulluri3956
      @vaishnavipulluri3956 3 роки тому +3

      No there will be three objects created as she mentioned the reason why there will be three objects created but not two

    • @onkarkatkar2582
      @onkarkatkar2582 Рік тому +4

      2 in heap out side scp and 1 in scp

  • @akashkesarwani2633
    @akashkesarwani2633 2 роки тому +3

    how much in terms of % hike I can expect from infosys? current 31.8, expected 45LPA, cleared both rounds & documents sent on monday. can they give this much with 11 yrs experience?

    • @javainterviewbuddy567
      @javainterviewbuddy567  2 роки тому +1

      It is hard to say, So much depends on the management and the urgency of the requirement. But I hope you will get your desired numbers.

  • @tusharkantanahak3071
    @tusharkantanahak3071 3 роки тому +6

    1.
    While using equal operator we will get true, bcoz == operator will perform reference comparison, while creating a new string object with same content, new object will not get created rather the new string object reference will point to the existing object with same content,
    While using .equals operator in string class it is overidden for content comparison and both the contents are same so answer will be true.
    Am I correct?

    • @mangeshshelke1846
      @mangeshshelke1846 3 роки тому

      No buddy.. Check once

    • @VishalKhemnar360
      @VishalKhemnar360 2 роки тому

      I think you are... I had the same query...

    • @artificialintelligenceai1581
      @artificialintelligenceai1581 Рік тому

      @@mangeshshelke1846 2 different object will create because the objects are creating through new keyword

    • @desi_fifa
      @desi_fifa Рік тому

      As per my knowledge if you create two string with the same input it will create two objects like s1 and s2, two seperate objects. As string is immutable , to resolve this issue we use stringbuffer and stringbuilder.

  • @NKTechnologyPlus
    @NKTechnologyPlus 2 роки тому +2

    Options class introduce in java 1.8 version to handle null pointer exception . it's provide some methods like empty(),ofNillable(),filter(),map() like this.

  • @SaiKrishna-xx5de
    @SaiKrishna-xx5de 5 місяців тому

    We can't expect this much of basics for 2years experience

  • @RahulSharma-xd6ot
    @RahulSharma-xd6ot 2 роки тому +3

    is mock interview availabile for Android as well?

    • @javainterviewbuddy567
      @javainterviewbuddy567  2 роки тому

      Mock interview is available for Full stack and Backend Developer role. Let me know if you need any help.

  • @kratos692
    @kratos692 2 роки тому +2

    What is on hold means?

  • @biswabikashparida9691
    @biswabikashparida9691 9 місяців тому +1

    how many years of experience this interview is for

  • @mamathay3225
    @mamathay3225 2 роки тому +3

    Hi sir, I need mock interview for java developer

  • @thevrdesignes707
    @thevrdesignes707 Рік тому +3

    Please mentioned the year of experience level as well on video text

  • @TheBehamot
    @TheBehamot Рік тому +1

    Seriously these interviews are so pointless and so far away from real work experience. The focus on terms but not the meaning.. who cares if is functional of marker interface. But ok the InfoSys is mainly India based, and they love this kind of "knowledge" :)

    • @sane2insanity
      @sane2insanity 8 місяців тому

      Infosys markets its developers to other companies. The initial interview is a reflection of the types of questions the clients will ask before selecting them for a project. Mostly they are not thought up by actual developers but by the HR dept of client companies like Verizon.

  • @akashjain3254
    @akashjain3254 Рік тому +3

    How much is experienced of candidate ??

  • @rupakdudhe1877
    @rupakdudhe1877 9 місяців тому +1

    I want interview prep pls help

  • @priyam4826
    @priyam4826 2 роки тому +2

    How many rounds were there? And which one was that?

  • @sagardubey3063
    @sagardubey3063 2 роки тому +2

    It was a good interview.i through she got selected

  • @ashishsharma-zj2zq
    @ashishsharma-zj2zq 3 роки тому +2

    👍👍

  • @sethumohanan2970
    @sethumohanan2970 3 роки тому +2

    ❤❤❤❤❤❤❤❤❤

  • @tippabatinisantoshkumar2931
    @tippabatinisantoshkumar2931 2 роки тому +2

    Nice questions and answers.... 😊

  • @NKTechnologyPlus
    @NKTechnologyPlus 2 роки тому

    Thanks sir👍

  • @MomsDailyCorner
    @MomsDailyCorner 3 роки тому +2

    What is the position

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому +2

      The position is Technology Analyst, which is equivalent to senior java developer.

    • @MomsDailyCorner
      @MomsDailyCorner 3 роки тому

      @@javainterviewbuddy567 To which location. I too got the offer.

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому +1

      It was for Bangalore location.

    • @kavithaB__
      @kavithaB__ 3 роки тому +1

      @@javainterviewbuddy567 Can you please tell me, How much we can ask for Technology Analyst with 3.5 yrs of experience?

  • @hardikpatil393
    @hardikpatil393 Рік тому

    Interviewer got selected 😅

  • @skiiiTv9571
    @skiiiTv9571 3 роки тому +2

    upload more vedios

  • @Naveen_Chowdary_dhfm
    @Naveen_Chowdary_dhfm 3 роки тому +2

    Very nice... Package?

  • @KiranKumar-ud6zz
    @KiranKumar-ud6zz 3 роки тому +2

    Is it 4

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      No , 3 rounds only , but it also depends on the project and level, for some projects (banking and finance domain) , they take 4 rounds.

    • @sanathrayala2745
      @sanathrayala2745 2 роки тому +1

      @@javainterviewbuddy567 all 4 technical??

    • @javainterviewbuddy567
      @javainterviewbuddy567  2 роки тому

      No, manager round also included

  • @Manish-py3jc
    @Manish-py3jc 2 роки тому +3

    Answer for 0:30 is true and true

  • @KiranKumar-ud6zz
    @KiranKumar-ud6zz 3 роки тому +2

    Total hom many rounds happend

    • @javainterviewbuddy567
      @javainterviewbuddy567  3 роки тому

      3 rounds, this is L1 round, that's why the focus was on core java, after this there was a manager round and HR round.

  • @kraishwary16
    @kraishwary16 3 роки тому +2

    Aaaa

  • @ashp474
    @ashp474 2 роки тому

    Selected?

  • @arunkumar-se5zw
    @arunkumar-se5zw 2 роки тому +1

    she had done well,is she selected?

  • @buildleadinnovate24
    @buildleadinnovate24 3 роки тому +1

    Experience ???

  • @tejastipre9787
    @tejastipre9787 2 роки тому

    Sir she was selected or not?

  • @havefunmakefun
    @havefunmakefun 2 роки тому +3

    Hii sir I need mock interview for java developer

    • @javainterviewbuddy567
      @javainterviewbuddy567  2 роки тому

      Please fill the below form. forms.gle/bknWCNR5QxQtGBva7
      I will share a zoom link with you on your email ID.