vote up 17 vote down star
6

Assuming:

  1. Typical interview stress levels (I am watching)
  2. Using familiar IDE and program language (their choice on their PC!)
  3. Given adequate explanation and immediate answers to questions
  4. Able to compile code and check answers / progress
  5. Claims to be a senior level programmer

How long should it take an interviewee to answer FizzBuzz correctly?

Edit: FizzBuzz: Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

Edit: It isn't so much that if they take more then X minutes they are disqualified, but I am curious if I should just cut them loose after they work on it for half hour.

flag
3  
You mway want to explain FizzBuzz to people who might not know what it is. – JackM Jun 29 at 20:35
7  
It's inconceivable that anyone who has ever written a working piece of software could work on this for more than five or ten minutes. – mquander Jun 29 at 21:21
2  
This is the exact problem as one of the Facebook quizzes. The one that tests ability to submit correctly. This program should require 5 minutes max, and that's to set up and compile. The actual code should take < 1 minute. – Artem Russakovskii Jun 29 at 22:28
4  
What do you mean by "brainteaser" exactly? Is the objective to see if the interviewee doesn't fall asleep while doing boring, menial work? I guess if the world didn't have for loops or modulo arithmetic, it might be hard. In x86 assembly maybe it would take 10 minutes. maybe. If I were using a reference manual written in french. – Cheeso Jun 30 at 3:34
3  
Do you want new lines after each number? Is there any chance of increasing(or decreasing) the limit from 100? Is there any chance of changing which multiples will print, and what they will print? Senior Developers aren't code monkeys, I think Senior Developers should be more concerned with the whole design, (Not being a senior developer, this is just how I see it) But for a code monkey (Junior (Me)) 5mins at max – PostMan Jun 30 at 5:01
show 8 more comments

33 Answers

prev 1 2
vote up 22 vote down

About a long as it takes for them to say "you really want me to write that down or just speak it aloud".

link|flag
1  
Yeah, I was going to say "just as fast as they can say the answer." – Bill the Lizard Jun 29 at 20:41
1  
I think I would fail at saying the answer aloud. I'd code it, print the output and then read it aloud. – Daniel Daranas Jun 30 at 7:51
1  
@Daniel: "The answer" being the code, not the output it generates. :) – Bill the Lizard Jun 30 at 12:27
show 1 more comment
vote up 0 vote down

As long as the rules for fizz-buzz are provided, probably no more than 5 minutes

link|flag
vote up 0 vote down

A senior dev?? Maybe five minutes.

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.