vote up 5 vote down star
8

We have a process in place here for hiring developers however it's undergoing an overhaul as there have been a few issues in the past that probably could have been identified in the interview process, but weren't.

I'm just wondering what sort of hiring/interview process you guys and gals put your candidates through.

(N.B. We're a pretty small company so we don't have a dedicated HR Dept. or myriad of Development staff to conduct google-esque interviews. At the minute it's CV + 2 Face-to-Face meetings)

EDIT

Just for reference, some of the other things we're considering adding are.

  • Telephone interview to screen candidates on the obvious Who you are, why are you job hunting etc... type questions...

  • In-interview pen & paper pseudo-code question

  • Pre-interview Q & A code questions. I'm thinking something along the lines of the project-euler problems. I'm not too worried about them cheating/googling at home, just that they can bring it back it to the interview with them and talk their way through the solutions

flag

7 Answers

vote up 5 vote down

If you're hiring developers, there are two types of interviews and they depend on the experience level of the developer you want.

If you're hiring someone straight out of school or their first job as a developer, then you have to find out if they technically know what you're talking about and some of the previous responses address that.

However, if you're looking for experience, trying to test them in the interview process by asking for code or pseudo-code is a complete waste of time. If you're looking for an experienced developer, and I say this as having been on both sides of the desk and having started my career 30 years ago, there are at least two things more important than asking someone questions with syntax answers:

1) Check their references. See how they were in previous jobs. You want to know what kind of employee they were? Ask the people that used to work with them.

2) Ask META questions. The technicals details are NOTHING if the person isn't good at problem analysis or can't get along on a development team. Ask for HOW they would solve a problem, not what code they'd write to solve it.

This is all far more important than if they can write the most efficient sorting algorithm.

I've had people ask a couple of technical questions on phone screens and that's not too bad, depending on how many people you're sorting through and how much experience they should have. There's certainly nothing wrong with asking questions like "Have you ever used .NET remoting and, if so, how?" But taking time to to set up meetings, clearing people's schedules and wasting some of that time physically writing code? That's slow and inefficient to say nothing of the old "ask 10 programmers to code a routine" problem - how do you judge the results?

Talk to the person. Get a better feel for who they are. Ask them what challenges they overcame in previous positions and how they worked through it. How did they work together with other members of the team? What tools were used? Did they ever have to learn completely new tools without supervision? Do they know when to stop beating their heads against a brick wall and ask for help?

link|flag
I voted this answer up, even though I disagree with checking references, because it's meaningless. Nobody is going to give you references to anyone who is going to criticize them, and most companies today forbid employees from giving references anyway. Other than that, great answer. – ApplePieIsGood Dec 14 '08 at 1:16
I mostly included the "check references" in there because (and this came as a surprise to me) people WILL lie about that - putting in non-existent references or not knowing where a previous co-worker might have moved (purposefully putting a bogus company name in there) – David Dec 16 '08 at 14:50
I think checking references is worth the 5 minute phone call. We learned that one applicant was a bad communicator. We suspected that in the interview, and the reference confirmed our concern. – ScottE Jul 1 at 22:38
it certainly is. We had someone applying for a security position at an old company I worked at and he claimed to have worked for the L.A. County Sheriff's Department. They have records of everyone who worked for them. A quick phone call to their main offices resulted in them saying they'd never heard of the guy and they had everyne in their systems who'd worked for them since the mid 1970s. Needless to say, the individual never got the job. – David Jul 2 at 12:36
vote up 1 vote down

"The Guerrilla Guide to Interviewing" (Joel Spolsky)

link|flag
vote up -1 vote down

We screen a lot of developers for our clients (we are an IT staffing/recruiting company). Sometimes we use some Brainbench tests for our candidates but mostly we do 90% of the screening and when they get to an in-house interview with our client the client usually tests them by having them them write some code, etc.

If the candidate has made it past our screens and the client initial interview then the code part is usually the final part.

link|flag
vote up 3 vote down

A good approach that has worked for me (and on me) in the past is to start out asking the brain-dead-easiest questions you can about a technology on the applicant's resume. This helps break the ice and sets the interviewee at ease. Ramp up the difficulty of the questions until you find out where the ceiling of their knowledge is at. Finish off by having the applicant solve a simple programming problem (whiteboard is okay, but I prefer using a laptop) in your target language, just to make sure they can finish a piece of working code. The problem you choose should be something you've actually had to do at your job, in order to reduce the risk of them having heard the problem before.

link|flag
Great minds think alike. I use almost the same procedure. One thing I do is ask the candidates to self-rate their skills from zero ('I never heard of that') to ten ('I invented it, or wrote the seminal book'). This helps me know which ramps to climb, and tells me if the applicant knows himself. – Jim In Texas Mar 22 at 2:22
vote up 0 vote down

Put some coding tests for example the FizzBuzz problem, and other related problems that your candidates must solve within a time frame.

link|flag
vote up 1 vote down
  • Make sure you get them to write some (at least) pseudocode during the interview.
  • Take notes during the interview so you won't have to rely on your memory later on.
  • Ideally have a standard template of areas/topics that you should consider for every candidate (only has to be a one-pager) so you remember to ask every candidate about everything that you care about (and you comparisons between candidates will be fair).
  • I like to ask candidates a fairly easy question first -- something a bit open-ended. That way it gives them a bit of confidence and gets them talking, and hopefully leads to discussion.

I try and avoid straight question-and-answer interviews, since that doesn't give a good feeling for the candidate. Ideally the three of us (2 interviewers, 1 candidate) can have a bit of a conversation and get to know each other whilst also covering all the necessary topics of the interview. It makes for a more relaxed interview, and the whole point of the interview is to get an idea of what they're like technically and personally in a very short space of time.

link|flag

Your Answer

Get an OpenID
or

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