Live data from Hacker News

Ask HN: Tell me about how you bombed a technical interview

news.ycombinator.com

81–90 of 130 posts

Re: Ask HN: Tell me about how you bombed a technical interview

#81
I’ve bombed every single one because they don’t let me use a notebook with all of my notes, Google/search engine and additionally bring in my other friends who we mutually discuss and solve problems with as a group.

Consequently, you don’t get the kind of employees who are good at solving the problem, rather they are good at social chit-chat and taking your asinine…

Truly, truly asinine… “Test”

Re: Ask HN: Tell me about how you bombed a technical interview

#82

Worst interviews are ambushes. Things are going fine, you're discussing tech stuff, guy decides you need to "code" right now in an alien coding environment. First time, guy asks me how I'd do some problem, I talk him through it, I mention there's an easy O(n^2) way but with a bit of thinking there's probably an nlogn way. He doesn't want to let me think for half a minute, just rushes me into the inefficient solution.…

I'm shocked at how many of the responses here describe ambush interviews, I did not know this was a thing! Thanks for sharing :)

Re: Ask HN: Tell me about how you bombed a technical interview

#83
Got contacted by a FAANG recruiter, had a nice general chat and she said she wanted to get me together with the hiring manager to learn more about the role. She emphasized that it would not be a coding interview, which I interpreted to mean it would not be a technical interview.

So I didn’t prepare at all, anticipating a chat where they did most of the talking and I maybe talked a bit about my work history.

I get on the call and the guy starts peppering me with specific questions about a technology I had said I liked but hadn’t worked with for like 5 years.

I made the mistake of BSing a few things. the guy immediately caught on to the BS and seemed to have a good time calling it out. Very embarrassing. It felt like I was getting cross examined or something. After about ten minutes I managed to get off my back foot and end the interview, salvaging some of my dignity.

He weirdly became extremely friendly after I said I didn’t think this was a good fit. Still not quite sure how to interpret that.

Re: Ask HN: Tell me about how you bombed a technical interview

#84
I learned that I can't talk through my thought process while in the middle of writing code.

During a remote interview I was asked to code up Fibonacci, an algorithm I'd implemented plenty of times before. The interviewer wanted me to share what I was thinking as I did the work.

I struggled and struggled and just couldn't get it. I lost my train of thought every time I described what I was doing.Eventually I was told I could stop.

After I hung up the call, I banged out the correct code in thirty seconds.

It's easy to walk someone through my code after it's written. But apparently I don't get to consider a problem space in $LANG and in English at the same time.

Re: Ask HN: Tell me about how you bombed a technical interview

#85

Got contacted by a FAANG recruiter, had a nice general chat and she said she wanted to get me together with the hiring manager to learn more about the role. She emphasized that it would not be a coding interview, which I interpreted to mean it would not be a technical interview. So I didn’t prepare at all, anticipating a chat where they did most of the talking and I maybe talked a bit about my work history. I get on…

at a guess, he possibly realised he was acting like a dick and thought he'd give you some slack

or possibly he thought - yes I've won and the pressure was off humiliating you

I've come to realise with time, keep your BS down to a low level, and if caught out out admit the truth - DO NOT DIG DEEPER

Re: Ask HN: Tell me about how you bombed a technical interview

#86

I learned that I can't talk through my thought process while in the middle of writing code. During a remote interview I was asked to code up Fibonacci, an algorithm I'd implemented plenty of times before. The interviewer wanted me to share what I was thinking as I did the work. I struggled and struggled and just couldn't get it. I lost my train of thought every time I described what I was doing.Eventually I was told…

I had the exact same experience with writing code for Fibonacci in an unfamiliar online coding environment. I completely froze up, couldn’t think straight. It was really embarrassing and hilarious at the same time. These interviews take some practice, it’s very different from everyday coding. I can track down and fix the most complicated bugs in complex systems, yet bomb the most basic assignment if taken out from my comfort zone. As with everything it takes practice.

Re: Ask HN: Tell me about how you bombed a technical interview

#87
I was fostering a bunch of kittens but one of them caught a bad virus and had to be put down. The very next I had an interview lined up. The question asked was a standard puzzle/algorithm type question, 5 minutes into solving the question my mind went blank. I was still upset over what had happened and I told the person I can't do this and I cut the call.

Re: Ask HN: Tell me about how you bombed a technical interview

#88
In Summer 2001 I had been laid off from the failed startup I had left IBM to join the year before and the job market had gone downhill fast. So while the year before I had gotten 3 offers going to interviews wearing jeans I was now suiting up (I'm normally a casual dresser). Well I interviewed at one place which I think was a small company that made available financial disclosures on the Internet and the main programmer was a young guy wearing sandals. Well I think the ex-IBM guy in a suit terrified him and at some point when I asked him what he was looking for he said something about someone who would fit in. He couldn't see that I was only suiting up out of respect for the interview. I didn't hear back from them.

Re: Ask HN: Tell me about how you bombed a technical interview

#89
Despite having almost two decades of experience they asked me the kinds of questions that only someone who recently aced a CS theory class could answer. The kinds of things that do not matter at all to the job.

I didn’t even bother. I just said I didn’t know the answer, and that them asking those kinds of questions made me not want to work there.

I guess that counts as bombing, but I really could not have cared less.

Re: Ask HN: Tell me about how you bombed a technical interview

#90
post #62

In one interview, I was asked to check if a string was equivalent to its reverse in python. I was so excited because I knew the one-liner to do this (string==string[::-1]). But once I did this and the interviewer wasn't happy, I was super confused. I struggled to figure out what the interviewer wanted, and it wasn't until the end when he just told me what he was looking for. Which was to use a two pointer solution, a…

The interviewer failed then. That is an acceptable answer. They should have then asked probing questions on how you would change it to be more efficient for a 1 million line string or something else about how could you make it more efficient.
Post reply on HN