i love the interviewer, very patient and knowledgeable. The interviewee though is hard headed. I know he is good but he doesn't listen to instructions so it depends on what kind of projects you want to put him. it's always good to listen to the interviewer and comply with the instructions.
Very helpful. The explanations of the candidate were well enough to use this to prepare for a similar job or to learn something about the covered topics.
you are good interviewer, taking interview on selection mode not a rejection mode, most of interviewer pre decided like I will ask question from interviewee those he don't know
I used to pause in between the videos and tried to give the answers and it was very good rehearsal. You were also very patient with the interviewee in moments when he panicked initially. That was really nice. Thank you for the upload.
Although you have asked very easy questions for candidate with 10+ years of exp, yet i would say these are very much practical. You have examined most of the skills needed for anyone to work in actual office environment. I would have added questions related to system design and devops as well... 😊
Because it's not required at those experiences, Even at five years of experience I was barely actively programming mostly guiding, reviewing code and mentoring juniors. Most of the time I was doing maintenance or creating new projects just to delegate to junior devs.
@@saalikkhan7768 Then you should reconsider your company buddy, unless you are in your comfort zone. Ive seen people who have 15+ years of experience and single handedly wrote an entire framework.
For the questions wtih 0 on left and 1 set right here is the best code i think public static void put0OnTheLeft(Integer[] integers) { List integersList = Arrays.asList(integers );
i love the interviewer, very patient and knowledgeable. The interviewee though is hard headed. I know he is good but he doesn't listen to instructions so it depends on what kind of projects you want to put him. it's always good to listen to the interviewer and comply with the instructions.
Very helpful. The explanations of the candidate were well enough to use this to prepare for a similar job or to learn something about the covered topics.
you are good interviewer, taking interview on selection mode not a rejection mode, most of interviewer pre decided like I will ask question from interviewee those he don't know
I used to pause in between the videos and tried to give the answers and it was very good rehearsal. You were also very patient with the interviewee in moments when he panicked initially. That was really nice. Thank you for the upload.
Happy that it helped.
That is a great experience. Please keep them coming
Although you have asked very easy questions for candidate with 10+ years of exp, yet i would say these are very much practical. You have examined most of the skills needed for anyone to work in actual office environment. I would have added questions related to system design and devops as well... 😊
It would be really helpful if you could post more videos like this
Sure 🎉
Thanks for uploading. ❤️
I thought you died
Superb set of questions sir, will you be also sharing a followup session on the system design questions?
Sure Sriram.
It was so so helpful for the job seekers. Superb sir well done. 👏... Thank you so much. I subscribed your Chanel.
This is more powerful assessment
Excellent very helpful sir👌 👌
@Stream nice interview
@Stream2learn i want to learn design and springboot Microservices would you please recommend me some course where i can learn i depth
would you please recommend me where i can learn spring boot amd microservices in depth
Are these actual or mock interviews ?
What do you think ?
I’m guessing these are live interviews. But in the case you are ever doing mock, I would be interested.
And good level of questions .
@@priyakdey7891 You got it right. It is live. I would be glad to help by conducting a mock interview. You can reach out by email.
Awesome knowledge share. But sometime it amazes me a person who is so much technically sound finds hard for a easy level DSA problem.
Because it's not required at those experiences, Even at five years of experience I was barely actively programming mostly guiding, reviewing code and mentoring juniors. Most of the time I was doing maintenance or creating new projects just to delegate to junior devs.
@@saalikkhan7768 Then you should reconsider your company buddy, unless you are in your comfort zone. Ive seen people who have 15+ years of experience and single handedly wrote an entire framework.
@@swarupcodes may be that 15+ years guy didn't have a life LOL
That was not the best way to do the arrangement of zeros and one's so many conversations he is doing
Arrays.stream(integers).sorted().forEach(System.out::print);
He was thinking very complex and strange to me, also stressed :D
Arrays.stream(integers)
.sorted((a, b) -> b - a)
.forEach(System.out::print)
@@tomjosi742 you do not need even to sort via lambda, the natural sort is given by default
@@MindFreeaforLife i know that, but incase you want to reverse from left to right
For the questions wtih 0 on left and 1 set right
here is the best code i think
public static void put0OnTheLeft(Integer[] integers) {
List integersList = Arrays.asList(integers );
integersList.parallelStream().sorted((y,x ) -> x.compareTo(y)).forEach(System.out::println);
}
main table ---> Integer[] entiers = {1,0,0,1,0,1,0,1,0,0,0,1,1,1};
public static void separateZerosAndOnes(Integer[] entiers) {
Arrays.sort(entiers, (a, b) -> a.compareTo(b));
}
Declare two pointers one for zero and other for 1...n swap it at every occurrence.