What interview question weeds out 'bad' applicants? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:41:39Zhttp://stackoverflow.com/feeds/question/19801http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants32What interview question weeds out 'bad' applicants?sparkes2008-08-21T13:04:16Z2009-11-10T23:56:56Z
<p>We have a list of <a href="http://beta.stackoverflow.com/questions/11368/what-is-the-best-interview-question" rel="nofollow">the best interview questions people have been asked</a> and <a href="http://beta.stackoverflow.com/questions/11464/what-is-the-worst-interview-question" rel="nofollow">the worst interview question you've been asked</a> but what question do you believe sorts the chaff from the wheat?</p>
<p>One you've been asked, one you've asked or one you wish the co-worker from hell had been asked. There's no magic bullet but is there one question you think helps the process?</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19807#198073Answer by Nick Berardi for What interview question weeds out 'bad' applicants?Nick Berardi2008-08-21T13:06:28Z2008-08-21T13:06:28Z<p>How many tables are needed for a many-to-many relationship in SQL? Or another way to say this is. Create a schema on paper for a many-to-many relationship between Students and their Courses. </p>
<p>If the applicant just looks at a diagram that shows <em>---</em> they will think this is all that needs to be done. When the obvious answer is 3 tables.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19809#198092Answer by Greg Hurlman for What interview question weeds out 'bad' applicants?Greg Hurlman2008-08-21T13:06:44Z2008-08-21T13:30:57Z<p>No interview should only include technical questions/answers, but for developers in this day and age, you do really need to ask questions to make sure that they can back up the knowledge they claim on their resume... WAY too many people <em>bending</em> the truth these days not to do it.</p>
<p>It depends on the technology, but a few off the top of my head:</p>
<ul>
<li>C#: Drill them on the "new" keyword, in the polymorphic sense.</li>
<li>ASP.Net: Ask about the page lifecycle events - at what point ViewState is loaded into a page, when events fire for controls on the page, including dynamic controls</li>
<li>SQL: Describe the differences between inner/full outer/left outer/cross joins, and when you would use each</li>
</ul>
<p>For example, assuming they knew that C# had a different use for "new":</p>
<pre><code>public class parent
{
public void myFunction() { }
}
public class child : parent
{
public void myFunction() { }
}
</code></pre>
<p>Given the above code, will it compile (yes, with a warning)? How do you clear the warning (add the "new" modifier to the child function definition)? When would the parent's version of the function be called vs. when the child code would be called?</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19812#1981236Answer by Ian Nelson for What interview question weeds out 'bad' applicants?Ian Nelson2008-08-21T13:07:09Z2008-08-21T13:07:09Z<p>"What's your Stack Overflow reputation?"</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19816#198161Answer by ninesided for What interview question weeds out 'bad' applicants?ninesided2008-08-21T13:08:17Z2008-08-21T13:08:17Z<p>What is the difference between an inner and outer join in SQL?</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19818#198183Answer by John Downey for What interview question weeds out 'bad' applicants?John Downey2008-08-21T13:08:40Z2009-11-10T23:56:56Z<p>I think asking someone what they do in their free time to better their understanding of technology is a good one. It is definitely a positive sign if they read blogs, contribute to open source, or tinker with projects. Beware those who can come up with nothing they do in their free time related to technology.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19821#198213Answer by Nick Berardi for What interview question weeds out 'bad' applicants?Nick Berardi2008-08-21T13:09:34Z2008-08-21T13:09:34Z<blockquote>
<p>C#: If they say they've been using it for more than 3 years, drill them on the "new" keyword, in the polymorphic sense.</p>
</blockquote>
<p>I am not even sure what you mean @Greg, and I have been using it for close to 7 years now. :)</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19823#198235Answer by KiwiBastard for What interview question weeds out 'bad' applicants?KiwiBastard2008-08-21T13:10:55Z2008-08-21T13:10:55Z<p>I think direct correct answer questions aren't that useful. It's relatively easy to memorise bullet points about a language or framework before an interview.</p>
<p>I usually ask questions that require a bit of thought to answer by the applicant.</p>
<p>Things like:</p>
<ul>
<li>what are your views on ....</li>
<li>How would you implement x based on assumptions y</li>
<li>describe the architecture of the current application you are working on - what are the strengths and weaknesses of it</li>
</ul>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19825#1982559Answer by Forgotten Semicolon for What interview question weeds out 'bad' applicants?Forgotten Semicolon2008-08-21T13:11:02Z2009-11-10T23:46:12Z<p>What do you do to stay current in software development? Elaborate.</p>
<p>From this question, I'll be able to judge how passionate they are about SD. Did they say books? Blogs? Forums? Then refine, and ask which ones. What particular passages/posts/threads struck an interest for you?</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19831#1983115Answer by Shaun Austin for What interview question weeds out 'bad' applicants?Shaun Austin2008-08-21T13:15:19Z2009-11-10T23:48:22Z<p>I'm not sure if just asking questions can really weed out the bad candidates. It's very easy to learn a bunch of stuff to do with .NET and C# for example and repeat it in an interview. In fact there are literally thousands of sites listing "interview questions and answers" that are easily googleable. </p>
<p>I personally think you learn more about a person's abilities by giving them a programming task to complete. Nothing too hard but enough to stretch them, they don't even need to complete it but at least show how they approached the problem and what depth of knowledge they have. If it's possible to actually sit with the interviewee and get them to talk through their approach to the problem as they go, with you asking questions along the way, you not only get an idea of their technical abilities but also how they communicate and if they are likely to "fit in" with the team.</p>
<p>If that isn't possible for whatever reason then I would suggest more open-ended questions and scenarios to get them talking rather than strict question/answer.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19833#198333Answer by Barrett Conrad for What interview question weeds out 'bad' applicants?Barrett Conrad2008-08-21T13:16:22Z2008-08-21T13:16:22Z<p>I actually find how people use language is one of the best indicators. When interviewees avoid technical terms and cultural/community lingo, I usually associate that with limited experience or a lack of confidence. On the other hand, jargon bombing is a dangerous sign as well. Much like the old adage that if you can teach it you know it, anyone who can keep up a substantive conversation on a technical topic, like you would have with a successful teammate, without being lead is strong candidate. </p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19834#198341Answer by Kibbee for What interview question weeds out 'bad' applicants?Kibbee2008-08-21T13:16:41Z2008-08-21T13:16:41Z<p>What is an SQL Injection attack, and what are the various means of protecting against them.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19836#198361Answer by Mark Ingram for What interview question weeds out 'bad' applicants?Mark Ingram2008-08-21T13:17:11Z2008-08-22T11:01:41Z<p>Any of the following might be good:</p>
<ol>
<li>What is virtual inheritance?</li>
<li>How would I delete the following
variable: int* pVar = new int[512];</li>
<li>What do the following "const"
declarations mean? const T* const
pMyVar;</li>
<li>How do I find out if a number
contains the binary flag 0xFF?</li>
</ol>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19847#1984722Answer by AlexCuse for What interview question weeds out 'bad' applicants?AlexCuse2008-08-21T13:21:42Z2008-08-21T13:37:07Z<p>I can't find it at the moment (I'll do some more searching in a bit) but I recall someone's blog post a few months ago where the writer simply asked the applicant "what bothers you the most about other people's code" (or something along those lines).</p>
<p>The gist of it was that the "bad" applicants almost always would point out things like code formatting, and maybe slight syntax differences. The "good" applicants would point out things like what patterns could have been used, the KISS principle, etc...</p>
<p>This one has always stuck with me, and I've actually been asked it a couple times (maybe worded differently)</p>
<p><em>edit here is the blog post I referred to: <a href="http://www.noop.nl/2008/04/the-perfect-job.html" rel="nofollow">The Perfect Interview Question</a></em></p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19848#198482Answer by mmattax for What interview question weeds out 'bad' applicants?mmattax2008-08-21T13:21:55Z2008-08-21T13:39:08Z<p>IF the candidate is relatively young, or just out of college: I would ask a candidate to see some projects / code that they have worked on outside of work. If they can produce that, you know that coding is more than a job; rather it is something that they enjoy doing, and probably excel at it. </p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19849#198490Answer by Eric Z Beard for What interview question weeds out 'bad' applicants?Eric Z Beard2008-08-21T13:22:05Z2008-08-21T13:22:05Z<p>@Greg</p>
<blockquote>
<p>Given the above code, will it compile (yes, with a warning)? </p>
</blockquote>
<p>What warning?</p>
<p>Checking knowledge of new vs. override is one of the things that I ask. Sadly, many .NET developers with years of experience can't answer the question.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19850#198509Answer by Kronikarz for What interview question weeds out 'bad' applicants?Kronikarz2008-08-21T13:22:22Z2009-11-10T23:51:13Z<p><a href="http://steve.yegge.googlepages.com/five-essential-phone-screen-questions" rel="nofollow">This article</a>, entitled "The Five Essential Phone-Screen Questions", by Steve Yegge, is a good read.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19861#198615Answer by Kristopher Johnson for What interview question weeds out 'bad' applicants?Kristopher Johnson2008-08-21T13:28:13Z2008-08-21T14:02:25Z<p>A former boss used to ask what I thought was a very simple programming question: Write a function that swaps the two bytes of a 16-bit value. About 75% of the people we interviewed couldn't do it.</p>
<p>Another "simple" question: What is the hexadecimal representation of the decimal number 13? Most candidates had no idea, including a candidate with a Ph.D. in Computer Science.</p>
<p>These candidates were applying for C/C++ embedded-systems development positions, so low-level questions about bits and bytes shouldn't have been considered tricky.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19872#198721Answer by Guy Starbuck for What interview question weeds out 'bad' applicants?Guy Starbuck2008-08-21T13:31:51Z2009-05-29T20:59:00Z<p>On the StackOverflow podcast, Jeff and Joel suggested that as an interviewer, going in having no set questions but just running through the resume is a bad thing. But in my role, I'm usually the technical interviewer, and I like to do just that -- I want the candidate to explain, in their own words, the architecture of each project they have worked on, and where the good, bad, ugly aspects of the architecture and the code were, and what they would do differently.</p>
<p>The other thing I am always listening for is a <strong>real</strong> understanding of OO principles. I have found that if someone has used interfaces, inheritance, etc. in their work, and knows intimately how to use them and talk about them, that is a sign that they have a really good grasp of software development in general.</p>
<p>This is the approach I use for interviewing junior to mid-level developers, and I have had a really good track record with it succeeding.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19910#199101Answer by Scott Bennett-McLeish for What interview question weeds out 'bad' applicants?Scott Bennett-McLeish2008-08-21T13:38:53Z2008-08-21T13:38:53Z<p>I've found that when in the situation of having a Human Resources person and a techie / IT manager etc. it can be effective to alternate between HR questions and IT questions. This can be a good way for the candidate to shine or alternatively come unstuck if they've been hanging on with their up to this point memorised list of ASP.net-isms.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19932#199326Answer by Pete for What interview question weeds out 'bad' applicants?Pete2008-08-21T13:44:31Z2008-08-21T13:44:31Z<p>I think that there are two things that quickly determine if the person is someone that would be good on our team.</p>
<ol>
<li><p>How do you keep current with your skills? Name 3 examples of something you've done in the last few months that shows that.</p></li>
<li><p>Explain the difference between a class and an interface. What is polymorphism and how does it relate to those two?</p></li>
</ol>
<p>There are other technical and personal questions, of course, but if I don't really get good answers to those two, the interview doesn't go very much further. </p>
<p>The first question is vital. Too many people allow their skills to get stagnant. The kind of person who is always seeking to make themselves better are the kinds of people that you can expect are going to give you a little something more.</p>
<p>The second question crosses many language boundaries and since OOP is at the core of almost all current language technologies, it tells you if the person has actually done any real programming in the past.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19951#199516Answer by Christian for What interview question weeds out 'bad' applicants?Christian2008-08-21T13:50:32Z2009-11-10T23:53:46Z<p>I'm interested in whether a candidate is a good engineer, as well as a programmer. I ask two things that make it clear whether the candidate is real or not:</p>
<p>"<em>Give me an example of something you did that turned out to be a mistake, how you fixed it, and what you learned.</em>"</p>
<p>I'm really only interested in what they learned: learning from our mistakes (bugs, design problems, deployment issues) is critical. I find only about 1/3 of candidates have a good answer. Nearly 1/3 haven't learned <em>anything</em>!!!</p>
<p>Next, I'll pick something "big" from their resume and ask them to describe it in detail. Often this shows the real deals from the ones with the padded resumes.</p>
<p>Only after all that will I bother with the technical questions. If they fail on the first two I'll end the interview.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19957#199572Answer by Rob for What interview question weeds out 'bad' applicants?Rob2008-08-21T13:53:42Z2008-08-21T13:53:42Z<p>I think that the type of question that you ask is likely going to relate to the level of the position you are interviewing for, but there are some general questions that you can ask that should apply to all levels. For example:</p>
<ul>
<li>"What are your thoughts on [LATEST TECHNOLOGY EVERYONE IS TALKING ABOUT]?" - This question can give you an impression of how current they are with what the "state of the art" and if they have been keeping up with the changing times. Likewise, if they aren't familiar with it the reason that they give can be quite enlightening.</li>
<li>"Describe some programs that you have written on your own?" - This can apply to both single person projects at work, or at home and can lead to some very enlightening follow up questions (ex. "Do you use version control for you hobby projects?") that can give some insight into their work habits and technical interests.</li>
<li>"What references do you commonly refer to throughout the day?" - You would hard pressed to find anyone that doesn't use any references what so ever, so where they turn to for answers can also be enlightening.</li>
</ul>
<p>Then, depending upon the position the person is being interviewed for you can start looking at more specific technology based questions. However, as some other posters have pointed out, just because you have been working with a language for awhile doesn't mean that you know everything about it, so you should be a bit forgiving if they don't answer everything off the top of their head.</p>
<p>Finally, I think that the ultimate interview question is to have the interviewee sit down at a workstation that is configured the same as they would be working at on day one and have the write a simple program. Ideally, the program would have some component in it that they need to look up so you can also see how they react when confronted with something they don't know off the top of their head.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/67343#673433Answer by enricopulatzo for What interview question weeds out 'bad' applicants?enricopulatzo2008-09-15T21:48:54Z2008-09-15T21:48:54Z<p>"What books have changed the way you work and why?" is a favorite of mine. Since so few developers seem to read books these days actually getting an answer to that question that has any depth will be a good start for determining sheep from goats, so to speak.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/67459#674590Answer by Garth Gilmour for What interview question weeds out 'bad' applicants?Garth Gilmour2008-09-15T22:01:01Z2008-09-15T22:01:01Z<p>A great indicator is the length of time people spend answering open-ended questions.</p>
<p>E.g.</p>
<ul>
<li>Do you have a favourite design pattern and if so why?</li>
<li>How has the first programming language you learnt affected how you approach others?</li>
<li>When would you consider a piece of code as being complete?</li>
<li>What features do you think should be in the next big programming language?</li>
</ul>
<p>If they are still going after 15 mins then you have a winner :-)</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/67538#675381Answer by Gilles for What interview question weeds out 'bad' applicants?Gilles2008-09-15T22:11:38Z2008-09-15T22:11:38Z<p>What programming projects have you done that are not on your CV?</p>
<p>If the answer is none or school projects only, this person is probably not passionate about programming. All good programmers I know have made dozens of various scale projects in their free time, some of which they might have even forgotten that they ever did.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/67545#675450Answer by rp for What interview question weeds out 'bad' applicants?rp2008-09-15T22:13:31Z2008-09-15T22:13:31Z<p>Explain, generally, what the differences are between a value type and a reference type. </p>
<p>rp</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/67604#676040Answer by Ryan Delucchi for What interview question weeds out 'bad' applicants?Ryan Delucchi2008-09-15T22:26:34Z2008-09-15T22:26:34Z<p>Ask fundamentals about the internals of basic data structures or constructs within the language (or languages) that applicant is expected to know. "Writing code" over the phone is tricky but a lot of the basics can still be covered. Understanding Hash Tables, Binary Search, and a sense of run-time efficiency are good examples.</p>
<p>If given the opportunity for a face-to-face screening: Ask an open-ended design problem. That is, do not simply ask the candidate to "Make a class with member A, B and C that does X". In other words, instruct the candidate to write a class that satisfies a list of constraints. Even if the open-endedness of the question leads to confusion, how the candidate seeks clarification and thinks through the problem, when it is presented in this way, can be very revealing. </p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/328443#328443-2Answer by Steven A. Lowe for What interview question weeds out 'bad' applicants?Steven A. Lowe2008-11-30T04:34:03Z2009-11-10T23:43:18Z<p>I don't bother with obscure language questions or general CS knowledge unless interviewing someone with very little experience. Instead, I go through their resume and for each significant "achievement" such as "wrote a whizbang processor in language foo" that they list I ask the following questions:</p>
<ul>
<li>What business need did this solve or business benefit did this provide?</li>
<li>What return on investment (ROI) did the business reap from your solution?</li>
<li>How was the ROI measured or estimated?</li>
</ul>
<p>In general:</p>
<ul>
<li>If they <em>don't know</em> then they're <strong>code monkeys</strong></li>
<li>If they <em>do know</em> then they're <strong>developers</strong></li>
</ul>
<p>[I prefer developers over code monkeys]</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/552246#5522461Answer by utku_karatas for What interview question weeds out 'bad' applicants?utku_karatas2009-02-16T04:13:23Z2009-02-16T04:13:23Z<p>I haven't tested this on anyone but I think you can weed out a bad applicant for a coding position simply by asking to implement an <strong>iterator for a tree data structure</strong>.</p>
<p>Possible responses would be..</p>
<ul>
<li>attempting to use a <strong>yield</strong> expression if the language permits. (Great!)</li>
<li>trying to implement a recursive/non-recursive solution. (OK-ish)</li>
<li>fail to come up with any solution (major doubt about his/her skills)</li>
<li>doesn't even know what an iterator or a tree is. (straight to the airlock :-))</li>
</ul>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/891800#8918000Answer by James for What interview question weeds out 'bad' applicants?James2009-05-21T07:46:37Z2009-05-21T07:46:37Z<p>Strangely enough: in the language of your choice, write function to solve </p>
<p>For instance: given two arrays, return an array containing all elements common to both arrays. </p>
<p>Great: solves it efficiently (O(n) solution, assuming proper hashing)
Good: solves it better than brute force O(n lg n or better))
Eh : solves it with an O(n^2) loop (better than nothing)
Bad: manages to botch it in some way unimaginable. </p>
<p>While the above is admittedly a very simple question, it's surprising the number of people who can't solve it. If you have a clue, you solve it in < 5 minutes and we move on to better topics. If you can't, it's telling. </p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/928157#9281570Answer by tomlog for What interview question weeds out 'bad' applicants?tomlog2009-05-29T21:06:41Z2009-05-29T21:06:41Z<p>Two questions that our company tends to ask is to write a random number (<100) in binary and after that do the same in hexadecimal. </p>
<p>It is surprising to see how many applicants cannot do this, though it's one of the most basic things that a developer should know (as in, have learned it in uni but not necessarily use in their daily job).</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/1711977#17119770Answer by whybird for What interview question weeds out 'bad' applicants?whybird2009-11-10T23:27:08Z2009-11-10T23:27:08Z<p>I had an applicant once who looked fine on the CV, and then I asked him this:</p>
<p>"In any languge you would like, write a function that takes a string input and returns the same string reversed."</p>
<p>My plan was to look for things like forgetting about terminating /0 chars, would it work with a zero-length string, unexplained oddities of approach, and even if they got everything right asking them if they could see the bug in their code just to see what they would do. It worked great.</p>
<p>This one guy, however, turned up, and actually just plain couldn't do it. At all. Had no idea where to start. Couldn't even write a pseudocode version. It was excruciating (especially for him; I made him suffer at trying it a bit.) My associate said to him "You do know this is a programming position, right?".</p>
<p>It was surreal, and shows how you can't trust a CV at all.</p>
http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/1712030#17120300Answer by wheaties for What interview question weeds out 'bad' applicants?wheaties2009-11-10T23:37:48Z2009-11-10T23:37:48Z<p>What's the difference between an interface and an abstract class? Why would you use one over the other?</p>
<p>That one right there eliminates half the people. It's so basic too.</p>