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

prev 1 2
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 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 0 vote down

What is your favorite part of software development and why?

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

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 1 vote down

For java, a good and simple "weed-out" question is "give me a general overview of java collections".

Moving things around in maps, lists, etc. etc. is such a basic part of most java code that you can't really accomplish much if you don't have a clear understanding of this. After that I'd move on to more specific technical bits.

link|flag
show 1 more comment
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 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 1 vote down

By 'removing the wheat from the chaff' I'm assuming you're referring purely to technical competency.

I find what gets 85% of them is to solve a question using recursion.

It could be as simple as writing a function that calculates factorial or traverses a tree.

The question that gets the next 5% would be to ask them to write code that they would most often intuitively write in a loop, e.g. write a function that reverses each word in a sentence. Then ask them to change it from a function that loops to one that recurs.

Having to abstract it one level gets a lot of them.

Then I'll ask them if they are familiar with tail recursion (if not I'll explain, no penalty) and ask them to rework the solution to be tail recursive. This gets another 5% of them.

For good measure, I also ask them to flesh out most of the utility methods they use like string.Split.

On an aside, these are the conditions I always test in:

  1. The candidate can use their preferred language (we're testing abstract thinking, not language competency).
  2. I always let them have excess to a computer for language reference.
  3. There is never a time limit.

I find this simple process gives me the remaining 5% that I want to hire.

link|flag
vote up 2 vote down

Why do you program?

link|flag
vote up 0 vote down

Start from a basic Library application. Users should be able to search and checkout a book from a list of books. Design both database and the classes. Add more complexity depending upon the design.

link|flag
vote up 0 vote down

Get them to solve a few questions from Project Euler.

link|flag
vote up 0 vote down

I wonder how many of these answers are based on the long term success at hiring productive developers, and how many are merely based on what types of questions make for an interesting/enjoyable interview, from the interviewer's perspective?

It seems to me most companies can't even identify the strengths and weaknesses of their current employees that have been their for months or years... Until they can do that, judging prospective employees in a short interview isn't likely to happen.

Disclaimer: I left a job 6 months ago that had a team of 50 working on a big project for 5 years, that's already 2 years late. They aren't done, and from talking to my old coworkers, there's no end in sight. Or actually the end is still 6 months away, just like it has been for the last 2 years. My frequent disagreements with the way the project was run don't necessarily mean I was right, but if I did agree with them all along I certainly would have been wrong. :D

link|flag
vote up -2 vote down

You have a bowl with 200 fish in it. Of these fish 99% are not guppies. How many fish should you remove so that 2% of what remains are guppies. Show your work.

link|flag
show 2 more comments
vote up -5 vote down

My ten-second interview:

How many seconds are in a day?

If someone can't answer that off the top of their head (without having to calculate it), odds are they haven't read enough code to be a good developer.

link|flag
show 4 more comments
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 0 vote down

In a past interview I was asked to solve a problem not related to programming at all. It was a question about how best to package and ship ribbons (it wasn't a ribbon company).

The interviewer later told me he always throws one off the wall question in the interview to see if you can give a quality answer for a subject you know absolutely nothing about.

I did well, I guess, but I declined the job offer for a better one. That was a good interview.

link|flag
vote up 11 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
5  
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 1 vote down

Depends on the position, but I tend to pick something they claim to know well, ask a simple question about it, and then follow their answer with increasingly complex/difficult/esoteric questions to learn:

  • How well they really know the subject, which gives a sense of their interest and ability to remember details.
  • How well they can organize and articulate their thoughts.
  • What sort of thought process they have: logical/haphazard, transparent/opaque.
  • Whether they'll ask for clarification if they don't understand an intentionally vague question.
  • Whether they are honest when they finally don't know the answer, or if they'll try to fake it.
  • How they react to potentially stressful situations.

For example, I'll ask a C programmer for the output of the two fragments:

for (i=0; i<10; i++) { printf("%d\n", i); }

and

for (i=0; i<10; ++i) { printf("%d\n", i); }

Then I'll ask for the reasoning behind the answers, and if necessary, ask the candidate to rewrite each for() loop as a while() loop. I'm far more interested in the thought process than the original answer.

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

My most effective question is one I almost missed, out of nervousness about the guy I was interviewing with (I had heard stories...): show me how you would lazy-load a member variable that you know will be shared among multiple threads.

[He had to remind me by saying, "is that your final answer". I then saw I hadn't used "check twice, load once"]

link|flag
vote up 0 vote down

I use to ask about the last technical book the interviewed read (and when he/she read it), as well as about the reasons of choosing that book and what he/she learned from there.

I consider that if he/she has passion, ambition, he/she will keep reading.

link|flag
vote up 0 vote down

"Why is the manhole cover round" of course, what else?

link|flag
vote up 0 vote down

My favorite question is: if the system goes down, what might be wrong? and how do you find out the causes? and what to do next?

This series of questions can test if the interviewee is a problem solver and his/her experiences. For the question of possible causes, a good candidate can list a bunch of them, from the system itself to its running environment, for example: disk full, too many open files, OutOfMemoryException, network connection interruption, etc. For the question of how to hunt down the problems, a good candidate may also come up a bunch of methods, like application log, OS log, telnet, dig, jvm profiling, etc. For the question of finding out a solution, this question might be the easiest part. But you can also ask if there are alternative solutions? If so, how to choose one of them? This might be tricky. A good candidate might do a cost-benefit analysis to decide.

link|flag
vote up 0 vote down

This is my favorite:

How would you make a social networking site? Whats your approach?

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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