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. |
||||||||||||||||||||
|
|
|
Tell me about yourself. |
||||
|
|
|
I ask "Why are you here ?" |
||||
|
|
|
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 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. |
|||
|
|
How do you recognize a great programmer? |
|||
|
|
|
|
If you could add one feature to your favorite programming language, what would it be? |
||||
|
|
|
Ask a question based on an answer that has just been given. |
|||
|
|
|
|
Show them a really simple code example, with a bit of inheritance involved, and ask them to explain it, line-by-line. |
|||
|
|
What is your main intention to join this job in our company. |
|||
|
|
|
|
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. |
|||
|
|
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. |
||||
|
|
|
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 :) |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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:
Wrong:
Because the question was: ... are not dividable... Correct:
This show very fast if any programming skills are available.... and how good they are :-) |
||||
|
|
|
What open source projects have they participated in? |
|||
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
Well, I used to ask them to sort a million integers in 2MB of memory, but then stackoverflow.com came along... |
||||
|
|
|
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 |
|||
|
|
|
|
What aspects do you love about programming? |
|||
|
|
|
|
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. |
||||
|
|
|
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. |
|||
|
|
|
|
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! :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||||
|
