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)
@charmishah37122 жыл бұрын
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 Жыл бұрын
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_JavaTechie10 ай бұрын
2 objects are created in Heap . There are two string objects one is for S1 and another for S2
@adhaverohini2767 ай бұрын
Yeah... Only 2 obj will be created.
@RahulJain07183 ай бұрын
No idiots 3 objects created total
@niteshpandey82072 жыл бұрын
String class is final class thats why string is immutable or you cannot extends string class.
@chetanbavaskar8772 жыл бұрын
Just one addition to abstract vs interface , after java8 interface can have method implementation in form of default() and static() methods
@PraveenKumar-vh2qm3 жыл бұрын
Optional class use to avoid NPE, method reference use to short notation of lamba expression, to represent '::'operator.
@javainterviewbuddy5673 жыл бұрын
You are correct.
@kavingct2 жыл бұрын
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.
@giridharankannan31873 жыл бұрын
The Interview is very useful requesting to kindly upload more videos like this
@javainterviewbuddy5673 жыл бұрын
Thank you so much, after a long break I will post soon. I am also working on a series of tutorials.
@dineshsahu-by9okАй бұрын
String is immutable because it's Prevents malicious changes in sensitive strings (e.g., URLs) and it's also Saves memory and ensures consistent references for String pool.
@Rajesh-qk1ne2 жыл бұрын
Good contemporary questions..... Really helped me ....👍👍👍
@javainterviewbuddy5672 жыл бұрын
🙏💕
@priyankarauthan12253 жыл бұрын
There will be 2 objects created instead of 3. Right?
@vaishnavipulluri39563 жыл бұрын
No there will be three objects created as she mentioned the reason why there will be three objects created but not two
@onkarkatkar2582 Жыл бұрын
2 in heap out side scp and 1 in scp
@SaiKrishna-xx5de7 ай бұрын
We can't expect this much of basics for 2years experience
@javainterviewbuddy567Ай бұрын
its according to the answers of the candidate
@akashkesarwani26332 жыл бұрын
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?
@javainterviewbuddy5672 жыл бұрын
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.
@biswabikashparida969110 ай бұрын
how many years of experience this interview is for
@tippabatinisantoshkumar29312 жыл бұрын
Nice questions and answers.... 😊
@javainterviewbuddy5672 жыл бұрын
Glad you liked it
@NKTechnologyPlus3 жыл бұрын
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.
@javainterviewbuddy5673 жыл бұрын
Yes, you are right
@havefunmakefun2 жыл бұрын
Hii sir I need mock interview for java developer
@javainterviewbuddy5672 жыл бұрын
Please fill the below form. forms.gle/bknWCNR5QxQtGBva7 I will share a zoom link with you on your email ID.
@RahulSharma-xd6ot2 жыл бұрын
is mock interview availabile for Android as well?
@javainterviewbuddy5672 жыл бұрын
Mock interview is available for Full stack and Backend Developer role. Let me know if you need any help.
@Rupakdudhe10 ай бұрын
I want interview prep pls help
@ashishsharma-zj2zq3 жыл бұрын
👍👍
@sagardubey30632 жыл бұрын
It was a good interview.i through she got selected
@javainterviewbuddy5672 жыл бұрын
Thank you
@akashjain3254 Жыл бұрын
How much is experienced of candidate ??
@javainterviewbuddy567 Жыл бұрын
4 years
@thevrdesignes7072 жыл бұрын
Please mentioned the year of experience level as well on video text
@javainterviewbuddy567 Жыл бұрын
Okay
@kratos6922 жыл бұрын
What is on hold means?
@NKTechnologyPlus3 жыл бұрын
Thanks sir👍
@javainterviewbuddy5673 жыл бұрын
Most welcome
@tusharkantanahak30713 жыл бұрын
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?
@mangeshshelke18463 жыл бұрын
No buddy.. Check once
@VishalKhemnar3602 жыл бұрын
I think you are... I had the same query...
@artificialintelligenceai15812 жыл бұрын
@@mangeshshelke1846 2 different object will create because the objects are creating through new keyword
@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.
@priyam48262 жыл бұрын
How many rounds were there? And which one was that?
@javainterviewbuddy567 Жыл бұрын
2 technicals
@sethumohanan29703 жыл бұрын
❤❤❤❤❤❤❤❤❤
@javainterviewbuddy5673 жыл бұрын
😍😍
@TheBehamot Жыл бұрын
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" :)
@sane2insanity10 ай бұрын
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.
@skiiiTv95713 жыл бұрын
upload more vedios
@javainterviewbuddy5673 жыл бұрын
sure buddy, working on it.
@hardikpatil393 Жыл бұрын
Interviewer got selected 😅
@javainterviewbuddy567Ай бұрын
Ha ha.
@KiranKumar-ud6zz3 жыл бұрын
Is it 4
@javainterviewbuddy5673 жыл бұрын
No , 3 rounds only , but it also depends on the project and level, for some projects (banking and finance domain) , they take 4 rounds.
@sanathrayala27453 жыл бұрын
@@javainterviewbuddy567 all 4 technical??
@javainterviewbuddy5673 жыл бұрын
No, manager round also included
@Naveen_Chowdary_dhfm3 жыл бұрын
Very nice... Package?
@javainterviewbuddy5673 жыл бұрын
10 to 12LPA. Depends on the performance
@corporatechic27422 жыл бұрын
How much experience?
@Manish-py3jc2 жыл бұрын
Answer for 0:30 is true and true
@binzilav865917 күн бұрын
Nope. False True
@KiranKumar-ud6zz3 жыл бұрын
Total hom many rounds happend
@javainterviewbuddy5673 жыл бұрын
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.
@MomsDailyCorner3 жыл бұрын
What is the position
@javainterviewbuddy5673 жыл бұрын
The position is Technology Analyst, which is equivalent to senior java developer.
@MomsDailyCorner3 жыл бұрын
@@javainterviewbuddy567 To which location. I too got the offer.
@javainterviewbuddy5673 жыл бұрын
It was for Bangalore location.
@kavithaB__3 жыл бұрын
@@javainterviewbuddy567 Can you please tell me, How much we can ask for Technology Analyst with 3.5 yrs of experience?
@ashp4742 жыл бұрын
Selected?
@javainterviewbuddy5672 жыл бұрын
She is on hold and selected later
@kraishwary163 жыл бұрын
Aaaa
@arunkumar-se5zw2 жыл бұрын
she had done well,is she selected?
@javainterviewbuddy5672 жыл бұрын
She is on hold and selected later
@buildleadinnovate243 жыл бұрын
Experience ???
@javainterviewbuddy5673 жыл бұрын
4 years.
@tejastipre97872 жыл бұрын
Sir she was selected or not?
@javainterviewbuddy5672 жыл бұрын
Not selected
@salmanpandey81505 ай бұрын
@@javainterviewbuddy567 but i thoguth girls dont get rejected
@mamathay32252 жыл бұрын
Hi sir, I need mock interview for java developer
@javainterviewbuddy5672 жыл бұрын
Please connect with me on Instagram , I will share a zoom link