vote up 0 vote down star

What are good coding questions that can be given for potential employees to evaluate their programming skills as well as knowledge of best practices and standards?

This is not about "interview" questions. This is about having candidates actually write a program using an IDE to demonstrate their knowledge.

flag

Having someone sit down at an IDE they may never have seen before would make most programmers look like they didn't know their hands from their feet. – KevDog Sep 23 '08 at 2:49

closed as not programming related by aku Sep 15 '08 at 14:14

7 Answers

vote up 2 vote down check

Check Joel's site

http://www.joelonsoftware.com/articles/GuerrillaInterviewing3.html

link|flag
vote up 1 vote down

Those related to their field of activity.

link|flag
vote up 1 vote down

'Design a function that given three integers tell me if they form a right triangle.'

You would be surprised on how many people this question weeds out. The question is open ended enough to ensure they ask clarifying questions questions, is simple enough to tackle in an interview setting at a white board, and complex enough it can lead into programing style and technique discussions.

Try it out yourself, there are quite a few ways to solve this problem.

link|flag
OK, what's a 'right triangle'? – cschol Sep 15 '08 at 14:12
You mean a valid triangle? or a right angled triangle? – Vinko Vrsalovic Sep 15 '08 at 14:14
A right triangle is a triangle in which one of its angles is 90 degrees. (for those asking) – Justin Standard Sep 15 '08 at 14:15
So, presumably, that's a right-angled triangle. I don't think that's a good programming question; that's a question which tests whether you have a good grasp of geometry, which isn't exactly a required skill for a programmer. – David Precious Sep 15 '08 at 14:22
I may be wrong here, but wouldn't this only work if the assumption was that the integers represented the length of this sides? Strictly speaking, integers don't form a right triangle, lines between points do. If that is the open-ended part of it, I would consider re-framing to Cartesian pairs. – KevDog Sep 22 '08 at 17:13
vote up 1 vote down

I prefer to make these really open-ended: "I have a database with a single table in it, and I want internal corporate users to be able to read and edit the contents of this table using their web browsers. Describe in as much detail as you like the way you would do this."

This gives good insight into the developer's problem-solving skills, their knowledge of modern technology, and their default technology choices. Also the level of detail that they go into gives you a good idea where their strengths lie.

link|flag
vote up 1 vote down

Some questions from Top Coder:

http://www.devx.com/DevX/Door/17707

link|flag
vote up 0 vote down

Lots of good ideas can be found here

questions/tagged/interview-question

link|flag
vote up 0 vote down

I don't conduct interviews, but Sphere Online Judge might be useful if you don't want to set up your own test platform. They already have lots of problems at different skill levels, and accept answers in a lot of langauges. Java vs. C++ is a good exercise regarding string operations. Factorial took me more thought than I would like to admit.

link|flag

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