vote up 75 vote down star
83

Following this question, what is the worst interview answer you've gotten from an interviewee in a technical interview?

locked by Jeff Atwood Jun 22 at 8:47

closed as not a real question by George Stocker, Rich B, Shog9, John Saunders, sth Jun 6 at 1:38

102 Answers

vote up 6 vote down

The worse answer I've ever received was:

"Uhhhhhhhhhhhhh............." and then silence.

link|flag
vote up 42 vote down

This happened a month ago:

Q : How do you rate yourself in JavaScript (out of 10)?
A : 8/10?

Q: Great! Could you write a function to validate an email address?
A : (... few minutes ...) Well, I would rate myself as 3.

link|flag
28  
Do not ask how to validate an email unless you have the answer in hand. Hint: if you think you have it you don't. – Joshua Feb 16 at 18:14
7  
Is he to rate himself in javascript, or regular expressions? :) – Jonathan Sampson Feb 16 at 18:31
5  
Your regular expression is probably wrong. – recursive Mar 31 at 13:24
24  
The email address format is defined in section 3.4.1 of RFC 2822. It is a bit too complex for an interview question. – wcoenen Apr 7 at 23:46
2  
The smart thing to here would be to google a regular expression on the internet... – Carra May 27 at 12:32
show 5 more comments
vote up 101 vote down

A colleague of mine interviewing someone:

  • "Do you know ActiveX ?"

  • "Yes, I do."

then my colleague started having doubts about the sincerity of the interviewee, so he improvised this question :

  • "Do you know ActiveZ ?"

  • "Yes, I do."

He didn't get the job.

link|flag
113  
I think they make gender-specific versions now: ActiveXX and ActiveXY... (here comes the bad joke)... Unfortunately, ActiveXX overflows for a few days every month and ActiveXY tries to mount drives it shouldn't. – gnovice Feb 17 at 3:34
5  
It is like we have been laughing at one of I-know-it-all nontech managers after we have convinced him to switch from Base64 encoding into "new version" Base65. – smok1 May 27 at 11:33
show 4 more comments
vote up 6 vote down

I have written about my funny experiences here. The best one was this

Me : You said you are working with VS 2003. How do you rate yourself in .net?

Candidate : 7 out of 10

Me : Great! Why are you not using VS 2008 which is the lastest verion?

Candidate : What? we have VS 2008? I thought 2005 is the latest version.

link|flag
14  
It's worse when you're the interviee and the company doesn't realize this. – greg Feb 24 at 16:34
1  
There's a vs2010 beta1 already. – Arnis L. Jun 23 at 13:42
vote up 12 vote down

Q: "Oh, interesting. Your resume says that you've used .NET Remoting. So, how did you use it? What was your project like?"

A: "I have never used .NET Remoting."

link|flag
11  
If you were going through a recruiter, be careful about throwing people out for stuff like this. More than one recruiter has, in my experience, done some creative keyword enhancement on a candidate's resume without their knowledge. – JohnFx Feb 16 at 20:41
2  
@JohnFx: This guy was clueless, and he definitely knew what was on his resume. True about recruiters, but IMO upon a revelation like that, one would think that the candidate would ask for a copy of their resume for their examination, and be on the phone with the offending recruiter ASAP! – Dave Markle Feb 17 at 3:34
3  
@JohnFX: ...and this is why I always recommend sending PDFs to recruiters. They're still editable, but I'd imagine most wouldn't think it worth their while if they could manage to edit them at all. I had my CV significantly changed once.. never again. Recruiters should work for you and the prospective employer, even if they don't want to, as such, if they want their commission they can take a read only CV. – DavidWhitney Jun 3 at 19:06
show 5 more comments
vote up 26 vote down

This topic reminds me of an old irc joke:

Myrf> I was giving some guy a job interview today, and it turned out he didn't know who the Beatles were.

Myrf> So, of course, I had to turn him down :P

bozz> wtf, a bunch of people don't know who the beatles are

bozz> whyd you have to turn him down just because of that

Myrf> Dude, I work at a RECORD STORE.

link|flag
11  
Must be an old joke- no one works at record stores anymore. Maybe he was working at iTunes- no Beatles there. – MattMcKnight Jun 3 at 18:43
show 3 more comments
vote up 20 vote down

Q: Where do you see yourself in 5 years?

A: Outta rehab, for sure!

(I didn't hire him, but we both had a good laugh at his answer)

link|flag
show 2 more comments
vote up 35 vote down

Note: These questions were asked back-to-back

Q: What are the benefits/reasons for normalizing the database used by an application?
A: Performance. The application will run faster against a normalized database.

Q: In what situations should denormalizing the database be considered?
A: When you need more performance, the application will perform better against a de-normalized database.

Q: So which is it? Does normalization help or hurt performance?
A: I'm not sure, but everyone knows that normalized is better.

Q: Why?
A: Because it performs better.

link|flag
63  
This actually sums up most advice I've received on database normalization. – James McMahon Mar 3 at 18:34
show 2 more comments
vote up 18 vote down

Background: Recruiting a QA candidate that made the mistake of claiming during the interview that he did a lot of programming in his spare time and hoped the position we were hiring for would lead to a developer job.

Q: So what programming languages do you use/like best?
A: Windows?

Q: [Thinking I had been unclear] No, I mean specifically what programming LANGUAGES are you familiar with, not the platform.
A: Uhm. Unix?

Q: [Trying one more time]. I am really trying to ask about programming languages, not platforms. You know like Java, C++, or C#?
A: Yeah, that's the one I use.

link|flag
12  
What about C-pound? – Joe White May 20 at 19:47
5  
Should have switched the programming languages to whitespace, lolcode or brainf**k. The answer: I like whitespace best, done lots of huge projects in whitespace. – martiert Jun 3 at 20:43
show 1 more comment
vote up 12 vote down

When asked to explain Object Oriented Programming:

"A bunch of subroutines or computer code that does something".

Then tried to explain that OOP is bad because different objects don't combine well together, giving the example that you can't use multiple javascript libraries together.

Later, when asked about testing:

"I never had any code come back...that I wrote..that failed any kind of unit test"

link|flag
2  
It's pretty easy to never fail unit tests if you don't write them. :) – Robert P Feb 18 at 1:34
2  
Especially considering that the correct answer in reference to unit tests is that all code should fail unit tests at first. So if you're writing code that's not failing unit tests, you're doing it wrong. And the best devs write code that will break unit tests at some point. – Lloyd Cotten Feb 24 at 15:56
1  
@Lloyd: That's the correct answer if you do test-driven development. Not everyone follows that particular development strategy though. :) – Herms Feb 24 at 17:21
show 3 more comments
vote up 13 vote down

Interview #1

"I haven't really worked with events"

Promptly followed by one of our developers slamming down his notebook, getting up, and leaving without a word.


Interview #2

When I realized the candidate was Googling/BS'ing all the answers I threw him this gem:

me: "Have you ever worked with the XnetCookieManager class, if so, what do you think of it?" candidate: "I've used it before, it works pretty well"

This is an in-house class that he could not have ever seen before

link|flag
7  
You should have accused him of espionage! :p – leppie May 26 at 13:52
1  
Or ask where he used it and then told him you are going to sue that company... – Makis May 27 at 12:20
show 1 more comment
vote up 2 vote down

My favorite was I had a candidate for a "Senior Software Engineer" position tell me unprompted and openly that he loves to UML diagram his work in Rational or whatever, and have it auto-generate all the code, and that he always does this on all his work.

Um, no thanks... that's fine for your own personal project, but not in a team environment where we have our own style guides and templates etc... and definitely not at a "senior" level.

I also had a candidate that was obviously googling every answer as we talked to him over the phone. We thought there was just a 4-8 sec phone lag or something, until the 'thank yous & good-byes' when replies started coming immediately.

link|flag
2  
If your asking questions you can google and answer if 4-8 seconds, maybe you aren't asking the right questions. Just a thought. – James McMahon Mar 3 at 19:16
1  
OTOH if the interviewee can understand the question and formulate a research plan in <8s, maybe they'd be good ;) – Graham Lee Mar 10 at 8:21
1  
What is so wrong about using UML diagrams and creating code from it? It saves a bit of time and with some CASE tools you can customize the code style. – ya23 Mar 10 at 16:49
4  
That's only "fine for a personal project" if you have 10's of thousands of dollars to blow on your own personal copy of Rational Rose. – T.E.D. May 29 at 18:15
show 2 more comments
vote up 5 vote down

I asked a candidate for a programming position what he knew about database to which he replied "Oh no, that's not my job. That's the DBA's job. I don't do dumb stuff like that." Needless to say he never got the job.

link|flag
3  
Bad answer.. Rude and such.. But it could be accurate. Think the guy who wrote the kernal for your OS give a thought to a DB. Doubt it crossed his mind. – baash05 Feb 28 at 13:52
2  
Wow! I know several DBAs and I wouldn't regard their job as "Dumb stuff" – Colin Mackay Jul 19 at 0:13
vote up 8 vote down

Question to a slightly gray-haired interviewee:

"So what keeps you still interested in programming?"

"Programming? Umm.. I am here for the sales manager position"

This happened to me as I was interviewing candidates for a junior developer position and didn't know that the sales dep. also was interviewing so I grabbed the first candidate I saw. Yeah yeah I was new at it. :)

link|flag
7  
-1 OP was looking for "worst interviewee answer", but IMO that was the best possible interviewee answer at that point, to stop you when you didn't know what you were doing. – abababa22 May 21 at 10:12
5  
for me it was the worst inverviewee answer :) – Anders Karlsson May 22 at 2:03
show 1 more comment
vote up 7 vote down

I once referred a friend of mine to a position where he was being interviewed by someone on our team. Unfortunately, the interviewer didn't really know much about about web developing even though she was employed as a web developer. I told my friend about this and in the interview he was asked about AJAX and if he'd used it.

He said "yeah, I've used it, what about you guys?", she says oh yeah we have and he inquires as to what they've done with it, to see if she even knows what AJAX is. She says "oh you know, sort tables and stuff" heh. A bit odd since he was the interviewee, but funny nonetheless.

link|flag
vote up 22 vote down

good looking girl came in

me: "hello - tell me something about you"

girl: "I work at a local 7-11"

me: "okay - do you have any experience in developing software?"

girl: "no"

me: "have you ever worked as a developer? or with computers?"

girl: "no"

me: "okay - so why are you here?"

girl: "I want to work 20 hours a week and receive a full month developer loan"

me: "!?!?!?!?!!??!!?!?!"

that really happened to me ... I was a bit perplexed ;)

link|flag
4  
she thought looks > knowledge! – hasen j May 20 at 19:41
show 3 more comments
vote up 7 vote down

Me: I see on your resume that you have been using NUnit for nearly two years.

Interviewee: Yes, I even mentored a number of developers at my last job and introduced them to unit testing.

Me: Oh, excellent. Can you name some of the asserts that NUnit provides?

Interviewee: Uh. Hm... I don't remember.

link|flag
vote up 7 vote down

Me: "You say you have 2 years experience in Java?"

Interviewee: "Yes that's right"

Me: "Can you explain to me the concept of object inheritance?"

Interviewee: pauses "Well it wasn't exactly Java..."

She didn't actually know the first thing about java.

link|flag
vote up 7 vote down

I asked someone who listed himself as "expert" in OO-design on his CV:

Me: What is the dependency inversion principle?

Him: The depen... Come again?

Me: The dependency inversion principle.

Him: Is that where you can run multiple versions of the same assembly by putting it in the GAC?

link|flag
2  
That's an awesome interview question! – Cameron MacFarland Mar 31 at 13:19
3  
Actually not a bad guess for someone who really has no idea. – harpo Jun 3 at 20:34
show 1 more comment
vote up 5 vote down

Interviewer: Explain your approach to designing software.

Me: I see software design as an art...

I didn't get the job. Four years later, and I can now confidently answer the question!

link|flag
10  
Actually me as well I see at as an art. What's the catch|? – User Mar 31 at 13:17
1  
There are just as many principles for art: color, form, line, etc. I still see plenty of room for creativity in my code. – munificent May 20 at 17:03
3  
Google: "Hackers and Painters" – Jon Romero May 20 at 17:05
2  
It certainly IS an art. Just as any art form has it's constraints (paintaing has a canvas, sculpture has materials), so does programming. Do you leave behind code that makes people angry when they have to upgrade it 2 years later? I inherited code from a strict mathematician that was, to say the least, NOT flexible - but the function needed new features. I had to practically re-write the whole thing. – David May 27 at 13:00
show 3 more comments
vote up 32 vote down

I once went for an interview at the European Commission in Brussels. Towards the end of the interview, which seemed to go very well, they asked me how I felt about learning another language. "Great!" I said, "I would like to learn Java." (I was programming Perl and VB at that time.)

The two interviewers looked at each other with bemused/amused expressions, which I realised as I left the building was down to the fact that they were referring to a natural language (all Commission employees are supposed to speak three European languages).

link|flag
show 1 more comment
vote up 25 vote down

This was a little while ago, but I still remember it well...this was an interview for a server administrator, specifically for our externally facing website server (in-house), so security and how to handle/configure dual-firewalls and hosts was required.

Now, this was a BIG guy, not fat, but the sort you wouldn't want to go up against in Rugby...I'm no lightweight, but he towered above me...

Me: I see here that you've been a sys admin for 4 years, is that correct?

Guy: Yes, mainly NT4 server, I know everything there is to know about NT4

Me: raises eyebrow I see, so you can tell me what the hosts file is and what it does, yes?

Guy: The what, what hosts file, I've never heard of that.

Me: It lives in c:\winnt\system32\drivers\etc, there's a hosts file and a sample hosts file (hosts.sam)

Guy: I don't understand the question.

Me: It's quite simple, there's a file called hosts and it does something with IP addresses and names...have you come across the term "localhost" before?

Guy: Yes, it maps to 127.0.0.1

Me: thinking 'finally some progress'* Ah, so now can you tell me what the hosts file is?

Guy: Look getting agitated, leaning forward I really DON'T like your interviewing style, I don't understand the question, can you re-phrase it?

Me: (not wanting to look like a wimp) I've already re-phrased it twice.

Guy: You think you're funny do you?

Which reminded my of Goodfellas a bit and he leaned right over and I swear he was about to grab me by the throat.

Me: No, not at all...not at all...

...at which point I made my excuses and left, telling a security guard that I wanted him escorted out of the building.

I ordered panic buttons for all interview rooms shortly after that...

link|flag
10  
+1 for panic button! – hasen j May 20 at 19:49
17  
He already did answer the question-> he didn't know what it was. No need to keep going on that question. – MattMcKnight Jun 3 at 18:47
show 2 more comments
vote up 1 vote down

Q: What data structure would you use to implement a list of words for a spell-checker?

A: Linked list?

Doh!

link|flag
vote up 5 vote down

[Me] - We see you currently work in a different state. Are you willing to relocate to this area?

[Them] - I have a restraining order taken out against someone.

While I'm glad they were trying to leave a bad situation, a simple "Yes" would have sufficed.

Edit

As an aside, I have nothing against someone trying to leave a bad situation, and the candidate was not dinged for their statement. Rather, it was the "unasked for answer" to the question - we were looking to see if they were willing to relocate, not why they wanted to relocate. The fact that their answer only invited questions that we legally could not ask in an interview is what makes it such a horrible answer to a question.

link|flag
1  
Seriously. Too much information starting ... now! – Bob Cross Jun 5 at 1:45
show 1 more comment
vote up 9 vote down

I was looking for good all-round Linux engineers at one point. One guy came in, we made nice, then I cut to the chase and asked him to describe his Linux experience. He gave me an unknowing look and I showed him the bits on his CV where it said X years of Linux programming experience. He looked a bit puzzled and then said "Oh, you know what? My brother must have written that in to get me more job interviews."

He was a bit surprised that I lost complete interest in resuming the interview.

None of the above is in any way a fabrication. I was even nice enough to suggest some community resources if he really wanted to learn something and to call me again in 6 months.

link|flag
show 1 more comment
vote up 14 vote down

In an interview for a mid-level firmware position, we started asking about memory mapped I/O. As the candidate had listed several embedded projects on their resume (in C and assembly), we figured it would be a softball question.

His answer was kind of shaky, so we asked if it would be easier to explain on the whiteboard.

He went to the board and stared at it. His hands got shakier and shakier, he started to sweat so much it was dripping off his forehead and he was hurriedly wiping it with his hand. I really can't convey how radical the change was - the man went from calm, happy, and collected to a complete wreck in just a minute or so.

Honest to goodness, 10 minutes at the board produced a function name and an open curly brace. The room was disturbingly quiet. We became concerned and tried to help, asking for just pseudo code, trying to form smaller questions, asking about bit masking, etc. Eventually one of the other interviewers asked how you could get the memory address of a variable in C. The candidate turned around, sat down, and said, "I won't be able to do that." From the time he went to the board until he left the meeting room, he never looked at any of us.

After the interview was over, the other interviewers and I were very confused. I talked with my supervisors about trying to come up with a better way to interview him. Turned out that, despite a strong resume, they couldn't get any sort of technical read on him via e-mail or phone, so they had decided to fly him in. Considering the flight cost and the poor interview, they didn't want to invest any more effort in him.

link|flag
7  
Poor guy. It sounds like it was much impossible to tell whether he was cheating with his resume or just really terrible stage fright. – David Berger Jun 3 at 20:09
show 4 more comments
vote up 56 vote down

Me: "What are some differences between static and dynamic type systems?"

Him: "Look, I never needed to know that in my career, so I'm not going to answer that for you now. You ask me how to make money for you and then we can talk."

Me: "How would you make us money?"

Him: "I write the Java codes"

Me: "Thank you for your time."

-m

link|flag
29  
Were you interviewing Homer Simpson? – MasterPeter May 25 at 12:50
3  
I want to see the Java code which earns money by itself! Reinvite him to write this money making code ;) – Martin K. Jun 3 at 20:08
show 2 more comments
vote up 8 vote down

I once had the following conversation in an interview:

Q: So have you ever written a sort?

A: No

Q: Ok so how would you put a list of integers in order?

A (on whiteboard):
for (i = 0; i < MAXINT; i++)
for (j = 0; j < sizeof(array); j++)
push sorted_array, i;

Q: Uh.. Ok can you see any way to make this more efficient?

A: No

link|flag
1  
I don't understand why MAXINT is involved. – moffdub May 20 at 22:34
1  
ummmm, does that create an array that just cycles through integers up to sizeof(array) and then repeat itself MAXINT times? – David Berger Jun 3 at 20:12
4  
@David Berger: yes, and in the most efficient possible manner. – harpo Jun 3 at 20:37
show 1 more comment
vote up 2 vote down

This happened just last week (keep in mind the resume of this candidate showed 7 yrs of experience)

Q: How would you call an Oracle stored procedure in your java code?
A: I would use JDBC technology to call the stored proc.

Q: Could you please elaborate on the exact steps/code how would you do it in Java?
A: Well, I will write a Java program and there I will write a 'main' method and from the main method I will use the JDBC technology to connect to oracle and call the stored procedure.

Q: Don't you think this is a very generic answer? Would you like to elaborate a little more on exactly how would you do it?
A: I will use Java 1.5 and JDBC 2.0 to connect to the database and call the stored procedure.

link|flag
2  
Senator, may I remind you that you are under oath! – moffdub May 20 at 22:48
vote up 7 vote down

We'd reached the "what can I tell you about us?" point of an already shaky interview and he asked "Will you hire my girlfriend when I start?"

This from a guy interviewing at KPMG Consulting for a customer-facing position in flip-flops, dirty t-shirt and corduroys with what looked like battery acid holes in them.

link|flag
2  
showing up for a "customer-facing position in flip-flops, dirty t-shirt" was only "shaky"??!?!? – Fowl Jun 5 at 11:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.