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 0 vote down

I thought this was fun and wrote mine in a little under four minutes from firing up Visual Studio to running the final executable. No unit tests though, so I can't prove that it's all working okay.

In c#, I wrote:

        for (int count = 1; count <= 100; count++)
        {
            bool isMod5 = count % 5 == 0;
            bool isMod3 = count % 3 == 0;

            if (isMod3 || isMod5)
            {
                Console.WriteLine((isMod3 ? "Fizz" : "") + (isMod5 ? "Buzz" : ""));
            }
            else
            {
                Console.WriteLine(count.ToString());
            }
        }

And even though it's fairly simple, I think it'd be interesting to see how somebody goes about explaining their thinking - or even watching them write it - seeing what sort of refactoring they do as they go.

Definitely a valid interview question. But getting them to look over some production code and spot the mistakes is good too!

link|flag
vote up -1 vote down

As a litmus test, FizzBuzz is a great one: If the interviewee actually answers constructively, FAIL:
I don't want to hire anyone who would tolerate such a useless question in an interview.

This would be a good question to gate acceptance into the "Programming II" class in 7th grade, though!


EDIT: Downvoted 3 times! Ha! FizzBuzz for a senior dev? 30 minutes? Seriously? If you asked me that in an interview I would walk out. That would make it very clear what kind of shop it was.

link|flag
4  
Unfortunately, you have to expect that many applicants will even fail such a simple test. A lot of people claim to have skills they clearly do not have, just to get the job. Simple tests like this one helps to get rid of them quickly. – ammoQ Jun 30 at 12:23
1  
You want to hire someone who walks out of an interview? Really? – James McMahon Jun 30 at 19:25
1  
Yes - that's what I mean by "the Willie Wonka test". you can only have it if you don't want it. But the point is moot for ME, because I would never ask a potential hire to code FizzBuzz. – Cheeso Jun 30 at 23:13
show 7 more comments
vote up -1 vote down

I have never implemented FizzBuzz before, but I decided to try it as a one-liner in a nearby xterm. It took me about 30 seconds. My program produced the correct result on the first try.

If this takes anyone more than 5 minutes and they've heard of modular arithmetic before, don't hire them. (FWIW, the only time I use modular arithmetic in normal applications is for something like a progress bar; print '.' if $i % 1000 == 0 or something. Perhaps this is not the best thing to be testing for.)

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.