No video

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

  Рет қаралды 38,879

JAVA INTERVIEW BUDDY

JAVA INTERVIEW BUDDY

3 жыл бұрын

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

Пікірлер: 85
@charmishah3712
@charmishah3712 2 жыл бұрын
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 Жыл бұрын
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 6 ай бұрын
2 objects are created in Heap . There are two string objects one is for S1 and another for S2
@adhaverohini276
@adhaverohini276 4 ай бұрын
Yeah... Only 2 obj will be created.
@PraveenKumar-vh2qm
@PraveenKumar-vh2qm 3 жыл бұрын
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 жыл бұрын
@@javainterviewbuddy567 4 years of experience
@pradeeshp2339
@pradeeshp2339 2 жыл бұрын
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)
@chetanbavaskar877
@chetanbavaskar877 2 жыл бұрын
Just one addition to abstract vs interface , after java8 interface can have method implementation in form of default() and static() methods
@niteshpandey8207
@niteshpandey8207 Жыл бұрын
String class is final class thats why string is immutable or you cannot extends string class.
@PraveenKumar-vh2qm
@PraveenKumar-vh2qm 3 жыл бұрын
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 жыл бұрын
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 2 жыл бұрын
The Interview is very useful requesting to kindly upload more videos like this
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
Thank you so much, after a long break I will post soon. I am also working on a series of tutorials.
@tusharkantanahak3071
@tusharkantanahak3071 2 жыл бұрын
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 2 жыл бұрын
No buddy.. Check once
@VishalKhemnar360
@VishalKhemnar360 Жыл бұрын
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.
@Rajesh-qk1ne
@Rajesh-qk1ne Жыл бұрын
Good contemporary questions..... Really helped me ....👍👍👍
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
🙏💕
@akashkesarwani2633
@akashkesarwani2633 2 жыл бұрын
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 жыл бұрын
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.
@priyankarauthan1225
@priyankarauthan1225 3 жыл бұрын
There will be 2 objects created instead of 3. Right?
@vaishnavipulluri3956
@vaishnavipulluri3956 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 Жыл бұрын
2 in heap out side scp and 1 in scp
@ashishsharma-zj2zq
@ashishsharma-zj2zq 3 жыл бұрын
👍👍
@SaiKrishna-xx5de
@SaiKrishna-xx5de 3 ай бұрын
We can't expect this much of basics for 2years experience
@NKTechnologyPlus
@NKTechnologyPlus 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.
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
Yes, you are right
@sethumohanan2970
@sethumohanan2970 3 жыл бұрын
❤❤❤❤❤❤❤❤❤
@javainterviewbuddy567
@javainterviewbuddy567 3 жыл бұрын
😍😍
@mamathay3225
@mamathay3225 Жыл бұрын
Hi sir, I need mock interview for java developer
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
Please connect with me on Instagram , I will share a zoom link
@thevrdesignes707
@thevrdesignes707 Жыл бұрын
Please mentioned the year of experience level as well on video text
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
Okay
@kratos692
@kratos692 2 жыл бұрын
What is on hold means?
@RahulSharma-xd6ot
@RahulSharma-xd6ot 2 жыл бұрын
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.
@TheBehamot
@TheBehamot 10 ай бұрын
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 6 ай бұрын
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 Жыл бұрын
How much is experienced of candidate ??
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
4 years
@tippabatinisantoshkumar2931
@tippabatinisantoshkumar2931 Жыл бұрын
Nice questions and answers.... 😊
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
Glad you liked it
@priyam4826
@priyam4826 2 жыл бұрын
How many rounds were there? And which one was that?
@javainterviewbuddy567
@javainterviewbuddy567 Жыл бұрын
2 technicals
@sagardubey3063
@sagardubey3063 2 жыл бұрын
It was a good interview.i through she got selected
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
Thank you
@NKTechnologyPlus
@NKTechnologyPlus 2 жыл бұрын
Thanks sir👍
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
Most welcome
@havefunmakefun
@havefunmakefun 2 жыл бұрын
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.
@biswabikashparida9691
@biswabikashparida9691 7 ай бұрын
how many years of experience this interview is for
@skiiiTv9571
@skiiiTv9571 3 жыл бұрын
upload more vedios
@javainterviewbuddy567
@javainterviewbuddy567 3 жыл бұрын
sure buddy, working on it.
@rupakdudhe1877
@rupakdudhe1877 6 ай бұрын
I want interview prep pls help
@kraishwary16
@kraishwary16 2 жыл бұрын
Aaaa
@KiranKumar-ud6zz
@KiranKumar-ud6zz 3 жыл бұрын
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 жыл бұрын
@@javainterviewbuddy567 all 4 technical??
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
No, manager round also included
@hardikpatil393
@hardikpatil393 10 ай бұрын
Interviewer got selected 😅
@Manish-py3jc
@Manish-py3jc 2 жыл бұрын
Answer for 0:30 is true and true
@Naveen_Chowdary_dhfm
@Naveen_Chowdary_dhfm 3 жыл бұрын
Very nice... Package?
@javainterviewbuddy567
@javainterviewbuddy567 3 жыл бұрын
10 to 12LPA. Depends on the performance
@corporatechic2742
@corporatechic2742 2 жыл бұрын
How much experience?
@KiranKumar-ud6zz
@KiranKumar-ud6zz 3 жыл бұрын
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.
@MomsDailyCorner
@MomsDailyCorner 3 жыл бұрын
What is the position
@javainterviewbuddy567
@javainterviewbuddy567 3 жыл бұрын
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 жыл бұрын
It was for Bangalore location.
@kavithaB__
@kavithaB__ 3 жыл бұрын
@@javainterviewbuddy567 Can you please tell me, How much we can ask for Technology Analyst with 3.5 yrs of experience?
@arunkumar-se5zw
@arunkumar-se5zw 2 жыл бұрын
she had done well,is she selected?
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
She is on hold and selected later
@ashp474
@ashp474 2 жыл бұрын
Selected?
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
She is on hold and selected later
@sandhyaaa24
@sandhyaaa24 3 жыл бұрын
Experience ???
@javainterviewbuddy567
@javainterviewbuddy567 3 жыл бұрын
4 years.
@tejastipre9787
@tejastipre9787 2 жыл бұрын
Sir she was selected or not?
@javainterviewbuddy567
@javainterviewbuddy567 2 жыл бұрын
Not selected
@salmanpandey8150
@salmanpandey8150 2 ай бұрын
@@javainterviewbuddy567 but i thoguth girls dont get rejected
Watch this!! If you are applying with 2 years of experience.
29:41
JAVA INTERVIEW BUDDY
Рет қаралды 73 М.
لقد سرقت حلوى القطن بشكل خفي لأصنع مصاصة🤫😎
00:33
Cool Tool SHORTS Arabic
Рет қаралды 30 МЛН
ТЫ С ДРУГОМ В ДЕТСТВЕ😂#shorts
01:00
BATEK_OFFICIAL
Рет қаралды 10 МЛН
路飞太过分了,自己游泳。#海贼王#路飞
00:28
路飞与唐舞桐
Рет қаралды 42 МЛН
ROLLING DOWN
00:20
Natan por Aí
Рет қаралды 6 МЛН
TCS | 5+ years experience|  real time java interview series| Interview 10
26:57
JAVA INTERVIEW BUDDY
Рет қаралды 54 М.
One of the toughest INFOSYS interview on 5 years experience
15:27
JAVA INTERVIEW BUDDY
Рет қаралды 5 М.
Selected || Round 1 || Java Microservices TCS Interview Experience
32:11
لقد سرقت حلوى القطن بشكل خفي لأصنع مصاصة🤫😎
00:33
Cool Tool SHORTS Arabic
Рет қаралды 30 МЛН