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