vote up 0 vote down star
2

Possible Duplicates:
What is your single most effective interview question?
Practical programming test in interview

What are some effective question to test a real programmer in an interview?

(Inspired from this question)

flag
1  
We had this one already today: stackoverflow.com/questions/1665136/… – Greg Hewgill Nov 3 at 9:40
But that is C specific. – Ravi Nov 3 at 9:41
2  
Ask them to use the search function on StackOverflow to see if a question they're asking already has a tonne of answers. – GenericTypeTea Nov 3 at 9:42
Okay, here's an actual duplicate: stackoverflow.com/questions/137921/… – Greg Hewgill Nov 3 at 9:43
Here's another: stackoverflow.com/questions/32107/… – GenericTypeTea Nov 3 at 9:45
show 2 more comments

closed as exact duplicate by Greg Hewgill, Ravi, mouviciel, Sergio, romaintaz Nov 3 at 10:11

5 Answers

vote up 0 vote down

Chose one or two design patterns and let the interviewee explain them in her own words (or scribbles), when and how she used or implemented them.

Ask about the methodologies and processes she used to work with in the previous job and what her experiences and feelings were about these processes. (e.g. agile, tdd, scrum, rup, waterfall, continuous integration, etc.)

Ask about a personal project and let her explain its architecture, history, quirks and pitfalls etc.

link|flag
vote up 0 vote down

I ask to compare/contract maintainability with efficiency. It’s easy to make a maintainable program more efficient. The otherwise, not so much.

link|flag
vote up 0 vote down

IMHO there's no single question that will allow you to say this guy is a great programmer because he managed to answer it and this other guy is not a real programmer because he didn't answer it. It is through a series of questions that you could get better understanding of the interviewee's capabilities.

link|flag
Thats why I asked some effective "questions" (and not a question) – Ravi Nov 3 at 10:04
vote up 1 vote down

Ask the candidate to write algorithm or psudo code of some algorithm on a board. This is really helpful to test the confidence level of candidate, which is really necessary for a good programmer.

link|flag
vote up -1 vote down

Write a function to generate a fibonacci series:

a) Use no recursion b) Use recursion

link|flag

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