L&T java Interview real interview recorded || Java8 spring springboot microservices Oauth

  Рет қаралды 28,997

Java Techies

Java Techies

Күн бұрын

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
#interview
#microservices
#jpmc
#interviewquestions
#technical
#javainterview
#java8
#jpmc
#interviewquestions
#technical
#javainterview
#microservices
#lnt Unisys Round 1 : • Unisys Round 1 Java de... Connect us on :
Telegram: t.me/joinchat/...
Whatsapp: chat.whatsapp....
Facebook: / kumarlbindal

Пікірлер: 92
@procoder2604
@procoder2604 2 жыл бұрын
Worst interviewer I have ever heard of...No interviewer laughs at the answers of the interviewee...Also, this GENIUS himself does not have in-depth knowledge of what he is asking... Seriously... how L&T is hiring these guys and also allowing them to take interviews ??? ...
@dhivyadelphina2293
@dhivyadelphina2293 3 жыл бұрын
Optional class helps to avoid null pointer exception in java 1.8
@manishsakariya4595
@manishsakariya4595 2 жыл бұрын
String s=null; s.equals("foobar"); this will compile but you will get runtime null pointer exception. may be use optional!
@satyanarayanasheelam7014
@satyanarayanasheelam7014 2 жыл бұрын
No need to think much and no need to use any higher version's features of java to avoid NPE. Just simply use a logic like this "foobar".equals(s). It solves.
@mgowtham3440
@mgowtham3440 3 жыл бұрын
Concurrent synchronised hashmap 😂 Really..Interviewer tries to show off but most of the time he himself not clear about the concepts.
@shankars4281
@shankars4281 2 жыл бұрын
@32:30 Concurrent synchronized hashmap?! Looks like Interviewer created a new data structure during interview!
@amitattrash
@amitattrash 3 жыл бұрын
/*Code Snippet - 2 with Solution(Based on what i heard in the video - Admin Can confirm)*/ public class NullEqualityDemo { public static void main(String[] args) { String text = null; Object obj = null; if(text==obj) { System.out.println("equal"); }else { System.out.println("Not equal"); } } } Output: equal
@amitattrash
@amitattrash 3 жыл бұрын
/*Code Snippet 1 - Solution(based on what I heard in the video- Admin can confirm on this )*/ import java.util.Optional; public class NullCheckDemo { public static void main(String[] args) { String text =null; // using constant to invoke equals method if("hello".equals(text)) { System.out.println("hello"); } // using null check if(text != null && "hello".equals(text)) { System.out.println("hello"); } // Using Optional Optional textOptional =Optional.ofNullable(text); if("hello".equals(textOptional.orElse(null))) { System.out.println("hello"); } // alternative using Optional textOptional.ifPresent(str -> { if ("hello".equals(str)) { System.out.println("hello"); } }); } }
@abiramikesavaraman7277
@abiramikesavaraman7277 3 жыл бұрын
It will be good if u r able to capture ur screen also 👍
@manishsakariya4595
@manishsakariya4595 2 жыл бұрын
I think datastructure and algorithms is the way to check someones logical ability. frameworks can be learned easily in 4-5 days.
@JavaTechies
@JavaTechies 2 жыл бұрын
True, but I haven't used graph in any of my professional project
@ILuvBilli
@ILuvBilli 2 жыл бұрын
U can learn springboot framework in 5 days??
@solorankerone
@solorankerone 2 жыл бұрын
@@ILuvBilli lol he can it seems 😹
@solorankerone
@solorankerone 2 жыл бұрын
May be some basic security + simple rest api flow with jpa.
@shankars4281
@shankars4281 2 жыл бұрын
@@ILuvBilli Yes, provided one is a Rajanikanth!
@sumitrashmi4500
@sumitrashmi4500 3 жыл бұрын
rest can be written in jax-rs,restlet,resteasy and all
@DurgaShiva7574
@DurgaShiva7574 2 жыл бұрын
thankyou for the vide, but it could had been of more help if we could see what they are typing, or code could be added during video editing
@nikhilm4290
@nikhilm4290 3 жыл бұрын
Interviewers in USA are very cool!
@techguru6385
@techguru6385 3 жыл бұрын
I heard her voice in so many interviews
@kasiyedumati9423
@kasiyedumati9423 3 жыл бұрын
Will u be able to share code snippets they have in given in interview, please
@sushiltiwari274
@sushiltiwari274 2 жыл бұрын
Basically he was asking regarding equals method you were correct regarding null pointer exception but still you can run that code reversing that code
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@pste22
@pste22 3 жыл бұрын
you did not share the code snippet that was asked, esp the map problem that he asked. can you plz ?
@abhilashpatel6852
@abhilashpatel6852 Жыл бұрын
The intro you gave was good.
@JavaTechies
@JavaTechies Жыл бұрын
Thanks
@harinimuthu8559
@harinimuthu8559 2 жыл бұрын
I'm counting your basically and actually
@JavaTechies
@JavaTechies 2 жыл бұрын
😀
@raja812com
@raja812com 3 жыл бұрын
Simply u need to add if(s!=null) then s.method()
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@Silly_My_name
@Silly_My_name 2 ай бұрын
not good, What if s2 is null?? better approach is, don't use null.equals() as null is not an abject so it will give NPE. equals() belongs to object method Thats what question is all about.
@AlivHasan
@AlivHasan 3 жыл бұрын
I think the guy is being rude, from Chennai 😂 !!! *pun intended
@karamjitsinghsehdev3451
@karamjitsinghsehdev3451 3 жыл бұрын
Bit difficult to understand without looking at the given problem.
@nenuanenenuane6645
@nenuanenenuane6645 9 ай бұрын
Plz start interview series again
@JavaTechies
@JavaTechies 9 ай бұрын
Yeah, planning to start
@shivendramohanraina6194
@shivendramohanraina6194 Жыл бұрын
please suggest some realtime interview of java 8 microservices springboot including aws and kafka
@JavaTechies
@JavaTechies Жыл бұрын
Sure, will create one soon
@sumitrashmi4500
@sumitrashmi4500 3 жыл бұрын
outh2 we will use clientid and client secret
@lazyjavaprogrammer614
@lazyjavaprogrammer614 2 жыл бұрын
Optional Class is the collection with only 1 entry in that and can used with streams API along with handling of NPE.
@sonalimahajan7827
@sonalimahajan7827 2 жыл бұрын
Interviewer was so so so rude to you..seems like he was definitely from chennai :(
@atulchauhan4439
@atulchauhan4439 2 жыл бұрын
Yes looks so 😄
@amitattrash
@amitattrash 3 жыл бұрын
/*Code Snippet -3 with Solution (Based on what i heard in the video- Admin can confirm)*/ import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.function.Function; import java.util.stream.Collectors; public class NumberCountDemo { public static void main(String[] args) { //Count the number of occurence of each element List numberList = Arrays.asList(1,2,3,4,5,3,4,2,1,5,2,3,4,5); //using Streams Map numberCountMap = numberList.parallelStream().collect(Collectors.groupingBy(Function.identity(),Collectors.counting())); System.out.println(numberCountMap); //using structured approach Map elementCountMap = new HashMap(); for(int num : numberList) { if(elementCountMap.get(num) == null) { elementCountMap.put(num, 1); }else { int count = elementCountMap.get(num); elementCountMap.put(num, count+1); } } System.out.println(elementCountMap); } } Output: {1=2, 2=3, 3=3, 4=3, 5=3} {1=2, 2=3, 3=3, 4=3, 5=3}
@rexsam3134
@rexsam3134 2 жыл бұрын
For a small collection data why did you choose parallelStream
@grimsri3782
@grimsri3782 2 жыл бұрын
Stream approach to doing this for more than 10L data is taking 12min but the hashmap approach resulting in 7-8min always for me.
@souvaniksaha
@souvaniksaha 5 ай бұрын
Great solution but still it got space complexcity of O(c)
@amitattrash
@amitattrash 3 жыл бұрын
Thanks for sharing your experience. It was really helpful :)
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks 👍
@gunjanshrivastava8372
@gunjanshrivastava8372 3 жыл бұрын
Do you recall code snippets?
@UTUBDZ
@UTUBDZ 2 жыл бұрын
Can you share those snippets ?
@arjunbenure4847
@arjunbenure4847 3 жыл бұрын
2 types of JAX-RS Restfulwebservice and jersey
@rexsam3134
@rexsam3134 2 жыл бұрын
Jax rs is Restful
@javedutube10
@javedutube10 3 жыл бұрын
Actually ..Basically...you are cute :)....bravo girl......Keep it up.
@asishkumarsatapathy3466
@asishkumarsatapathy3466 2 жыл бұрын
I guess this interviewer needs to chill a little bit. Looks like he is having a little bit of God Complexity.
@aditipai7289
@aditipai7289 2 жыл бұрын
He was mean. He will definitely be a difficult boss to work with
@pavanch3228
@pavanch3228 2 жыл бұрын
Interviewers has to change the mind set while doing the interviews if possible help the candidates and explain the things some interviewers doesn't know what question they are asking...
@JavaTechies
@JavaTechies 2 жыл бұрын
True
@JavaTechies
@JavaTechies 2 жыл бұрын
Conducting an interview also needs training.
@rexsam3134
@rexsam3134 2 жыл бұрын
Not necessarily if there are candidates are lined up. 30 min is a very short time
@happyplease4093
@happyplease4093 2 жыл бұрын
I can only hear actually n basically 🤣🤣
@Mee44162
@Mee44162 3 жыл бұрын
can u show the code part the interviewer asking
@arunkumarsanthanam8696
@arunkumarsanthanam8696 3 жыл бұрын
Is null pointer exception is compile time? 😕 11:30 15:00 oh Mad
@sethuramanramaiah1132
@sethuramanramaiah1132 3 жыл бұрын
Null pointer is run time exception..compiler has nothing to do with run time exception..I think interviewer is confused af..pity the interviewe here
@whopradeep
@whopradeep 2 жыл бұрын
@@sethuramanramaiah1132 no actually the candidate was confused in the beginning she said it will be compile time error then she changed her answer to runtime exception
@surajmahato2557
@surajmahato2557 2 жыл бұрын
Interviewer tried to trap her in his question and she got trapped
@9675A
@9675A 3 жыл бұрын
Interviewer is rude.. hard to work with such people..
@JavaTechies
@JavaTechies 3 жыл бұрын
Yes
@jeebanpradhan8050
@jeebanpradhan8050 2 жыл бұрын
Plz activate subtitles
@sumitrashmi4500
@sumitrashmi4500 3 жыл бұрын
Spring Rest
@TauseefAmeen121
@TauseefAmeen121 3 жыл бұрын
Too much basically in answer 😜😜
@sandeepikaenagaluru8462
@sandeepikaenagaluru8462 3 жыл бұрын
Interviewer is so rude.. huhhh:)
@subir456
@subir456 3 жыл бұрын
The interviewer was damn rude!
@lipikatia
@lipikatia 3 жыл бұрын
Yess he was too rude to handle
@jeevithatd9221
@jeevithatd9221 3 жыл бұрын
Can you share the code snippets
@JavaTechies
@JavaTechies 3 жыл бұрын
I don't have these right now. I ll hear the video again tomorrow and try to recall and then I ll provide.
@sivakumar-e6r
@sivakumar-e6r 11 ай бұрын
He does not know about all concepts and i think he never worked on what he is asking questions.
@JavaTechies
@JavaTechies 10 ай бұрын
Yes, that is fine.
@saidurgasrividyaupadhyayul4675
@saidurgasrividyaupadhyayul4675 Жыл бұрын
what are reactive extensions?
@JavaTechies
@JavaTechies Жыл бұрын
not sure of reactive extensions.
@swatibabar7860
@swatibabar7860 3 жыл бұрын
Selected in L and T ?
@JavaTechies
@JavaTechies 3 жыл бұрын
@swati Babar, no I didn't get selected in this round
@Koustavrocks
@Koustavrocks 2 жыл бұрын
why he has to be so rude
@seekhjava
@seekhjava 2 жыл бұрын
its JAXRS 🤣
@mandeepsharma8305
@mandeepsharma8305 3 жыл бұрын
I think Interviewer was a beginner. He need to work on his skill.
@JavaTechies
@JavaTechies 3 жыл бұрын
Yo
@rajatgupta1661
@rajatgupta1661 3 жыл бұрын
yeah...He is trying to be oversmart and speaking on top of candidate before she could even complete her thought...Just hate these type of idiots...he himself will fail miserably in any quality distributed interview.
@Arrbee2016
@Arrbee2016 3 жыл бұрын
rude af interviewer
@naraharimounika3306
@naraharimounika3306 3 жыл бұрын
Too much humiliation 🙄
@JavaTechies
@JavaTechies 3 жыл бұрын
It happens
@mohammedrahamathulla4040
@mohammedrahamathulla4040 3 жыл бұрын
Attitude of the interviewer wasn't ethical. Show-off from him. Really bad 👎😡
From Small To Giant Pop Corn #katebrush #funny #shorts
00:17
Kate Brush
Рет қаралды 69 МЛН
Which One Is The Best - From Small To Giant #katebrush #shorts
00:17
Electric Flying Bird with Hanging Wire Automatic for Ceiling Parrot
00:15
when you have plan B 😂
00:11
Andrey Grechka
Рет қаралды 66 МЛН
Altimetrik L2-Java8,SpringBoot,MicroService Interview question
14:00
Citibank | REAL TIME INTERVIEW EXPERIENCE | Java Developer |Citi Corp
22:31
From Small To Giant Pop Corn #katebrush #funny #shorts
00:17
Kate Brush
Рет қаралды 69 МЛН