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
@JavaTechies9 ай бұрын
Thanks
@aabhasjain969 ай бұрын
@@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.
@JavaTechies9 ай бұрын
@@aabhasjain96 sure, thank you
@aabhasjain969 ай бұрын
@@JavaTechies also as I can see you got the offer after this. Could you please tell the entire process ?
@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 Жыл бұрын
Thank you so much for your answer, i appreciate 🙏😊
@deepak2all2 жыл бұрын
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); } });
@JavaTechies2 жыл бұрын
Thanks
@ManishTiwari-or8zt2 жыл бұрын
you can use TreeSet and add the element to it, find with treeset.last() method--> will give max result
@ArunraajSingh Жыл бұрын
@@ManishTiwari-or8zt but bro, Treeset stores values in sorted order, here we want is insertion order. right?
@digvijay1228 Жыл бұрын
You could also use Linked list impl of double ended queue
@MrKishorekommula3 жыл бұрын
You have to implement all methods of abstract classs
@garrybal7193 жыл бұрын
Good info.. Candidate seems very good with theoretical questions, however, when it comes to practical/coding/problem solving, seems pretty stuck or confused.
@swarupcodes2 жыл бұрын
The interviewer is such a nice human being. Awesome questions too.
@JavaTechies2 жыл бұрын
Thanks
@suganya88103 жыл бұрын
Awesome mansi .. your way of explaining things is really good... and your videos are very useful
@javaspecialization18322 жыл бұрын
last question is perhaps on Insertion sort, i.e. in-place sorting
@jagadeeshbaskaran48812 жыл бұрын
Please share java coding interview questions for telstra.
@javaspecialization18322 жыл бұрын
Your Interview experience are very helpful mam. I have learned a lot from these interviews. Keep up the good work mam
@JavaTechies2 жыл бұрын
Thank you so much
@punyabikash36247 ай бұрын
Madam you are very good at your answers everything is perfect but this "So Basically" before every answers is headache...😂😂
@JavaTechies7 ай бұрын
Yeah, I improved now
@dips28052 жыл бұрын
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.
@JavaTechies2 жыл бұрын
Thanks, good approach and we will be able to solve it in o(n).
@0brajeshsharma2 жыл бұрын
Exactly
@prajyotlawande1933 жыл бұрын
Great video. Could you please share further rounds with Telstra?
@rohitkumar-vk4fx3 жыл бұрын
Thanks for sharing
@JavaTechies3 жыл бұрын
Thanks for watching!
@vivekanandasuggu42473 жыл бұрын
Thankyou your videos are helping a lot. Subscribed to your channel.
@JavaTechies3 жыл бұрын
Thanks
@shankars42813 жыл бұрын
-355 and 365 answer for question at @37:00. Is that correct ?
@erichuynh68573 жыл бұрын
Too much "basically" and "actually" :). Anyway, good video.
@PrakashPangeni-p6y9 ай бұрын
😂🤣
@mohanbabu24202 жыл бұрын
I c only Masi interview in all the videos ...is she selected or not
@mohanbabu24202 жыл бұрын
For example actually basi8
@gouravrusiya3 жыл бұрын
Were you able to crack this round? Coding problem was easy though, Thanks for sharing 👍
@JavaTechies3 жыл бұрын
Yes, I was selected in this round.
@suchana92 жыл бұрын
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
@JavaTechies2 жыл бұрын
Normal questions like where do you see yourself in 5 years. What are your weakness, strength
@mansimadiratta9693 жыл бұрын
👍👍
@JavaTechies3 жыл бұрын
Thanks
@RealSlimShady-um6gf Жыл бұрын
Interviewer is Manasi. Unless she is a panel looks like a mock interview
@JavaTechies Жыл бұрын
Hahaha
@nitheeshreddy68632 жыл бұрын
i have interview tomorrow can someone tell what would be the process. do they ask coding questions in interview.i am a fresher
@JavaTechies2 жыл бұрын
Yes, expect 1 easy problem
@abirkec3 жыл бұрын
Please provide IBM interview experience also Mansi.
@learningkids.1M2 жыл бұрын
She will record some questions with her knowhow and upload
@gigsz2982 Жыл бұрын
Are you really using Eureka or made that up 😂 helpful interview though
@JavaTechies Жыл бұрын
Thanks
@spiritualyogiyogi61372 жыл бұрын
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 🤔
@JavaTechies2 жыл бұрын
Thanks
@SingerChakra Жыл бұрын
If its like i will get 50 rs for every "basically". I would be an millionaire in one month 😅
@JavaTechies Жыл бұрын
Thanks, hopefully you start getting
@sachinbohra0073 жыл бұрын
Can you please give me details for third round of wissen tech?
@sankeerthpulyala42252 жыл бұрын
How much experience you are holding?
@JavaTechies2 жыл бұрын
5 years
@sachinbohra0073 жыл бұрын
Can you please give me details for third round of wissen tech? I really need to know the reference. Please help
@JavaTechies3 жыл бұрын
You are talking about technical round right, refer to one of my experience with them as technical discussion. kzbin.info/www/bejne/f4i4hp59Z62bgK8
@sachinbohra0073 жыл бұрын
@@JavaTechies But that was round two only. I am done with hacker earth and one technical round. What about the next one?
@JavaTechies3 жыл бұрын
@@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
@sachinbohra0073 жыл бұрын
@@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?
@JavaTechies3 жыл бұрын
@@sachinbohra007 rarely any company HR replies in negative scenario, but I don't hope of positive anymore.
@suchana92 жыл бұрын
I has the same TR for Telstra company
@JavaTechies2 жыл бұрын
Nice, thanks
@miniatureclips76522 жыл бұрын
@@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
@Colourful20102 жыл бұрын
HR will get back to you with details ... 😂😂
@JavaTechies2 жыл бұрын
😂😂
@learningkids.1M2 жыл бұрын
Stupid question.. U asked.. I know u r not selected
@JavaTechies2 жыл бұрын
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.1M2 жыл бұрын
@@JavaTechies u gave interview for backend developer. And u r asking for what role.. Omg.. Then what interview u gave for