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

  Рет қаралды 30,901

Java Techies

Java Techies

Күн бұрын

Пікірлер: 74
@aabhasjain96
@aabhasjain96 9 ай бұрын
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 9 ай бұрын
Thanks
@aabhasjain96
@aabhasjain96 9 ай бұрын
@@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 9 ай бұрын
@@aabhasjain96 sure, thank you
@aabhasjain96
@aabhasjain96 9 ай бұрын
@@JavaTechies also as I can see you got the offer after this. Could you please tell the entire process ?
@balajiThiyagarajan21
@balajiThiyagarajan21 Жыл бұрын
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 🙏😊
@deepak2all
@deepak2all 2 жыл бұрын
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 жыл бұрын
Thanks
@ManishTiwari-or8zt
@ManishTiwari-or8zt 2 жыл бұрын
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
@MrKishorekommula
@MrKishorekommula 3 жыл бұрын
You have to implement all methods of abstract classs
@garrybal719
@garrybal719 3 жыл бұрын
Good info.. Candidate seems very good with theoretical questions, however, when it comes to practical/coding/problem solving, seems pretty stuck or confused.
@swarupcodes
@swarupcodes 2 жыл бұрын
The interviewer is such a nice human being. Awesome questions too.
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@suganya8810
@suganya8810 3 жыл бұрын
Awesome mansi .. your way of explaining things is really good... and your videos are very useful
@javaspecialization1832
@javaspecialization1832 2 жыл бұрын
last question is perhaps on Insertion sort, i.e. in-place sorting
@jagadeeshbaskaran4881
@jagadeeshbaskaran4881 2 жыл бұрын
Please share java coding interview questions for telstra.
@javaspecialization1832
@javaspecialization1832 2 жыл бұрын
Your Interview experience are very helpful mam. I have learned a lot from these interviews. Keep up the good work mam
@JavaTechies
@JavaTechies 2 жыл бұрын
Thank you so much
@punyabikash3624
@punyabikash3624 7 ай бұрын
Madam you are very good at your answers everything is perfect but this "So Basically" before every answers is headache...😂😂
@JavaTechies
@JavaTechies 7 ай бұрын
Yeah, I improved now
@dips2805
@dips2805 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
@prajyotlawande193
@prajyotlawande193 3 жыл бұрын
Great video. Could you please share further rounds with Telstra?
@rohitkumar-vk4fx
@rohitkumar-vk4fx 3 жыл бұрын
Thanks for sharing
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks for watching!
@vivekanandasuggu4247
@vivekanandasuggu4247 3 жыл бұрын
Thankyou your videos are helping a lot. Subscribed to your channel.
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@shankars4281
@shankars4281 3 жыл бұрын
-355 and 365 answer for question at @37:00. Is that correct ?
@erichuynh6857
@erichuynh6857 3 жыл бұрын
Too much "basically" and "actually" :). Anyway, good video.
@PrakashPangeni-p6y
@PrakashPangeni-p6y 9 ай бұрын
😂🤣
@mohanbabu2420
@mohanbabu2420 2 жыл бұрын
I c only Masi interview in all the videos ...is she selected or not
@mohanbabu2420
@mohanbabu2420 2 жыл бұрын
For example actually basi8
@gouravrusiya
@gouravrusiya 3 жыл бұрын
Were you able to crack this round? Coding problem was easy though, Thanks for sharing 👍
@JavaTechies
@JavaTechies 3 жыл бұрын
Yes, I was selected in this round.
@suchana9
@suchana9 2 жыл бұрын
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
@mansimadiratta969
@mansimadiratta969 3 жыл бұрын
👍👍
@JavaTechies
@JavaTechies 3 жыл бұрын
Thanks
@RealSlimShady-um6gf
@RealSlimShady-um6gf Жыл бұрын
Interviewer is Manasi. Unless she is a panel looks like a mock interview
@JavaTechies
@JavaTechies Жыл бұрын
Hahaha
@nitheeshreddy6863
@nitheeshreddy6863 2 жыл бұрын
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
@abirkec
@abirkec 3 жыл бұрын
Please provide IBM interview experience also Mansi.
@learningkids.1M
@learningkids.1M 2 жыл бұрын
She will record some questions with her knowhow and upload
@gigsz2982
@gigsz2982 Жыл бұрын
Are you really using Eureka or made that up 😂 helpful interview though
@JavaTechies
@JavaTechies Жыл бұрын
Thanks
@spiritualyogiyogi6137
@spiritualyogiyogi6137 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 🤔
@JavaTechies
@JavaTechies 2 жыл бұрын
Thanks
@SingerChakra
@SingerChakra Жыл бұрын
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
@sachinbohra007
@sachinbohra007 3 жыл бұрын
Can you please give me details for third round of wissen tech?
@sankeerthpulyala4225
@sankeerthpulyala4225 2 жыл бұрын
How much experience you are holding?
@JavaTechies
@JavaTechies 2 жыл бұрын
5 years
@sachinbohra007
@sachinbohra007 3 жыл бұрын
Can you please give me details for third round of wissen tech? I really need to know the reference. Please help
@JavaTechies
@JavaTechies 3 жыл бұрын
You are talking about technical round right, refer to one of my experience with them as technical discussion. kzbin.info/www/bejne/f4i4hp59Z62bgK8
@sachinbohra007
@sachinbohra007 3 жыл бұрын
@@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 жыл бұрын
@@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.
@suchana9
@suchana9 2 жыл бұрын
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 жыл бұрын
HR will get back to you with details ... 😂😂
@JavaTechies
@JavaTechies 2 жыл бұрын
😂😂
@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 жыл бұрын
@@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 жыл бұрын
Wrong answer string buffer vs bilder
@dac5961
@dac5961 3 жыл бұрын
She is right. Do not mislead people.
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,7 МЛН
How Strong is Tin Foil? 💪
00:25
Brianna
Рет қаралды 70 МЛН
За кого болели?😂
00:18
МЯТНАЯ ФАНТА
Рет қаралды 1,8 МЛН
Cognizant | real time java interview series| Interview 15 | part 1
21:33
JAVA INTERVIEW BUDDY
Рет қаралды 66 М.
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,7 МЛН