vote up 27 vote down star
11

I've come up with what I believe are realistic problems to work on during an interview. Frequently I have candidates respond that they cannot code under the pressure of me watching them code (via Live Meeting or Locally). Is this a valid excuse for inability to complete the task (or taking too long) during the interview? If so, what can I do to decrease the pressure during the interview process?

It would seem that being unable to program under this kind of pressure could be problematic in typical employment because there are times when we as developers are fixing code when our manager is standing beside us, or during internal demos with product management. Additionally there is also the pressure that is typical with programming jobs that comes with deadlines (yes, we all hate them) and bug fixes.

Edit: I do my best to not "breathe down their necks" but I don't exactly abandon them during the process. Maybe I will take the "get the hell out of there" approach.

flag
35  
It's a different pressure when you're trying to get employment than when you're trying to meet a deadline. – Nosredna Jun 29 at 19:56
7  
even if you don't physically leave the room, have something else to do/keep yourself busy, so it doesn't seem like you are just waiting for them. ie if you'd rather make yourself available for discussion/questions, that should be fine... – Nader Shirazie Jun 29 at 20:50
1  
@nader: I find the someone in the room to be even more pressuring, because you know that the other person is watching what you do, and is probably killing time waiting for you. At least if he's elsewhere, he might be doing email or work. – Uri Jun 29 at 21:18
1  
I'm not sure "get the hell out of there" is a good idea. Unless you give a trivially simple problems, there's a big chance the interviewee will need some hints along the way. They might get stuck in the middle. So, if in 20 min you come back and the problem is solved, it's good. But if it's not, what does it tell about interviewee? Not much. They made a mistake, that's all. You can't reject someone just because they made a mistake. By contrast, if you actively participate in code writing (give hints, explain requirements if needed), you can learn much more about them. – Igor Krivokon Jun 30 at 1:13
show 3 more comments

36 Answers

prev 1 2
vote up 23 vote down

Yes, coding under pressure shouldn't be a problem, but interview pressure is a very different animal to deadline pressure. So I wouldn't be too quick to put them both together...

link|flag
show 1 more comment
vote up 52 vote down

I personally think that it should be (though my definition of pressure is that there is somebody watching), though I'm biased - I have the same problem.

I am an experienced programmer, and I have also done my share of programming under pressure (e.g., in academic environments such as solving a final exam as an undergrad or teaching as a grad) and believe I did it fairly well. However, I find that when I am writing code while somebody is watching my every tiny move, it is extremely distracting and I fail even the trivial stuff.

In my case, I try to figure out what the interviewer is thinking, and I keep looking for little tells. This is fine for Hold'em, where you have two cards to look at, but not so fine for programming.

Also, I personally tend to initially write with crappy syntax (on a whiteboard) and then fix little things, rather than do a clear line-by-line. Again, in an interview, that's a problem because I am worried that as soon as I don't close that brace or add the semicolon, I will look bad.

In addition, I often find "think aloud" to be distracting. This is acceptable in pair programming, but not in individual programming.

Furthermore, I have been in interviews where while I am writing, the two interviewers keep chatting between them on how they solve the same problem. Imagine that you are trying to code while two other people are reading each other's code aloud to the same problem. This is among the "scare the interviewee techniques".

Finally, some people don't do well with paper or with whiteboard. I am one of them. I like knowing that I can insert lines easily and type at the speed that I think. When I am confronted by a whiteboard or paper, it takes me ages to handwrite, and in my case I also can't really read my handwriting so everything is trickier. Give me a computer and I'll do fine.

So in a nutshell, my view is this: Wanting to make sure your interviewee perform under pressure is a very good idea. Time limits are also a very good idea. However, your prospective hire will never have to code with someone looking over his shoulder like that.

Therefore, give him the task, tell him you'll be back in 20 minutes, and then get the hell out of there!!!. Leave them alone. Give them a phone number for questions or for letting you know when they're done.

Note that I do agree with Drew that it's important to isolate the person from the aid of Google and code samples. I don't consider that pressure, though.

link|flag
19  
+1 for get the hell out of there – Nader Shirazie Jun 29 at 19:22
3  
@Neil: How quickly you accomplish a programming task directly relates to how much time you have to refine / double check / test your work which in turn relates to your chances of getting an acceptable grade which again influences whether or not you loose your academic scholarship (and possibly your sanity) which finally determines how much more loans you need to take out or how much more cash you and your family need to scrape together and in fact whether you will even finish the degree. I'm mildly offended that some people feel that school does not induce pressure in the student. – sweeney Jun 29 at 19:49
2  
This is what we did, pretty much. We put the canidate in the room with a test and left him alone for four hours. The test was a rough thing to finish in the time allowed (I did it barely and I designed the problem) but it seems to be a pretty good way to check skills. We haven't gotten anyone who can't code at all since then, anyway. – quillbreaker Jun 29 at 20:00
show 21 more comments
vote up 1 vote down

I would say that it depends really. How long are these interviews? How complicated are the problems? How realistic is it that you would expect the programmer to be able to come up with a solution in 30 minutes or less without having any idea what might be asked of them.

Sure in my current application I can have answers about what is going on (if not actual fixes) in less than an hour, sometimes 30 minutes. I am familiar with the code and it's behavior for the most part. I have been working with it for over a year now but 85% of the code was not written by me.

I think it might be unrealistic depending on the question asked, not in all cases, but at least for some.

How many "green" programmers are put in situations where they are likely to have to answer directly to "the boss"? I have always seen them paired with a more experienced programmer for a period to kind of help them and guide them.

link|flag
vote up 1 vote down

If a job were a completely stress-free or pressure free environment, then I'd say it would be a good excuse.

However, that isn't the case. Good programmers can program under pressure.

link|flag
3  
Good programmers work for good projekt-planners and so do not have to code under pressure. – BeowulfOF Jun 29 at 19:21
7  
Bad programmers can program under pressure too. Programming under pressure is hardly a measurement of quality. – womp Jun 29 at 19:23
vote up 17 vote down

Absolutely not. You want to see what a potential candidate can come up with without the aid/crutch of Google in front of them while coding. It seems like you've found a pretty good filtering mechanism as a matter of fact--assuming your coding problem isn't too off the wall, the fact that a candidate refuses to/can't perform under these conditions is a definite "NO HIRE" red flag.

To lower the pressure, perhaps just put them in a conference room with a laptop and an internet connection (if access to the net won't spoil the problem) and tell them to work out the problem as best they can in a set amount of time. This avoids the whole "over the shoulder" pressure some people may feel.

link|flag
18  
Why is using Google such a bad thing? There is blatantly stealing code and then there is finding similar solutions, modifying, and implementing them. If I can save an hour by taking 20 minutes to research it, why not? The solution is faster & likely close to as good. Chances are somebody has done something similar before. – bdwakefield Jun 29 at 19:28
3  
bdwakefield: Because interviewers are interested in distinguishing how good a prospect is at figuring things out, and how good they are at finding things out. – mquander Jun 29 at 19:35
2  
The third thing that you should provide in the cconference room is the interviewers phone extension number - it is higly likely the interviewers spec will be faulty and need clarification & discussion. – Neil Butterworth Jun 29 at 19:43
1  
If your interview questions can be answered with merely a quick Google search, perhaps you're asking the wrong questions? Do you want to know if they have memorized sizeof(short) * CHAR_BIT >= 16, or do you want to know if they can solve real problems? – Roger Pate Jun 29 at 19:55
3  
"Here mister Carpenter... build me this shelving unit out of this 4x8 sheet of plywood as here as a test to your proficiency... and no you cannot use a saw" If Googling candidate is a definitive no Hire for you then you are not worth my time as a company – Newtopian Jun 30 at 2:40
show 4 more comments
vote up 11 vote down

Are you literally over their shoulder as they code? That's a little off-putting imo. It's one thing to give someone an hour and a task and then review the code afterward. Quite another to hover over them while they declare each variable.

If you're talking about just whiteboarding an algorithm with pseudocode, that's a perfectly reasonable interview expectation.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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