I really like the pwc guy, he was indeed knowledgeable and he was not arrogant. He kept saying "interesting" whenever you said/explained something wrong. In depth knowledge is very much needed to do a job properly.
@@BsiennKhan Cause you were answering very wrongly to the questions asked. My Suggestion to you will be that i have also watched your recent video too and i felt that some of the answers provided did not address the questions effectively. It might be helpful to ensure that your responses are more aligned with the specific points raised. Clear and relevant answers will make the discussion more productive for everyone involved.
@@pawansapkota3970 Bro, stop lecturing people on how to do interviews. It's a cognitive process where people learn only after making mistakes. I don't understand why you're acting like the organization will hire him by mistake if his domain knowledge isn't up to par. It's like saying none of you have ever gotten overwhelmed in an interview.
PWC interviewer has 21 years of experience, it's crucial to provide specific, well-thought-out answers. If the interviewer says "interesting," it often means the response isn't aligning with their expectations.
As a DevOps Team Lead all I can suggest is Learning anything like Route53, EKS and all are just Tool Set. But at the end of the day Coding plays a vital role when Automating Stuffs so no matter how well you prepare other stuffs please also do prepare DSA. DevOps Language of choices are Python and Shell.
For those who are thinking that the interviewer is old having 21 years of experience, you can pause at 18:00 and you'll get your answer, he's a 21 year old boy as mentioned in the title having in-depth knowledge of devOps.
NEVER SHOW OFF WHILE GIVING YOUR INTRODUCTION, It should be crisp and simple very high level. Second, never go fast in responding to the questions, slow the pace down. Be A good listener and wait for other complete the statement . Be very specific with the answers .
Bro, way to go. I was blown away by the responses and questions asked . Amazing 🤩 Would love to know your job application strategy and request you to make a video for same. Thanks ❤
I have gone through your interview and I need a help as I am also staying in BTM layout and can you help in the scenario based questions they asked in interviews.
bro you are over explaning things and making simple things seems to be complicated. Calm down and explain slowely and simply. Interviewer is asking one thing and you are going out of topic.
It's annoying that the first technical question he asked you was programming algorithms (sorting, eliminating duplicates). I really feel that they need to stop asking developer-style DSA questions in DevOps interviews. Then he asks you another algorithm question! :D
Bro, please don't listen to anyone who try to demotivate you here because you are really doing great! In fact, they themselves can't do anything other than to give free advise to people. It's like watching a cricket match and finding the faults of cricketers but they don't have any slightest idea in sometimes how hot environments they play outside.
He s very good..but he needs to slow down the pace..and avoid unnecessary explanation...but he has good knowledge and communication skills..@@CarponeJr.
Your answer could be very simple for that python question For ascending- Sort the array using sort method and then using set you can remove the duplicate value
I agree this is the quickest way. But the interviewer was actually asking for the algorithm. There are well known sort algorithms. And I guess removing dupes after sorting is fairly straightforward (compare each element with the previous one and delete if the same).
Hey Ashiq you did well actually but here is some add ons for you..I observed that the interviewer were asking questions on arrays.. I don’t know about DevOps literally and also don’t know whether these kind of questions are required or not for a DevOps interview. But lets take it as general. What the interviewer wants to know is like how good you are at basics. Often at situations like this we tend to confuse with data types. So lists and arrays are different like arrays store homogeneous data, whereas list stores heterogeneous data. Even interviewer noticed your response in between. These are the minute things they will observe us. For this question sorting first and remove duplicate next will be the optimal solution. And for algorithms we can say like quick sort or any other faster algorithms based on BigO. If it is an SDE interview these are very important..
sorting an array or any logic in the end all we need to do is solve a problem. Not everyone knows solution for every problem, it takes less than 5 mins to get the logical solution from ai tools. So i guess all that matters in the end is knowing how to find answer to a question
That's not how it works. If that were the solution, companies wouldn't be hiring. They would just be buying up GPUs no? You can look up a command, but you need to know context for it.
first, you need to be a good listener. Listen the interviewer carefully, understand their question, after that only reply back. Never interrupt interviewer when they are speaking, let them finish.
Humble suggestion: Need to improve your communication. Lot of unnecessary words, and wrong sentence construction used. Examples: 4:25 First we need to make it order -> First we need to order it It takes courage to subject yourself to criticism like this. So kudos for that! Now about the interviewer: It is stupid of the interviewer to ask DSA questions in Devops interview. It is a disease in the industry. 21 years old needs to be more humble "Let's see how much you have learnt" is rude - even if he was 40 years old its rude, you are not a school teacher talking to a kid to speak like that. 28:00 Init container will also need credential to access Vault, where will it come from? The right answer here, which even the interviewer will not agree is - RBAC. Only the admin and the vault operator will have access to the main secret. If your admin is exposed or the operator is compromised, the security is compromised. Another option in case of Vault is it has this thing called something like "unlocking the vault" which can be done using multiple keys - Say you have 5 keys distributed among 5 people, to unlock the vault you need any 3 people to authenticate with their key. After that the vault is unlocked in memory. When the vault process dies, the unlocked state is lost and the vault is in locked state on next startup. So you can have a UI on top of this vault mechanism that will require 3 people to enter their keys (without sharing them with anyone) and after cluster boot up, these people have to individually enter their keys.
thanks for posting these interviews, quite informative around what exactly the interviewer asks usually.... btw around 7:00 minute mark the interviewer is looking for the "cut command" which can help separate fields in the file like u can pass do `cut -d ":" -f 2`
@@rakeshchowdhury202for this taking last field after : there is one trick we can use..... Reverse the string then cut the till first : then reverse again, I went through similar question later on and found this method helpful
he just wanted to know what algorithm like mergesort or quicksort, and after sorting its very easy to remove duplicates as all the duplicates are sticked together
Well he is asking because the candidate is saying that he forgot Java and knows python and shell scripting very well. Also the candidate was just blabbering without giving a proper answer, also note he's saying he knows shell scripting then back tracking with how he just started learning it. 😂
I think you spoke very confidently. The interviewer has his fundamental programming in a jumble. You said you’re more confident in python. He asks you the classic leetcode question “Ckntains Duplicates”, you then proceed to suggest tuple snd reference a list. He said he’s not referring to a list but an Array… in python an array is known as a list so that shows the gap in his breadth of languages. Overall, I think you spoke confidently but a little too much. True Understanding is making complex topics sound simple. There are clear gaps in both your knowledge. A lesson for both interviewer and interviewer.
I will say what i know. Array is called a basic data structure, one of the best feature of it is you can access the element in single instruction which means O(1). You cant append or insert into an array without shifting the elements. And there is also a data structure called linked list. By which you can easily insert elements. Python being such a high level language default gives us a data structure like list very easily. But i don’t know how list is implemented in python but in C it can be implemented through using pointers. Even in python array is there.
So what i am saying is there is a difference between the array that the interviewer is referring to and the list in python. Please google it yourself about how list is implemented in python you would be surprised. All the best for your future.
00:03 21-year-old DevOps interviewer sharing experience and skills 02:04 Creating a new cluster and meeting prerequisites 06:04 Utilizing SD command stream editor and awk in DevOps 08:07 Syntax and deployment in Docker file 11:51 Exposing and publishing ports in Docker 14:00 Using volumes in Docker for persistent storage 17:56 Node distribution and Jenkins configuration 19:44 Understanding Cube config file and access permissions 23:39 Storing sensitive information securely in config map and secrets management 25:28 Discussion on accessing secrets stored in HashiCorp Vault 29:00 Explanation of persistent volume in Kubernetes 31:10 Candidate has 3 years of experience in DevOps with expertise in AWS, Azure, Docker, Kubernetes. 36:49 Explaining career gap and relocation flexibility 38:47 Struggled with answering DevOps questions during interviews 42:24 Planning to continue career in job rather than joining family business 44:25 Discussion about next interview round and salary expectations. Crafted by Merlin AI.
Interviewer : what is clean bowed in cricket ? Ans : basically clean bowed is one of the best types of wicket taken by the bowler .which clearly shows bats man is out no need to wait till umpire decision or he raised his finger for out.actually country like cricket is most famous game everybody know about clean bolwed.Sachin is god of cricket he also got multiple time clean bolwed in his hole career.also I like to highlight as earlier I told u in Indian cricket team we have many bolwer s like bumra and other s are taking multiple wickets by hitting clean bowled.in simple word I would say it is nothing but wicket taken by bowler .
hey, I think this is super unethical to record the video of an interview especially without the consent from the company and interviewer. I see a high moral value missing here, interview is supposed to be professional and act like one. Recording audio/video without the consent is unfortunately not considered to be professional. This is totally acceptable if its a mock interview otherwise a big no no. I have conducted many a interviews in my career, I feel a bit pity for the interviewers 🥲
After listening all the questions, it seems like the guys giving interview has very basic to no knowledge(all theoretical knowledge) as all questions were very basic and anyone who is working on real projects can easily answer all of them.
Why you need to switch to deploy both answer add up to 80% only. There is a --context which can be used with any command. Its basically work like a profile. th-cam.com/video/VKXIH_eJHgM/w-d-xo.html
Man, I feel you need to seek help of a few mock interviewers, who can provide you detailed feedback. But in general, your style of answering is very confusing and it’s clear you don’t know much but talk a lot. Would really encourage you to get some interviewing prep. help from your friends/mentors/mock interviewers.
I really like the pwc guy, he was indeed knowledgeable and he was not arrogant. He kept saying "interesting" whenever you said/explained something wrong. In depth knowledge is very much needed to do a job properly.
Interesting, on almost every response, haha
@@BsiennKhan Cause you were answering very wrongly to the questions asked. My Suggestion to you will be that i have also watched your recent video too and i felt that some of the answers provided did not address the questions effectively. It might be helpful to ensure that your responses are more aligned with the specific points raised. Clear and relevant answers will make the discussion more productive for everyone involved.
@@pawansapkota3970 Bro, stop lecturing people on how to do interviews. It's a cognitive process where people learn only after making mistakes. I don't understand why you're acting like the organization will hire him by mistake if his domain knowledge isn't up to par. It's like saying none of you have ever gotten overwhelmed in an interview.
Questions asked are really good.
Wow amazing video content
It's great
PWC interviewer has 21 years of experience, it's crucial to provide specific, well-thought-out answers. If the interviewer says "interesting," it often means the response isn't aligning with their expectations.
Does he have 21 years of experience or is he of age 21 years?
@@snehanshuphukon728 same doubt i have.. the way he called him sir.. i think 21 YOE only
@@saikumarp198 no he is 21 year old , my friend nandigam abhishek
@@tanmayia4412 ohh really?
As a DevOps Team Lead all I can suggest is Learning anything like Route53, EKS and all are just Tool Set. But at the end of the day Coding plays a vital role when Automating Stuffs so no matter how well you prepare other stuffs please also do prepare DSA. DevOps Language of choices are Python and Shell.
@@anuragduttachowdhury9440 😍😍
1 SSO 16:35
2 Persistent Volume & Docker Volume
28:41
For those who are thinking that the interviewer is old having 21 years of experience, you can pause at 18:00 and you'll get your answer, he's a 21 year old boy as mentioned in the title having in-depth knowledge of devOps.
NEVER SHOW OFF WHILE GIVING YOUR INTRODUCTION, It should be crisp and simple very high level.
Second, never go fast in responding to the questions, slow the pace down. Be A good listener and wait for other complete the statement .
Be very specific with the answers .
🙌
Keep making these videos bro. so precious knowledgeable vids
Yes sure
Need more videos like this
Yes bro, interview dete raho, or video dalte raho..
😃
"Actually", "Basically", "It is nothing but"
Great interview
This guy on fire with confidence and subject knowledge...🎉🎉😊
👍👍👍🙌
You are brave to post these online and help others learn 👍
The way of ur explanation is really impressed
Thank you somuch
You are not giving up, keep it up bro
Bro, way to go. I was blown away by the responses and questions asked . Amazing 🤩
Would love to know your job application strategy and request you to make a video for same.
Thanks ❤
I have gone through your interview and I need a help as I am also staying in BTM layout and can you help in the scenario based questions they asked in interviews.
bro you are over explaning things and making simple things seems to be complicated. Calm down and explain slowely and simply. Interviewer is asking one thing and you are going out of topic.
confidence mai raho raat bhar , answer na aata ho jhat bhar, seriously man is this a way you are answering to 21 year experience devops person
😝
StorageClass will have the reclaim policy specified in the reclaimPolicy field of the class, which can be either Delete or Retain
👍👍
Good interviewer
If i dont know , then i don't know. It doesn't matter, if i have learnt it 5 years ago 😊
interesting ..🙂..Thanks a lot
lol I hope he got that you meant in this comment
It's annoying that the first technical question he asked you was programming algorithms (sorting, eliminating duplicates). I really feel that they need to stop asking developer-style DSA questions in DevOps interviews. Then he asks you another algorithm question! :D
😍😍
Expose is used just for readability of the viewers, nothing to do with "exposed ports" !
👌👌
You’re great bro. Better than me, and I have a lot more years on you. Great work.
😍😍
The perfect answer for the question convert array to set and convert back to array and sort it .
Sort and remove duplicates. Why use extra space like a set..
@@samannwaysil4412 when you convert it into set it will remove all the duplicates
Sort first and then remove duplicates.
ultimate learned a lot thanks bro
42:00 Is it the house maid of the CEO who's asking these questions...!
Excellent bro.... very helpful for me.
Bro, please don't listen to anyone who try to demotivate you here because you are really doing great! In fact, they themselves can't do anything other than to give free advise to people. It's like watching a cricket match and finding the faults of cricketers but they don't have any slightest idea in sometimes how hot environments they play outside.
👍👍😬
u have your own opinion, they have their own
@@shankargowdakoti8689 opinions are good but not unsolicited ones.
He s very good..but he needs to slow down the pace..and avoid unnecessary explanation...but he has good knowledge and communication skills..@@CarponeJr.
@shankargowdakoti8689 yes but he did not ask for free advise from you.
Your answer could be very simple for that python question
For ascending- Sort the array using sort method and then using set you can remove the duplicate value
🙂🙂
I agree this is the quickest way. But the interviewer was actually asking for the algorithm. There are well known sort algorithms. And I guess removing dupes after sorting is fairly straightforward (compare each element with the previous one and delete if the same).
@@jamessmith1652 yes, that time I was unaware about these concepts
Hey Ashiq you did well actually but here is some add ons for you..I observed that the interviewer were asking questions on arrays.. I don’t know about DevOps literally and also don’t know whether these kind of questions are required or not for a DevOps interview. But lets take it as general. What the interviewer wants to know is like how good you are at basics. Often at situations like this we tend to confuse with data types. So lists and arrays are different like arrays store homogeneous data, whereas list stores heterogeneous data. Even interviewer noticed your response in between. These are the minute things they will observe us. For this question sorting first and remove duplicate next will be the optimal solution. And for algorithms we can say like quick sort or any other faster algorithms based on BigO. If it is an SDE interview these are very important..
Thanks 🙏 for your advice
sorting an array or any logic in the end all we need to do is solve a problem. Not everyone knows solution for every problem, it takes less than 5 mins to get the logical solution from ai tools. So i guess all that matters in the end is knowing how to find answer to a question
By that logic, you can be President of the United States
That's not how it works. If that were the solution, companies wouldn't be hiring. They would just be buying up GPUs no? You can look up a command, but you need to know context for it.
@@guardrover You don't know how things work in corporate...
first, you need to be a good listener. Listen the interviewer carefully, understand their question, after that only reply back. Never interrupt interviewer when they are speaking, let them finish.
Sure buddy
Humble suggestion: Need to improve your communication. Lot of unnecessary words, and wrong sentence construction used.
Examples:
4:25 First we need to make it order -> First we need to order it
It takes courage to subject yourself to criticism like this. So kudos for that!
Now about the interviewer:
It is stupid of the interviewer to ask DSA questions in Devops interview. It is a disease in the industry.
21 years old needs to be more humble "Let's see how much you have learnt" is rude - even if he was 40 years old its rude, you are not a school teacher talking to a kid to speak like that.
28:00 Init container will also need credential to access Vault, where will it come from? The right answer here, which even the interviewer will not agree is - RBAC. Only the admin and the vault operator will have access to the main secret. If your admin is exposed or the operator is compromised, the security is compromised. Another option in case of Vault is it has this thing called something like "unlocking the vault" which can be done using multiple keys - Say you have 5 keys distributed among 5 people, to unlock the vault you need any 3 people to authenticate with their key. After that the vault is unlocked in memory. When the vault process dies, the unlocked state is lost and the vault is in locked state on next startup. So you can have a UI on top of this vault mechanism that will require 3 people to enter their keys (without sharing them with anyone) and after cluster boot up, these people have to individually enter their keys.
👌👌👌😎
"Padich irangumbol kanunna oru avesham pole enik thonunnu. 🙃"
🤗
thanks for posting these interviews, quite informative around what exactly the interviewer asks usually.... btw around 7:00 minute mark the interviewer is looking for the "cut command" which can help separate fields in the file like u can pass do `cut -d ":" -f 2`
👍👍
Regex. Cut won't work in case he specifies. Two : will require counting
@@rakeshchowdhury202for this taking last field after : there is one trick we can use..... Reverse the string then cut the till first : then reverse again, I went through similar question later on and found this method helpful
@@demigod-ey3in I mean why go that route when you can use a greedy match with : then match digit?
Iam intrested to join when the new batch starts
The interview quite good man. How you get the calls
Main source from naukari
As well as from my expereince , don't ask for feedback from the interviewer.. when they asks do you have any question for me ?
for the bash questions awk with regex was the answer he was looking for imo
this was tough indeed
I would've hired this guy
👍
he just wanted to know what algorithm like mergesort or quicksort, and after sorting its very easy to remove duplicates as all the duplicates are sticked together
7:30 Not a Devop guy, I think he wanted to hear you say regex. You need to use a regex string to parse the digits
In devops- AWS interview, y is he asking abt python shell scripting
In python array and list are same😑
😬
Well he is asking because the candidate is saying that he forgot Java and knows python and shell scripting very well.
Also the candidate was just blabbering without giving a proper answer, also note he's saying he knows shell scripting then back tracking with how he just started learning it. 😂
Becasue the candidate tried show off that in the very beginning in the interview. It just got highlighted.
brother I am not good at interview but i still suggest that you should speak a little bit slower and more clearly and not interrupt the interviewer
Expose is just for reference whoever is using this image they will come to know which port this comtainer is being used
When he said, it's not a list it's an array. Python and JavaScript guys laughing at the corner :D
🤩
Bombay Dyeing spelling thappunu solreenga..original spelling enanu sonnenga na knjm nalla irukum..
Thanks Ashiq 🥰🥰
I think you spoke very confidently.
The interviewer has his fundamental programming in a jumble. You said you’re more confident in python.
He asks you the classic leetcode question “Ckntains Duplicates”, you then proceed to suggest tuple snd reference a list. He said he’s not referring to a list but an Array… in python an array is known as a list so that shows the gap in his breadth of languages.
Overall, I think you spoke confidently but a little too much.
True Understanding is making complex topics sound simple. There are clear gaps in both your knowledge. A lesson for both interviewer and interviewer.
🤩
I will say what i know. Array is called a basic data structure, one of the best feature of it is you can access the element in single instruction which means O(1). You cant append or insert into an array without shifting the elements. And there is also a data structure called linked list. By which you can easily insert elements. Python being such a high level language default gives us a data structure like list very easily. But i don’t know how list is implemented in python but in C it can be implemented through using pointers. Even in python array is there.
So what i am saying is there is a difference between the array that the interviewer is referring to and the list in python. Please google it yourself about how list is implemented in python you would be surprised. All the best for your future.
Reduce "actually" plz...
😬👍👍
bro 12L is very less for 3 yoe... try to ask fir more, my friend got 14lp he is just 2 yoe
Exactly bro, but the reason I joined I startup so rather than income I'm looking end to end contribution
😮😮 is it same for data engineers?
For a DevOps Engineer with 3 years of experience, his knowledge is not quite good as well.
If we put 3 months as notice period in naukri, will we get calls?
Less chance
@@ashiqummathoordevops can you suggest me how to manage 3 months notice period for getting interview calls?
@@ashiqummathoordevops How much notice period are companies offering these days? What's more common 3 months or 1 month?
Bro..prepare for your roles question..don't just talk about specific saml tasks
man no of "actually" i heard in a min 🤯
@@xShubham10 😅
@@ashiqummathoordevops didn't mean to hurt, just an observation
@@xShubham10 👋 understood,
00:03 21-year-old DevOps interviewer sharing experience and skills
02:04 Creating a new cluster and meeting prerequisites
06:04 Utilizing SD command stream editor and awk in DevOps
08:07 Syntax and deployment in Docker file
11:51 Exposing and publishing ports in Docker
14:00 Using volumes in Docker for persistent storage
17:56 Node distribution and Jenkins configuration
19:44 Understanding Cube config file and access permissions
23:39 Storing sensitive information securely in config map and secrets management
25:28 Discussion on accessing secrets stored in HashiCorp Vault
29:00 Explanation of persistent volume in Kubernetes
31:10 Candidate has 3 years of experience in DevOps with expertise in AWS, Azure, Docker, Kubernetes.
36:49 Explaining career gap and relocation flexibility
38:47 Struggled with answering DevOps questions during interviews
42:24 Planning to continue career in job rather than joining family business
44:25 Discussion about next interview round and salary expectations.
Crafted by Merlin AI.
🙏🫡🫡
Who wants to remember how you sort if you have 2 columns in a line. lol! DevOps is bigger than that.
🤗🤗
Take it as positive criticism but you said "Good experience", "Like" and "Actually" a lot.......just pointing out the obvious
🥂
Interviewer : what is clean bowed in cricket ?
Ans : basically clean bowed is one of the best types of wicket taken by the bowler .which clearly shows bats man is out no need to wait till umpire decision or he raised his finger for out.actually country like cricket is most famous game everybody know about clean bolwed.Sachin is god of cricket he also got multiple time clean bolwed in his hole career.also I like to highlight as earlier I told u in Indian cricket team we have many bolwer s like bumra and other s are taking multiple wickets by hitting clean bowled.in simple word I would say it is nothing but wicket taken by bowler .
You should hire he will be best for selling products
👍👍👍
😂
How can i contact with you
Yaar after watching this interview, mujay tou kuch nahi haa tha...:o(😥
Don’t worry I will help u
hey, I think this is super unethical to record the video of an interview especially without the consent from the company and interviewer. I see a high moral value missing here, interview is supposed to be professional and act like one. Recording audio/video without the consent is unfortunately not considered to be professional. This is totally acceptable if its a mock interview otherwise a big no no. I have conducted many a interviews in my career, I feel a bit pity for the interviewers 🥲
Interesting.
The energy is good, but you speak so fast, it's good to be slow when you're talking
🥰
The last round was mangerial round??
🥲 no
After listening all the questions, it seems like the guys giving interview has very basic to no knowledge(all theoretical knowledge) as all questions were very basic and anyone who is working on real projects can easily answer all of them.
😬
Sir any guidance for someone who has just started devops Journey.
Why you need to switch to deploy both answer add up to 80% only. There is a --context which can be used with any command. Its basically work like a profile. th-cam.com/video/VKXIH_eJHgM/w-d-xo.html
Good interview, what software do you use to capture the screen.
Obs studio
Slow down 😢 Why you rush !!
😬
Bro, you need to study instead of giving such interviews.
Devops stress kafi jyada he.
Ab to support me hi job lena he...
Job stressful nhi chaiye hume
😛
Actually fills the interview
😜
Bro you talk so fast that it seems you don't think enough before you answer.
But still nice interview.
Interviewer is a bengali, right?
So, are you working at PwC now?
is interview ke baad lega interviewer 😂
bro dont use the word “actually” multiple times
👍
i had a request please make a topmate account so i can live talk to u ?
👍👍 sure
കൊള്ളാം 👌🏻
😍
Calm down when answering.
😜
Kitni bar , "actually" , "like" use nhi krtay bai
👍😜
he wanted to hire you bro
That PWC guy took all the flesh out of you !!!! 😑😑
Do you think doeshe have any ego clash?
@@ashiqummathoordevops haha, maybe. Btw, did you get offer from PwC? Joined PwC?
Malbari has good experience in everything basically and understands how to enable "YUMFA"
MFA
Is this a Mock interview or a real interview?.
Can I also have such mock interviews for preparation ?.
Real
which software u r using to record
Obs
Bro, how to speak English fluently like you, few tips please
😛😛😛
I would recommend to interviewee to take some water
@@swargyahi904 😝
actually you need to stop saying 'actually' brother
Yes 😬
Why so many fillers?
@@subhajitchatterji4717 due to lack of English knowledge
Man, I feel you need to seek help of a few mock interviewers, who can provide you detailed feedback. But in general, your style of answering is very confusing and it’s clear you don’t know much but talk a lot.
Would really encourage you to get some interviewing prep. help from your friends/mentors/mock interviewers.
👍👍
Both interviewers are crap from a professional standpoint, not sure what’s the need for knowing so many personal details of the applicant
🤩
The guy sounds like vikrant massey from 12th fail, and why are you calling him sir sir.
Came automatically for respect
ah! nammade malayali aano...
You know nothing... couldn't answer any questions in a satisfactory way
we caught you at 39:45 :)
🥲
Means...