What single question, more than any other, enables you to sort the wheat from the chaff when interviewing developers?
|
|
For a programming job, the best technique is to ask the candidate to solve a simple algorithm in a white/black board. |
||||||||||||||||||||
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
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? |
|||
|
|
|
|
If you could add one feature to your favorite programming language, what would it be? |
||||
|
|
|
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. |
||||
|
|
|
My favorite programming question was this:
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:
|
||||||||
|
|
|
Interview for a php dev.
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 :) |
|||
|
|
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. |
|||
|
|
|
|
How do you recognize a great programmer? |
|||
|
|
|
|
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. |
||||||||
|
|
|
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. |
|||
|
|
|
|
Show them a really simple code example, with a bit of inheritance involved, and ask them to explain it, line-by-line. |
|||
|
|
Ask a question based on an answer that has just been given. |
|||
|
|
|
|
"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. |
|||
|
|
|
|
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. |
|||
|
|
What open source projects have they participated in? |
|||
|
|
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! :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
|
|
Semi-simple algorithms on a whiteboard are good because:
|
|||
|
|
|
|
Well, I used to ask them to sort a million integers in 2MB of memory, but then stackoverflow.com came along... |
||||
|
|
|
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 :) |
|||
|
|
Why do you program? |
|||
|
|
|
|
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" |
|||
|
|
|
|
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. |
|||
|
|
|
|
What aspects do you love about programming? |
|||
|
|
|
|
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. |
|||
|
|
|
|
Which do you consider the best product/project you have ever worked with? and WHY? |
|||
|
|
|
|
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. |
|||
|
|
