vote up 24 vote down star
22

What single question, more than any other, enables you to sort the wheat from the chaff when interviewing developers?

flag

55 Answers

1 2 next
vote up 30 vote down check

For a programming job, the best technique is to ask the candidate to solve a simple algorithm in a white/black board.

link|flag
7  
From a candidate's point of view, I would feel inconvenienced by the whiteboard's poor editing features and unclear font ;-) – Hugh Allen Sep 26 '08 at 11:21
5  
@Hugh Allen you can only blame yourself for the font :P – Ólafur Waage Sep 30 '08 at 21:53
3  
I find the use of algorithms as a screening tool pointless. For most dev jobs, the ability to abstract or build sensible class hierarchies is way more important. – Uri Apr 6 at 5:26
5  
A focus on algorithms can get you the people who are math/CS purists who have zero instinct when it come to sensible engineering practices. Depending on what your company does, it may be a good or bad idea. If your candidate passes the engineering part, make sure he understands his big O. – Uri Apr 6 at 5:27
2  
From a candidate's point of view, I would be turned off by the lack of version control on said whiteboard. – Arafangion Apr 6 at 7:04
show 2 more comments
vote up 31 vote down

One that I ask is: Who do you admire from our industry?

Many candidates, the typical its-just-a-job non-passionate programmers, cannot give even one name. Not even 'Bill Gates'.

Sad.


Edit, after receiving comments:

I completely agree with the fact t one doesn't have to admire someone to acknowledge that his/her work is valuable to the industry. So I think the question that best represents what I was trying to ask the candidates is:

Mention the name of one of the influential people in our industry.

If they cannot given even one name, that doesn't tell me much about their ability to code, but definitely affects my decision more than a technical question answered incorrectly.

link|flag
2  
That ... is a great question. I'll be asking it in my next interview. – flowers Sep 27 '08 at 0:54
6  
For the naysayers: so if you were a football club manager, you'd hire a footballer who couldn't name a single famous footballer?! – Benjol Apr 23 at 13:55
show 5 more comments
vote up 24 vote down

Ask about a recent project, the candidate's contribution, and then dive a little into the technique. This will quickly reveal 1) if the candidate really understood what he or she was doing or merely copied/borrowed some existing piece of code, 2) if the candidate can explain his or her work to others.

link|flag
1  
While i agree this is effective, i have found that this becomes really time consuming especially if you enounter talkers. – computinglife Sep 27 '08 at 1:20
show 1 more comment
vote up 16 vote down

What do you do to improve yourself as a programmer, so that you do not feel stagnated, to make sure that your programming skills are always up to date?

link|flag
vote up 16 vote down

If you could add one feature to your favorite programming language, what would it be?

link|flag
1  
If? You're not using lisp, are you? – nilamo Oct 14 at 19:41
vote up 14 vote down

I like to ask candidates if they write code or develop applications as a hobby. If they answer yes to that, it tells me a lot about them; and in particular, how passionate they are about their chosen profession. It is all too common for developers these days to simply do it because it pays well, and not because they love writing code.

That said, there are plenty of great programmers that do not code as a hobby - but they probably used to.

link|flag
5  
+1 I like this question, though I think your second thought is probably pretty common. Most developers I've worked with don't want to spend more time in front of their computers when they get home...something I simply can't fathom ;-) – bedwyr Apr 6 at 5:30
vote up 10 vote down

My favorite programming question was this:

Find the bug in this program:

int main() {
    char *p = malloc(strlen("Hello"));
    strcpy(p, "Hello");
    printf("%s world\n"), p);
}

This worked pretty good for a few years. Some folks recognized the buffer overflow, some didn't. Then one candidate said, with no discernible pause, "Which bug? I see five."

Then I changed the question to "Find as many bugs as you can in this program."

P.s. The five bugs he saw were:

  1. no "#include"s to declare the functions.
  2. wrong signature for main()
  3. didn't check return value from malloc
  4. "strlen()" should be "strlen() + 1"
  5. no "return" statement.
link|flag
4  
6. Extra right-paren in printf() call. But I'm sure you put that in just to see if we were paying attention. :-) Great question! – Adam Liss Oct 23 '08 at 23:54
1  
I believe that "int main()" is considered legal. I know it's not proof, but my copy of the C99 Draft standard uses that in several of its examples. If I find something more concrete, I'll follow up. – Evan Teran Apr 6 at 5:33
show 2 more comments
vote up 9 vote down

Interview for a php dev.

$x = array( 1 => 2 , 2=> 3 );
foreach( $x as $i => $v )
{ 
    print "\$x $i is $v\n";
}

It may look trivial, but if they can't tell you what that gives out ( if they can't even be in the right ballpark ) they have not really used php, and are "chaff". It doesn't mean they're good, but failing that?

Reason being, that 3 lines of code summaries almost 90% of php code.

If you can't use arrays, loops and printing, you're not getting anywhere fast :)

link|flag
show 6 more comments
vote up 9 vote down

I usually start with something along the lines of:

"Tell me about the tools you currently use to do your job."

I'm constantly surprised by the answers I receive to this one. The point isn't to look for a particular tool or technology, (no VI vs Emacs. vs VS.NET arguments) but rather to quickly assess how much experience and passion they might have for this job.

If a candidate stumbles over themselves trying to tell me that they use Visual Studio... we probably don't need to talk much more. (And this happens way more often than I ever would have thought.)

Conversely, if they start talking about NUnit, or Clover, or Nant, or JIRA, or FogBugz, or CC.NET, or whatever, you all of a sudden have a lot of useful stuff to direct the rest of the interview.

link|flag
vote up 8 vote down

How do you recognize a great programmer?

link|flag
vote up 7 vote down

My single most effective interview question is:

"Imagine you're at home, relaxing, and you decide that you want to check the news. You sit down at your computer, fire up your web browser, and enter cnn.com into the address bar. What happens?"

I've received answers ranging from "The page comes up" to a 30 minute disseration detailing canonicalization, DNS, the transport and application protocols, and more. The beauty of this question is that there isn't really a right or wrong answer; It more speaks volumes to the breadth and depth of their domain knowledge.

link|flag
2  
Answer: "How technical of an answer are you looking for?" – Paul Nathan Oct 10 '08 at 18:57
18  
Nothing, you gotta hit enter first – Vatos Apr 6 at 6:37
show 4 more comments
vote up 7 vote down

I like to ask which project (or projects) a candidate is most proud of. This gives them a chance to delve into the details of those projects and usually provides a good sense of the person's passion, capability, skillset, etc.

link|flag
vote up 6 vote down

Show them a really simple code example, with a bit of inheritance involved, and ask them to explain it, line-by-line.

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

Ask a question based on an answer that has just been given.

link|flag
vote up 4 vote down

"What is the difference between a class and an object". If someone can't get that right (and explain it succinctly" I don't want to waste the next 45 minutes to an hour to tech screen them.

link|flag
vote up 3 vote down

Where is your favourite online source of technical information? With a followup of discussing whether the single word "Google" is a reasonable answer to the first question.

Everyone (should) have a favourite, trusted source - obviously SO is quickly becoming that for all of us - and be able to outline why it is their choice. Being able to make that explanation well - and then to reason through the power and pitfalls of the Google search - is a good sign of an analytical mind.

There are two types of knowledge in this world, that which we think we remember well and that which we know how to find.

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

What open source projects have they participated in?

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

What kind of developer you are interested to sort from the chaff?

If you want someone for a "quick, we need someone who can code in xyz for our project" maybe you can focus on strictly technical and/or domain related questions.

If you are want to find some long term addition to your team, some more "all rounded" tests can be made (IMHO). So, don't look to much at correct syntax or such things.

BTW, you must obviously check at TheDailyWTF series on interviews to get a list of what NOT to do! :)

link|flag
vote up 3 vote down

Find a decent software problem worth solving, without any tricks and get them to talk out their solution and then do the psuedo code on it. if that is good enough then get them to write it in a programming language of their choice, syntax is not critical but the basic idea.

Could be fizzbuzz could be something else...

Some people cannot remember exact syntax, or are not great writing on the board/paper but through these 3 methods you will figure out if they have a clue.

You are trying to help them show their worth, not to trick them or to make them look bad.

link|flag
vote up 3 vote down

I like to set a problem 24hrs or so before the interview. Some thing that requires the use of a fundamental algorythm is good, perhaps entailing a quick sort or the use of linked lists etc. The code should be written as they would any production code and the language should preferably be the one the post will entail but could be in any language of their choosing.

They then email me their answer, I get the rest of the team to review the code and mark it out of 100 based on a standard scoring sheet.

I use the returned code to help short list the candidates.

The code is then used as the basis of a set of interview questions along the lines of 'explain why you've used algorythm X'.

It's not so much what they write but HOW they write the code. Does the code contain error handling, use good structure, etc. They should be able to justify why they used algorithm X to algorithm Y. The code could be cut and paste from the internet but what I'm looking for is an understanding of fundamentals and the ability to decide between 2 or more methodologies and know and to be able to justify why they've made the descision.

link|flag
2  
Yay, it's university all over again. – TraumaPony Sep 30 '08 at 7:28
vote up 3 vote down

Semi-simple algorithms on a whiteboard are good because:

  • The point is not to be clever or have heard of it before. It is to get a good guess about how the candidate will operate on a day-to-day basis on day-to-day problems.
  • If there are many solutions, you can see how the candidate approaches many aspects including speed of coding, speed of algorithm, and design quality.
  • By asking them to write in syntactically correct code (in their favorite language, assuming you know it a little bit), you get a good sense for how experienced and comfortable they are as a coder. If they mess up easy syntax, it's a big red flag. If they have poor design or out-of-date / questionable patterns, it's a warning.
link|flag
vote up 2 vote down

Well, I used to ask them to sort a million integers in 2MB of memory, but then stackoverflow.com came along...

link|flag
1  
People like you are why I stopped enjoying interviews :-) – Bob Moore Apr 6 at 10:07
show 2 more comments
vote up 2 vote down

Say you have a text file with one string per line. How do you find the top ten most frequently occurring strings?

I always start with a question where the answer boils down to "use a map" or "use a set" and I let the candidate answer using any programming language or pseudo-code. This particular question leads to lots of great follow-ups about running time and boundary conditions.

I think it's draconian to have one question where if the candidate answers it wrong, you say don't hire no matter what. That said, it's too easy to get it wrong and still get hired :)

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

Why do you program?

link|flag
vote up 2 vote down

I find "tell me about examples of bad programming practice" very effective. You would be supprised at the amount of times I need to give them assistance "OK well maybe if you can tell me about some examples of bad programming practice"

link|flag
vote up 1 vote down

Recursive factorial. doesn't tell if a person knows about a language, but contains enough problem to be discussed to test if the implementor knows what is doing in programming terms. I put this just at start of the interview, to separate early between programmers and experienced copy pasters.

link|flag
vote up 1 vote down

What aspects do you love about programming?

link|flag
vote up 1 vote down

Ask about previous projects that they have worked on, then get them to draw out the architect/UI screens etc based on that project. It will show if they really understood what they were doing.

link|flag
vote up 1 vote down

Which do you consider the best product/project you have ever worked with? and WHY?

link|flag
vote up 1 vote down

The single most effective interview question I had was to write a small program in a langage of my choice ( Python, at the time ) in one hour.

And there was a full review after it, abour code quality, compliance to goals formatting, error handling and all. I remembre doing OK at the time.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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