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
8  
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
6  
@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
7  
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 -3 vote down

Tell me about yourself.

link|flag
1  
I'm a 36-24-34 blonde with blue eyes :-) – Cristian Ciupitu Oct 2 '08 at 9:12
vote up 0 vote down

I ask "Why are you here ?"

link|flag
1  
I like this one.Its designed to test is the candidate can understand user requirements. He asks "Why are you here?" but he means "Why do you want this job?" – Dave Turvey Apr 6 at 8:29
show 5 more comments
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 -14 vote down

If they are interviewing for a .Net job, ask them about the favorite episode of .Net Rocks. If they can't answer you with a few that they really love, then ask them if they have any questions for you and politely say goodbye.

Ask them what they think of stackoverflow.com. If they don't have any opinion on it, then the interview is over.

Ok, so these are a little too simplified. But you should really seek questions that aren't loaded like mine above to let them show you how passionate they are about software, or frankly life in general. Most passionate programmers are just as passionate about other things as well. Ask them what they like besides coding.

link|flag
show 5 more comments
vote up 8 vote down

How do you recognize a great programmer?

link|flag
vote up 16 vote down

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

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

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

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

What is your main intention to join this job in our company.

link|flag
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 0 vote down

Spout off a couple of acronyms and ask them what they think.

Make sure that you phrase the question as if Michael Scott from The Office was the interviewer.

Remember that it is important to say S.E.O. and not Search Engine Optimization. Also, an incorrect contextual use of the acronym is key.

For instance, "If you were to approach our private secure intranet from an SEO perspective, what programming language would you choose to improve our ROI in Google Adwords?"

Since it is unlikely that the private intranet is being crawled by Google, the question doesn't make a lot of sense. If they can patiently explain, without being arrogant, why the question makes no sense -- and if they ask reasonable questions to figure out the problem that you are trying to solve, then it is time to start asking them actual questions about programming.

link|flag
3  
Remember the interviewer is on trial too. If I was asked this question I wouldn't be coming back for a second interview. – John Nolan Sep 26 '08 at 8:03
show 6 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 0 vote down

Ask them to make a simple "Hello World" program.

Then ask them to establish a database connection and make a simple SQL statment from that database.

Most of them were stumped at second step.

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

Write a program, that tells how many numbers from 1 to 100 are not dividable by 3?

Can be in pseudo-code, or BASIC/PHP/C or whatever the candidate feels confortable with (But not brainf*ck :-)). Simple Example:

count = 0
foreach i in 1 to 100
    if i % 3==0
        count = count + 1
print 100-count

Wrong:

Floor(100/3)

Because the question was: ... are not dividable...

Correct:

100-Floor(100/3)

This show very fast if any programming skills are available.... and how good they are :-)

link|flag
1  
Every number is divisible by 3. – hobodave Sep 30 at 18:25
show 6 more comments
vote up 3 vote down

What open source projects have they participated in?

link|flag
show 2 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 0 vote down

Someone applying for a coding job needs to be able to write code. Ask them to solve a basic algorithmic problem in whatever language they'll be using on the job.

I usually have them reverse a NULL-terminated string in place, or reverse a singly-linked list, in C. It's a pretty trivial problem, but it's quite astounding to me how many people fail at this.

I have many data points, and the results are nearly 10%: people who can solve one of these problems quickly (in 5 minutes or less) will turn out to be good programmers. And people who can't, won't.

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

What software have you shipped to customers?

I generally want to hire someone that has shipped bugs to customers*, so that they've already learned how expensive/painful it is to live with low-quality software.

*shipping software == shipping bugs

link|flag
vote up 1 vote down

What aspects do you love about programming?

link|flag
vote up 0 vote down

My old HR manager taught me to use the classic: "What are your three strengths, and three weaknesses?"

Surprisingly effective, if only because I'm constantly amazed at how many candidates fail to prepare for this question.

Aside from that, just sitting them down with a piece of paper and some programming exercises is very effective.

link|flag
1  
The three strengths and weaknesses are Laziness, Impatience, and Hubris. – Cristian Ciupitu Oct 2 '08 at 9:41
show 5 more comments
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 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 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
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
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.