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 |
|
|
I can't tell you how often this happens in phone interviews: Me: [asks interview question about a specific technology] Them: [repeats question as I can hear them typing] [short delay] [I hear a "ding" from IE when Google gives them a list of pages, "click"] Them: [reads from a web page] Me: OK, well, thank you for your time. Don't call me, I'll call you. |
||||||||||||||||||||
|
|
|
(From a very pleasant Nigerian national who came in for a technical interview) "Would you like to hear about my implementation of a mass e-mailing program?" I laughed. |
||||||||||||||||||||
|
|
|
I'll never forget it. I said... "So tell me a bit about yourself... and he replied... "I recently invented the div inside a span." He had it listed on his resume too - just like that - invented it. |
||||||||||||||||||||
|
|
|
"Will you write out a little function for me on the whiteboard here?" "No." |
||||||||||||||||
|
|
|
Q: "What makes you like programming?" A: "I don't" Didn't see that one coming! The interview was for a senior developer position so a certain enthusiasm for the subject matter was more or less assumed. |
||||||||||||||||||||
|
|
|
Q: So write a method to convert a string to uppercase A:
....sadly I am not kidding and this is exact. |
||||||||||||||||||||
|
|
|
My favorite was a candidate that told me object oriented programming was "Where you drag the components from the toolbox in Visual Studio onto the form" I cut the interview pretty short after that and reviewed our pre-screening process. |
||||
|
|
|
The setup: "I'm an expert web programmer, was a DBA for a few years, lots of background in security, yeah I know all about that" The lowball: "Okay, so how would you go about preventing SQL Injection?" The fumble: "Weeell, thats not really the type of thing I've ever dealt with... What is it exactly?" Priceless. |
||||||||||||
|
|
|
In an interview not too long ago, I was starting off the discussion by giving my sixty second introduction to our group with a quick sketch of the major data flow components when the interviewee interrupted me with: "Too many words!" I think I stared at him for a good thirty seconds before I was able to speak. |
||||||||||||||||||||
|
|
|
Q: "Can you explain how AJAX works?" A: "It's a new version of web pages that doesn't need HTML" |
|||
|
|
I once asked a candidate "what do you consider to be your forte?". His reply: "I like variables". |
||||||||||||||||||||
|
|
|
A colleague of mine interviewing someone:
then my colleague started having doubts about the sincerity of the interviewee, so he improvised this question :
He didn't get the job. |
||||||||
|
|
|
In interviewing for a entry level tech position, I was asking a candidate to point out various components in an open PC. When I tested him to see if he was guessing and asked him to show me the "flux capacitor", I was amazed he immediately found one! Sadly, it turned out to be a video card. |
||||||||||||||||||||
|
|
|
We were conducting interviews for a .NET web programmer as a team (just 3 of us) and one of our team members made the mistake of asking a personal question instead of sticking to the predetermined set. Q: So, what do you like to do in your free time? A: Well, I like praying... and I like chainsawing. WTF?! This is why we stick to the standard set of questions! |
||||||||||||||||||||
|
|
|
We once had a student here who had about 5 different programming languages on her CV. I started asking design questions, but she knew nothing. So I asked simpler and simpler questions, until I finally asked "Why do you have Java and C# on your CV when you cannot write a single line of code?" She stared at me and finally said "I did not write that I have experience!" So all her knowledge about programming was that there exist 5 programming languages that she could name. |
||||
|
|
|
We asked people to rate themselves from 1-5 on certain topics with 5 being "Guru Level". A candidate rated himself a 5 on network programming. When asked what the difference between TCP and UDP was, he said "I dunno". We realized that anyone who rate himself/herself a 5 was an immediate rejection. They were most likely liars, unaware of their own limitations or were too good (i.e., expensive) for us. |
||||||||||||||||||||
|
|
|
Tell me what you know about Object Oriented Design and Development? Yes I know all about that stuff. I studied that in my last year of college. So tell me a little bit about what you learnt? I learnt all that complicated stuff but it's far too complicated to go into right now. |
||||||||||||||||
|
|
|
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 |
||||||||
|
|
|
Q: What is the extent of your experience in programming? A: I know HTML and I'll learn the rest as I go along. |
||||||||||||||||||||
|
|
|
Q: What do you understand by the term "object oriented development"? A: If you don't use object oriented development, you won't meet your objectives. |
||||||||
|
|
|
OK, this isn’t worth reading, but I was stunned by this guy, so here goes. About 10 years ago I was doing all the tech interviews for a company hiring C++ developers. We were heavy server side lifters and were writing lots of abstract mathematical calcs for Actuaries, and we had some fairly obscure abstraction going on. I had a standard question on the lines of “You’ve an RDBMS storing a representation of road maps for Great Britain, each record has data for length of road, and its end points. Each end point is a name, latitude and longitude, so you can tell if the road goes North south / East west” (basically a simplified sat nav db, but something everyone can get their heads around). The question I ask is “Design a proof of concept prototype, including what objects you’d need and the relationships they’d have, to calculate routes for from and to 5 different points”. Basically I was looking for three things 1) problem solving ability and 2) basic OO knowledge 3) design patterns. Now, I want to stress, I’d be stunned if in 15 minutes in an interview someone whipped out a full and concise design for this, but you can learn a lot from watching people flounder. I had one guy, 5 years of c++, and he rated his knowledge as excellent. I had explained that we were mostly server side, pose him the problem. And he goes “Huh?, what do you mean?” I say something on the lines of “If you had to write this from scratch, what objects would you use, what kind of methods”. Him : “Well, will the UI maintain the records” Me : “There is no UI, you’ve to use the data to calculate the routes, and display the results to the console”. Him : “Console?” Me : “Yeah, in a command prompt” Him: “Okayyyyyyyy . . .” Me (being kind) : “OK, what objects would you need?” Him: Well, what objects do you have to start with? Me (pretending this is a normal question) : You don’t have any objects, you’re designing this from scratch The guy then smiles knowingly and says “This is a trick question right? You have to have a class to inherit from, you can’t just, like, magically create a new class”, and sits back, all smug with himself. I’m stunned, 5 years of C++ and he’s pleased with this answer. I’m still interested to see if there’s more than one developer in the room (his CV read really well) so I say “OK, lets pretend you can, how would you do it”. To which re responds “Look, this is purely theoretical and fairly nonsensical, and I don’t see the point persuing it. Can you give me something more real that I can do something with?”. I wasn’t sure I could, so terminated the interview there. I found it hard to believe how he could be so dumb and arrogant at the same time. MFC, the ruination of many a C++ developer EDIT: Replies Boofus: I'm not sure what you're saying dude, are you being sarcastic, ironic or straight up. Assuming straight up. You can learn a lot about people by giving them an impossible task. We hired people that didn't "do well" with that question. Watching them work at it can tell you how they approach problem solving, do they think in terms of code, data or design. Do they freeze when under pressure, do they become aggressive or defensive, or - like the feckwit above, do they crash and burn spectacularly :) The most interesting interviewers I've had have thrown curve balls, and these often lead to more challenging and interesting work. |
||||||||||||||||||||
|
|
|
"I think that's a really dumb question - why would that matter?" Yes, that's a real response. |
||||||||||||||||||||
|
|
|
From the .com heyday... Q: What is ASP and why do you like it? A: I like it because it's processed on the client side. Needless to say, the interview ended there (and that was only the second or third question). |
|||
|
|
My answer, for the record... The worst interviewee answer was from a CS major who had written pretty much every buzzword in Electrical Engineering on his resume. It turned out he didn't know what any of them meant. When I asked about his undergrad project (a SQL server) all he could tell me was, "you give it a query and it gives you a result. My partner did the internals" Naturally, he didn't get the job... |
||||||||||||
|
|
|
This happened a month ago: Q : How do you rate yourself in JavaScript (out of 10)? Q: Great! Could you write a function to validate an email address? |
||||||||||||||||||||
|
|
|
Q: What is a Linked List? A: I don't really remember my data structures from college. Could you ask me something about the Java collection classes instead, as I know those really well? (For the record, this was a fellow interviewing for a job at another company (leaving). He got the job there even after that answer, with a substantial raise. Yes, the Java collections classes contain a LinkedList implementation... sigh.) |
||||||||||||||||||||
|
|
|
My favourite is interviewing contractors and you pose them a programming question to write some code. At least 60% in our experience will reply with "Sorry, I don't give free consulting". Ummm, so now what? Goodbye. ;) |
||||||||||||||||
|
|
|
Q: "So, why do you want this job?" A: "Well, I don't really have anything else to do." |
||||||||||||||||||||
|
|
|
Note: These questions were asked back-to-back Q: What are the benefits/reasons for normalizing the database used by an application? Q: In what situations should denormalizing the database be considered? Q: So which is it? Does normalization help or hurt performance? Q: Why? |
||||
|
|
|
The worst ones aren't where they say anything in particular: they just don't want to answer. They'd rather give up on a question than explain what their thinking is or to ask for clarifications if they're not understanding. It's a total waste of everyone's time. |
||||||||||||||||||||
|
