Brother , just an advice don't try to interrupt interviewer when he's presenting their thoughts (u interrupted him when he's appreciating your for honesty) , firstly let them finish speaking then try to speak and try to end interview on good node always by asking some good question oriented to their experience or advice for learning like that .
@@ashiqummathoordevops but tell e some devs like niraj walia (ezsnippet) bro tells us to lie somewhat in an interview I mean he is not wrong tho, all you need is that job at the end of the day, I might be wrong currently I believe that
@@lakshminarayanaallam4703 "actually" is a space filler word, which has no value, if you can learn to not use any spacefiillers and get to the point faster that would be in your best interest
Thanks for realising me that i am not made for coding and all😂😅, before i thought of learning coding but after watching this interview m demotivated as hell😂
Bro I think you talk faster , so it's hard for the other person to get what you mean. I actually had this issue during such meetings. Your explanation is nice. keep it up.
I used to talk like you in meetings, and I was proud of it. Now, I'm realizing how cringey I was back then. We both need to change the way we speak, brother. We need to be more calm.
Feedback: 1. Speak slowly - give a puase in between and avoid saying whatever you know. Be on point - for example, question on how do you rate yourselves for xyz - you spoke so long. Value interviewers time as well and remmeber you are going to be evaluated only for 30 minutes to 1 hour. Use this time efficiently to pitch yourselves 2. Improve your English - avoid fillers I have interviewed many people btw
Communication suggestions: 1. Take a pause after the questions ( 3-5 secs). You can construct you answer in that time. 2. Speak slowly. 3. Befor answering let the person infront of you complete his sentences. 4. Use less filler words(actually,like, a lot).
Kudos keeping honest as your character from the start. First question: how can i adress you mr..full name. He would have said call me anurag. Keep a 3 sec pause between questions asked and answered answerd. While solving problem don't say WE. say i. You need to solve the problem. It is suggested teamwork in actual team. It won't work in interview. Try all the stacks. At least go through all the technologies. I mean literally all the stacks they have mentioned in job description. Make a cheatsheet. And post it in your room. I don't suggest cheating. You know.... But writing a cheatsheet of all the stacks mentioned in the description helps. Can i google the syntax is one thing. You can ask to interviewer. In between the solving of problems. In this dynamic world we can't remember all the syntax. These works in all the interviews i sat on. * Remember some companies ask domain specific. I mentioned spring boot in my resume. I don't know it. I blabbled the nonsense in my cheatsheet without any actual practice in it. They said see you later.
About asking "how may I address you?" I kinda don't find it useful. Cuz the relationship is not yet built so "Sir" is much better. Unless the interviewer says so. Some don't like being called "sir". But an interviewer should expect to be addressed that way
Sir!!!! In software there is no sir or ma'am. There are only colleagues. Who we work with. Don't let sir or mam get to your mind. You can even ask a CEO this question to test their state of mind. Do they want an employee or a colleague. Remember my words. Only skills are respected in the corporate world. Don't make people feel older when you will be working with them in corporate.
You well answered few questions. Last question is simple bro, If you little in python. with open('input.txt', 'r') as file: lines = file.readlines() output_lines = [] for line in lines: parts = line.split()
if "pypi" in parts: output_line = f"{parts[0]}=={parts[1]}" output_lines.append(output_line) output_text = " ".join(output_lines) with open('output.txt', 'w') as file: file.write(output_text)
If there were only few lines, you couldve done that like this: echo -e "pandas 1.0.4 pypi numpy 1.19.5 pypi cherry red" | awk '/pypi/ {print $1 "==" $2}' If there was a file, then you couldve done it like: awk '/pypi/ {print $1 "==" $2}' filename.txt > output.txt
but python and linux is like you guys should know man i see devops ppl code it up in python and linux is like their main os right other then maintaining the pipelines and containers. ps:- im not a devops guy i have seniors who are devops and infra engineers
You still have a lot to learn, to even be considered for the job. I don't know about your status now, but this was an interview where you were just trying to dodge his actual questions by answering about something else. Although I appreciate you sharing the interview experience. You can only get better from here onwards.
review after watching till 7:11, I am myself looking for job change after 2 years I know its little nervous thing when it comes to speaking directly that also in English.. we think we have to be quick while speaking but you are going too fast, relax little 'aaa' like fillers are ok than speaking this fast that the listener wont be able to or might get irritate sometimes. Talk little slow, try listening too what he's asking what he is expecting ans from you then reply. Your confidence and honesty has made people appreciate you but sometimes in corporate we have to fake sometimes, always remember that. Also some people wont like unnecessary emotions during interviews.
bro you said you've 1.5 years of devops experience, but why didn't know any scripting language? I am just curious how it could happen. I am a 2024 graduate / fresher and was going to learn devops and among the first things I encountered was scripting knowledge . I also tried writing script while watching video. My python dry code for the above problem(not run, tested) : data = input().split(' ') // we can also read a file line by line and process it, I am inputting whole data from console and making an array of strings like ["pandas 1.0.4 pypi","numpy 1.19.5","cherry red"] result = [] // result array where we store each output (we can also directly print or append to the file) for content in data: // traversing through data temp = content.split() // splitting data based on whitespace , for eg, "pandas 1.0.4 pypi" translates to ["pandas", "1.0.4", "pypi"] if len(temp)==3 and temp[2]=="pypi": // to filter on cases where "pypi" is present result.append(temp[0]+"=="+temp[1]) // append the filtered cases in required format, for eg, "pandas 1.0.4 pypi" as "pandas==1.0.4" for content in result: // looping through our result array print(content) // printing each result on new line
its fine you cannot learn everything, scripting is very important like shell scripting i.e bash. so yes nowadays one should now them and basic linux info and networking knowledge.
let me try that question at 8:36 before watching ahead string = "pandas 1.0.4 pypi" str_list = string.split(" ") if str_list[2] == "pypi": print(f"{str_list[0[}=={str_list[1]}") # this is only for 1 string we can loop through all those and get the output
Well this will work when the strings are like that, but if we consider a general case where "pypi" can be anywhere, we have to make a loop to check every index of the str_list. not necessary but just some optimization
There is the ans 10:00 text = """pandas 1.0.4 pypi numpy 1.19.5 pypi cherry red""" lines = text.split(' ') for line in lines: words = line.split() if words[-1] == "pypi": print(f"{words[0]}=={words[1]}")
But the interviewer asked for Linux command right... what you have written is python script. Shouldn't we use grep "pypi" | (something to identify and concatenate)
You presented yourself very well actually i always like ur action when you try to scared n put impression on interviewer by ur communication impressions 😂 i lastly one thing would say dont interrupt the person if he/she appriciate you it could be ur posstive point to get select remaining all was well. Good luck bro❤
As per my 7 years of interviewing candidate , we appreciate if you learning something but we always want some experience on any technical subject although its a junior role. It was quick interview as interviewer got that you have lack of experience in devops and scripting. I also did same in such interview
Big fan bhaiya 😭 I didn't understand anything because i will be starting my btech first year in few months 🥲, i think i have a lot of anxiety and fear in interview 😅
The question was so simple. It is one of the first thing you learn in C, C++, java or any other language. Finding the keyword, selecting the string and concatenating. You said you did this, you did that, have so much experience and you are a computer graduate, still cannot answer such simple question. You did not ruin the interview, you were not fit for the job in the first place.
I am new in this. My prev project was testing based so no exp. on this. Currently learning aws cli basics. What all topics were covered here? what all resources helped you reach this level?
It would take solid 3-5 months to study most of devops. Linux, Shell scripting, Kubernetes , terraform , helm, jenkins/GH actions/Gitlab CI, python and AWS cloud services
For the last question, you can grep the pypi and then use cut with filed separator as space then translate the space to == and then use append to test file. and brother from where we can apply for this kind of job opportunity and can you share your resume or tip what things should we add in resume ?
As per my experience as interviewer, never say you want better package because team (specially product based) need a passionate developer/coder who can love their work, if you tell the reason of job switch is money(that will be truth always 😅), you may be not treated as trustable because of you get more package you drop the offer(that also a truth). This is just some corporate tactics that make you better in negotiations.
brother , never let the interviewer pushes you to use particular command that you are not familiar to use like that case as long as you get the required output , you can simply say i am familiar to do it like this ....etc , it is okay
Hi , Can you please share how to apply for this type of roles , what to add in skills? And also if possible can you share the role details and interview expereince of the other 2 rounds?
Yes correct, but to keep one employee fire both swe and Devops’s not a good practice, there are situations can come with lots of priority tasks in swe that time he may not be able to concentrate his work on both moreover if leave from company they supposed to hire 2 people again because all knowledge invested on that guy
Hi bro I am a devops engineer with 2 yr experience and looking for a job change . Could you please let me know what all things I need to lookinto for cracking the interview
Bro, firstly you need to relax a bit. Please stick to the question, give crisp answers. Like when asked about how much do you rate yourself in python/ shell scripting just say the honest number and thats it. No stories. and then start doing Programming (dsa if you are a bit crazy). This is the hardest part but your coding is going to improve a lot. Best of luck ❤
Bro learn listening...don't speak continuously and try to speak only what interviewers ask...I learnt this because I gave 2 govt job interview and passed in both the interviews.
Hire this man already. I always look for guys like you rather know it all kinds. Makes me feel confident that this guy will be able to figure out everything in his own
When he asked Do you know python ? you went and give some other ans and other point is when he asked do you know shell scripting? you said you are learning it. i think for 2 years of devops these thing should already be learnt and used on day to day basis .i think this is point of rejection
Same problem with me and I know that too problem I control but I don't know how sometimes I do same shit again and again I try to talk less but it's my habit iam overtalkative and I know it will impact my future if I don't change it asap. Look how I stretched it to this much just a single line 😅😅😅😅
Brother I have a doubt, the interviewer asked for a Linux Command and you have started telling loops logic to get the desired output, which i couldn't understand. Even I am a beginner in DevOps and all I was thinking about the question was, it can be written in one-liner command of AWK. Correct me if i'm wrong I was thinking about the following command, awk '/pypi/ {print $1 "==" $2}' requirements.txt This command would have given the output as, pandas==1.0.4 numpy==1.19.5
bro i am thinking to start devops how is market for devops as fresher. I am from tier 3 college.also how to get or find jobs.please give some suggestion
For that pypi question, your lack of experience was showing. Anyone whose worked with linux would have immediately gone for grep to get the lines, then piping it to awk. I recommend doing a shell course if possible and just playing around with it. Also, never go, then I will use comma, then i will use dot, it completely sounds nonsensical to the other guy. Just open up a text editor, increase the char size a little and type there. Even if it's wrong, the interviewer will appreciate you openness and it will be clear as well.
I am in a confusion i am having 3 years of experience in. a service based company now should i prepare for product based company while staying in the same company or switch to another service based company and there prepare for product based company, please comment
This was a poor interview but I appreciate you for sharing on the internet. 3 mistakes - poor programming knowledge as reflected in the approach to solving the bash script - lacking the most basic command "grep" this is probably most used command by devops, thats why the interviewer asked for your experience - with computer science and java background, you have failed to demonstrate your skills
I'm in my second year , did some front-end and back-end web dev made some websites for my college, learnt slight amount of devops as well. And i can tell this was already a pretty bad interview since the interviewer asked some pretty basic questions. And the concatenation question even I could do . 🥲
Bro just one suggestion 2 videos in both i found these points , 1.when ever you answer your questions generalize the answers like you were saying i did this yestarday and i did some other work las week that makes them not sure about your expertise on your skills 2. Don't say i am learning bro 😂 as i cam see you have 3 years experience . Focus on what you have done in that 3 years . Dont say i am learning that say i have not worked on it be honest . Thats it bro 😅 Learn python completely it hardly takes 30 days
this is unethical. this is not honesty this is over smartness . Also on the exp level and the kindaa shallow knowledge you dont desrve it currently. you might get 15 or 20 or 30 LPA by fooling people but . All the best. hope you more focus on depth rather than making videos.
The interviewers voice is so soothing, Love that guy! Making the interviewee feel comfortable.
🥰
Nope its just regular voice
Don't rush , loud and honest that's what I would recommend you :)
🤝
Your honesty won a subscription. All the best bro.
🤩
@@ashiqummathoordevops keralite?
Brother , just an advice don't try to interrupt interviewer when he's presenting their thoughts (u interrupted him when he's appreciating your for honesty) , firstly let them finish speaking then try to speak and try to end interview on good node always by asking some good question oriented to their experience or advice for learning like that .
👍
He is built different bro, see his other interviews his confidence is his key.
Keep going , confidence will bring you more offers.
@@Cjaesthetic10Regardless of confidence, it's known as a good etiquette not to interrupt others before they finish their conversation.
@@Cjaesthetic10listening is nothing related to confidence dude
Its a key skill in corporate world
@@Cjaesthetic10 Its listening and patience, this is not confidence
Bro your Honest !! That's why your best in your work ... Keep it up !!! We need peoples like you
🟢
@@ashiqummathoordevops but tell e some devs like niraj walia (ezsnippet)
bro tells us to lie somewhat in an interview I mean he is not wrong tho, all you need is that job at the end of the day, I might be wrong currently I believe that
"Actually" is disappointed word in interview which told by many interview host
Wtf people will never let us be honest and truthful... You put a mask, youre in is the condition
Actually it naturally came in non English spekers
Instead of Actually which is best. Please suggest me
@@lakshminarayanaallam4703 "actually" is a space filler word, which has no value, if you can learn to not use any spacefiillers and get to the point faster that would be in your best interest
I love the interviewer! such a great personality, composed and he's very calm! Andddd he was like "you can call me Anurak!!!"
🙌🙌
being confident is okay but being over confident is really bad the guy just proved over confidence ruins you
Over confident nahi over enthusiastic tha, btw ye interviewer ka kaam hai usko bolna bhai thoda chill kar saans le aur Aram se bol
I am also honest in interviews like you 🙂 Its ok, I also bottled a big opportunity recently but that's how we learn.
🤩🤩
well, i studied geography, now shifting to IT, I am trying to learn python full stack.. just thought i could ask.. have anything to tell ?
@@Aak_lv_Geobetter decide which way you want to go in IT field
@@sunnysumanth1280 omg, thank you to have answered ! I thought i could go into cybersecurity
Thanks for realising me that i am not made for coding and all😂😅, before i thought of learning coding but after watching this interview m demotivated as hell😂
i ruined a 35 lpa base interview in the last question . i can feel you brother
😛😛😛
What is your tech stack and how much experience you have rohit
@@romanrange- am a blockchain dev. Approx 4 years of experience.
@@RohitRaj-ot9ws right now how much is your salary and how much you expect.
Bro I think you talk faster , so it's hard for the other person to get what you mean. I actually had this issue during such meetings. Your explanation is nice. keep it up.
👍👍👍thanks
I dont think thats a problem. I could understand him perfectly
Interviewer has slow brain. Probably shld get checked for adhd. U gave good interview bro keep it up
I used to talk like you in meetings, and I was proud of it. Now, I'm realizing how cringey I was back then. We both need to change the way we speak, brother. We need to be more calm.
Yes ✌🏽✌🏽✌🏽✌🏽
same brother my speed was too fast and I was self obsessed that I can talk very fast ... But today I got ashhamed of myself
Feedback:
1. Speak slowly - give a puase in between and avoid saying whatever you know. Be on point - for example, question on how do you rate yourselves for xyz - you spoke so long. Value interviewers time as well and remmeber you are going to be evaluated only for 30 minutes to 1 hour. Use this time efficiently to pitch yourselves
2. Improve your English - avoid fillers
I have interviewed many people btw
👍
Communication suggestions:
1. Take a pause after the questions ( 3-5 secs). You can construct you answer in that time.
2. Speak slowly.
3. Befor answering let the person infront of you complete his sentences.
4. Use less filler words(actually,like, a lot).
Kudos keeping honest as your character from the start.
First question: how can i adress you mr..full name.
He would have said call me anurag.
Keep a 3 sec pause between questions asked and answered answerd.
While solving problem don't say WE. say i. You need to solve the problem. It is suggested teamwork in actual team. It won't work in interview.
Try all the stacks. At least go through all the technologies. I mean literally all the stacks they have mentioned in job description.
Make a cheatsheet. And post it in your room. I don't suggest cheating. You know....
But writing a cheatsheet of all the stacks mentioned in the description helps.
Can i google the syntax is one thing. You can ask to interviewer. In between the solving of problems. In this dynamic world we can't remember all the syntax.
These works in all the interviews i sat on.
* Remember some companies ask domain specific. I mentioned spring boot in my resume. I don't know it. I blabbled the nonsense in my cheatsheet without any actual practice in it. They said see you later.
🫡
About asking "how may I address you?" I kinda don't find it useful. Cuz the relationship is not yet built so "Sir" is much better.
Unless the interviewer says so.
Some don't like being called "sir". But an interviewer should expect to be addressed that way
Sir!!!! In software there is no sir or ma'am. There are only colleagues. Who we work with. Don't let sir or mam get to your mind.
You can even ask a CEO this question to test their state of mind. Do they want an employee or a colleague.
Remember my words. Only skills are respected in the corporate world.
Don't make people feel older when you will be working with them in corporate.
for your time .
take a bow brother
tnx a lot - nyc cheetcodes
@@harshavardhankonisa9788 You're right 👍
You well answered few questions. Last question is simple bro, If you little in python.
with open('input.txt', 'r') as file:
lines = file.readlines()
output_lines = []
for line in lines:
parts = line.split()
if "pypi" in parts:
output_line = f"{parts[0]}=={parts[1]}"
output_lines.append(output_line)
output_text = "
".join(output_lines)
with open('output.txt', 'w') as file:
file.write(output_text)
Bro he said give answer in linux commands
So, have you done it on python
If there were only few lines, you couldve done that like this: echo -e "pandas 1.0.4 pypi
numpy 1.19.5 pypi
cherry red" | awk '/pypi/ {print $1 "==" $2}'
If there was a file, then you couldve done it like: awk '/pypi/ {print $1 "==" $2}' filename.txt > output.txt
9:40 when he told you to write the command you kept blabbering, you just need to write the command its so annoying for the interviewer
cat list | grep pypi | awk '{print $1==$2}'
This guy is annoying af , don't know why he uploaded this video.. he's making 🤡 of himself.
@@PrabhatKishor you are wrong😡
grep -i "phpy" | awk -F" " '{for(i=0;i
Brother just answer what they usually ask..do not go in depth unless they ask
🙌
true, it creates the impression that you are talking too much all the time and adding unnecessary detail
You are learning everything your senior doing everything what you are doing.
😛
this thing happens nowadays in DEVOPS interview, if u learn 10 tools, they will ask 11th one ,,, plus python and linux and shell too ...
Hahah so funny n true as well
Actually it's happening with Data Science too
but python and linux is like you guys should know man i see devops ppl code it up in python and linux is like their main os right other then maintaining the pipelines and containers.
ps:- im not a devops guy i have seniors who are devops and infra engineers
do they really ask coding too in devops? I thought thats not compulsory here:(
Linux and shell are the absolute basics. You can't call yourself a devops engineer if you don't know these two.
You still have a lot to learn, to even be considered for the job. I don't know about your status now, but this was an interview where you were just trying to dodge his actual questions by answering about something else. Although I appreciate you sharing the interview experience. You can only get better from here onwards.
@@waltgrace94 🤗🤗🤗🤗🥰
Exactly
What question he asked - he asked to rate yourself in shell script..just give some rating out of 5 or 10.. Don't elaborate unnecessary story
yeah he is just yapping on and on about things which he didn't even ask.
Use random function 😂
be calm, composed, dont speak fast, dont speak too much. may allah grant you succes
He did not leave any question blank, he used all the knowledge he had to answer each e question. 😂❤
👍👍👍👍
in the end bro said "dude wasted my time this early in the morning" when infact he most probably wasted the interviewer's time 💀
review after watching till 7:11, I am myself looking for job change after 2 years I know its little nervous thing when it comes to speaking directly that also in English.. we think we have to be quick while speaking but you are going too fast, relax little 'aaa' like fillers are ok than speaking this fast that the listener wont be able to or might get irritate sometimes. Talk little slow, try listening too what he's asking what he is expecting ans from you then reply. Your confidence and honesty has made people appreciate you but sometimes in corporate we have to fake sometimes, always remember that.
Also some people wont like unnecessary emotions during interviews.
What i noticed he was moving away from the question,not answering to the exact question,they want brief and to the point answers.
bro you said you've 1.5 years of devops experience, but why didn't know any scripting language? I am just curious how it could happen. I am a 2024 graduate / fresher and was going to learn devops and among the first things I encountered was scripting knowledge .
I also tried writing script while watching video.
My python dry code for the above problem(not run, tested) :
data = input().split('
') // we can also read a file line by line and process it, I am inputting whole data from console and making an array of strings like ["pandas 1.0.4 pypi","numpy 1.19.5","cherry red"]
result = [] // result array where we store each output (we can also directly print or append to the file)
for content in data: // traversing through data
temp = content.split() // splitting data based on whitespace , for eg, "pandas 1.0.4 pypi" translates to ["pandas", "1.0.4", "pypi"]
if len(temp)==3 and temp[2]=="pypi": // to filter on cases where "pypi" is present
result.append(temp[0]+"=="+temp[1]) // append the filtered cases in required format, for eg, "pandas 1.0.4 pypi" as "pandas==1.0.4"
for content in result: // looping through our result array
print(content) // printing each result on new line
its fine you cannot learn everything, scripting is very important like shell scripting i.e bash.
so yes nowadays one should now them and basic linux info and networking knowledge.
Linux shell scripting was fine.. python was bonus for you
let me try that question at 8:36 before watching ahead
string = "pandas 1.0.4 pypi"
str_list = string.split(" ")
if str_list[2] == "pypi":
print(f"{str_list[0[}=={str_list[1]}")
# this is only for 1 string we can loop through all those and get the output
Well this will work when the strings are like that, but if we consider a general case where "pypi" can be anywhere, we have to make a loop to check every index of the str_list.
not necessary but just some optimization
@@furiousboyaj we can directly do if 'pypi' in string:
You could have used mapping instead of just printing and also use list for multiple strings
There is the ans 10:00
text = """pandas 1.0.4 pypi
numpy 1.19.5 pypi
cherry red"""
lines = text.split('
')
for line in lines:
words = line.split()
if words[-1] == "pypi":
print(f"{words[0]}=={words[1]}")
But the interviewer asked for Linux command right... what you have written is python script. Shouldn't we use grep "pypi" | (something to identify and concatenate)
You presented yourself very well actually i always like ur action when you try to scared n put impression on interviewer by ur communication impressions 😂 i lastly one thing would say dont interrupt the person if he/she appriciate you it could be ur posstive point to get select remaining all was well. Good luck bro❤
Thanks for feedback
As per my 7 years of interviewing candidate , we appreciate if you learning something but we always want some experience on any technical subject although its a junior role. It was quick interview as interviewer got that you have lack of experience in devops and scripting. I also did same in such interview
Yes ✌🏽
interviewer is SO nice bro idek how to code but i wanna join his company lol
Subscribing for this 3:45
🤩
Big fan bhaiya 😭
I didn't understand anything because i will be starting my btech first year in few months 🥲, i think i have a lot of anxiety and fear in interview 😅
😍😍😍😍😍 all the best for your future
Bro who is interviewer 🤣😂🤣🤣 appreciated your confidence mann
😬
Appreciated man 👍 good enough
😍
Looks like last year video you have uploded recently. Did you get a job? How you prepared? Please do a video on this. It will help us.
Yes bro from last year
I got job , I will update u video
The question was so simple. It is one of the first thing you learn in C, C++, java or any other language. Finding the keyword, selecting the string and concatenating. You said you did this, you did that, have so much experience and you are a computer graduate, still cannot answer such simple question. You did not ruin the interview, you were not fit for the job in the first place.
I am new in this. My prev project was testing based so no exp. on this. Currently learning aws cli basics. What all topics were covered here? what all resources helped you reach this level?
It would take solid 3-5 months to study most of devops. Linux, Shell scripting, Kubernetes , terraform , helm, jenkins/GH actions/Gitlab CI, python and AWS cloud services
Ok, im in finance , I dont know anything about coding. Can someone explain what happened here exactly in layman's?
Golden Opportunity .. But you Missed due to your rush... Try Develop patience.
😝😝
For the last question, you can grep the pypi and then use cut with filed separator as space then translate the space to == and then use append to test file.
and brother from where we can apply for this kind of job opportunity and can you share your resume or tip what things should we add in resume ?
As per my experience as interviewer, never say you want better package because team (specially product based) need a passionate developer/coder who can love their work, if you tell the reason of job switch is money(that will be truth always 😅), you may be not treated as trustable because of you get more package you drop the offer(that also a truth). This is just some corporate tactics that make you better in negotiations.
Thanks buddy 😍😍
brother , never let the interviewer pushes you to use particular command that you are not familiar to use like that case as long as you get the required output , you can simply say i am familiar to do it like this ....etc , it is okay
It's All Good But try to calm during the interview. You got my sub, anyway👍
🙏👍
Hi , Can you please share how to apply for this type of roles , what to add in skills? And also if possible can you share the role details and interview expereince of the other 2 rounds?
🙌👌👌
@@ashiqummathoordevops Can you please answer me for the above question?
@@ashiqummathoordevopsare you using a bot? , this is awkward
Is Devops Engineer still a thing? I thought most of SWEs do already have good Devops experience.
Yes correct, but to keep one employee fire both swe and Devops’s not a good practice, there are situations can come with lots of priority tasks in swe that time he may not be able to concentrate his work on both moreover if leave from company they supposed to hire 2 people again because all knowledge invested on that guy
Thanks for the video bro
😬
He is too much nervous and throwing all the things except the answer to the question.
😜😜
You drift away from answering the real question
💯.
Bro can you please throw some light on spinnaker multicloud tool .
Sure
the accent is really thick had to use subtitle
😛 malayalai
You rocks bro.❤
As a frontend developer i know all these git commands merge conflict
✌🏽✌🏽✌🏽
the command to solve that problem is "grep pypi | cut -d ' ' -f 1,2 | sed 's/ /==/g'"
Awesome
what was the python project you did can you give the link ?
Vishamikenda, ningalude satyasandha maathram mathi :) . All the best
🤣🤣
Hi bro I am a devops engineer with 2 yr experience and looking for a job change . Could you please let me know what all things I need to lookinto for cracking the interview
Is it legal to upload the real interview? Just curious
Bro, firstly you need to relax a bit. Please stick to the question, give crisp answers. Like when asked about how much do you rate yourself in python/ shell scripting just say the honest number and thats it. No stories.
and then start doing Programming (dsa if you are a bit crazy). This is the hardest part but your coding is going to improve a lot.
Best of luck ❤
You mentioned that relevant experience in DevOps is 1.5 years, but in the subtitles, it appears as relevant experience in divorce. 🤣😂
😛😛😛😛
Hi Mohammed bro... please suggest me,i want to learn aws with devops...where i search on youtube .. on free course.. please reply
I did not understand anything, so I had to use subtitles
Bro learn listening...don't speak continuously and try to speak only what interviewers ask...I learnt this because I gave 2 govt job interview and passed in both the interviews.
😜😬😬
@@ashiqummathoordevops 😁😁😁
Bro upload more videos bro it help all starting self introduction and complete interview bro new 2024
Sure
he's just asking about the grep and followed by pipe and combine those two with awk and you are good to go.
bro you should starting learning some shell scripting.
Hire this man already. I always look for guys like you rather know it all kinds. Makes me feel confident that this guy will be able to figure out everything in his own
🥰🥰🥰🥰
Isn't recording and posting interview illegal?
Ur yourself giving answers for single question..they don't expect
Bro is carrying is single sign in SSO since 1 year.
😬
The most interview looks dumb here. What company was it for ?
✌🏽✌🏽
When he asked Do you know python ? you went and give some other ans and other point is when he asked do you know shell scripting? you said you are learning it. i think for 2 years of devops these thing should already be learnt and used on day to day basis .i think this is point of rejection
😬
If I was the hiring manager I would hired you cos I know that you are someone whom I can trust.
🥹
You team will fail
Managing skills????
Bro what you mean by ruined,like interview went very well he also appreciated you then??
Failed
@@ashiqummathoordevops why ??any advice you gimme,like mistake which you make there and not should I do?
@@anjuomjihe couldn't solve the scripting problem. the question of mistake doesn't arise!
You talk too much. Overstepping interviewer has never been a good option. Let them finish. It is basic sense.
Same problem with me and I know that too problem I control but I don't know how sometimes I do same shit again and again I try to talk less but it's my habit iam overtalkative and I know it will impact my future if I don't change it asap. Look how I stretched it to this much just a single line 😅😅😅😅
Sir can you please share that code as well what you written on shell scripting.
That I don’t have bro
how many rounds did you clear before it can you name those rounds and how many years of experience do u have
You are not even answering to the point... If I was in interview panel, i would have rejected
👍
Brother I have a doubt, the interviewer asked for a Linux Command and you have started telling loops logic to get the desired output, which i couldn't understand. Even I am a beginner in DevOps and all I was thinking about the question was, it can be written in one-liner command of AWK. Correct me if i'm wrong I was thinking about the following command,
awk '/pypi/ {print $1 "==" $2}' requirements.txt
This command would have given the output as,
pandas==1.0.4
numpy==1.19.5
bro i am thinking to start devops how is market for devops as fresher. I am from tier 3 college.also how to get or find jobs.please give some suggestion
Bro market is but knowledge should be there
For that pypi question, your lack of experience was showing. Anyone whose worked with linux would have immediately gone for grep to get the lines, then piping it to awk. I recommend doing a shell course if possible and just playing around with it.
Also, never go, then I will use comma, then i will use dot, it completely sounds nonsensical to the other guy. Just open up a text editor, increase the char size a little and type there. Even if it's wrong, the interviewer will appreciate you openness and it will be clear as well.
commands to use grep, awk ,echo to get the output
It’s unnecessary to loose talk while he asked about shell scripting skills
Hi bro, how can i connect with u?
.do u provide any coaching on devops?
Please I need too
I am in a confusion i am having 3 years of experience in. a service based company now should i prepare for product based company while staying in the same company or switch to another service based company and there prepare for product based company, please comment
If I was at your place I would have changed my company first and then prepare for product based comp.
Nice reference thanks.... bro
Many people are telling there is no job openings for devops is that true ??? Sir
there is job post in the company i work for 3+ experience devops engineer
Rude answers and very corny attitude, i won't given him 2 lpa
Ok 👍 thanks
This was a poor interview but I appreciate you for sharing on the internet. 3 mistakes
- poor programming knowledge as reflected in the approach to solving the bash script
- lacking the most basic command "grep" this is probably most used command by devops, thats why the interviewer asked for your experience
- with computer science and java background, you have failed to demonstrate your skills
Ss
I'm in my second year , did some front-end and back-end web dev made some websites for my college, learnt slight amount of devops as well. And i can tell this was already a pretty bad interview since the interviewer asked some pretty basic questions. And the concatenation question even I could do . 🥲
what is the question i didn't understand could u please repeat it
For this interview may I know the designation is 15 LPA package?
Devops’s associate
5:38 bro activated chatgpt mode 😂😂
😜
yow military nee engaya ingaa, Phoenix Player
Bro just one suggestion 2 videos in both i found these points , 1.when ever you answer your questions generalize the answers like you were saying i did this yestarday and i did some other work las week that makes them not sure about your expertise on your skills
2. Don't say i am learning bro 😂 as i cam see you have 3 years experience . Focus on what you have done in that 3 years . Dont say i am learning that say i have not worked on it be honest . Thats it bro 😅
Learn python completely it hardly takes 30 days
😬👍👍👍
What exactly did you do to ruin the interview
3 years of experience and you don't even use grep😐
That's the only command i majorly use
😎
this is unethical. this is not honesty this is over smartness . Also on the exp level and the kindaa shallow knowledge you dont desrve it currently. you might get 15 or 20 or 30 LPA by fooling people but . All the best. hope you more focus on depth rather than making videos.
👍
Max he can get is 5 LPA
@@ankitrawat-acodebreaker bro stop hating some one for no reason, instead work on yourself. One day u can also do the same.
How many years of experience do you have
Is this the same guy who used to start his video with the intro "Hey guys , its me ashiq ummathoor"?👀
Ah eth thanne