How long should it take a senior developer to solve FizzBuzz during an interview? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:05:47Z http://stackoverflow.com/feeds/question/1060366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview 17 How long should it take a senior developer to solve FizzBuzz during an interview? Jim McKeeth 2009-06-29T20:34:07Z 2009-08-31T19:30:19Z <p>Assuming:</p> <ol> <li>Typical interview stress levels (I am watching)</li> <li>Using familiar IDE and program language (their choice on their PC!)</li> <li>Given adequate explanation and immediate answers to questions</li> <li>Able to compile code and check answers / progress</li> <li>Claims to be a senior level programmer</li> </ol> <p>How long should it take an interviewee to answer <a href="http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding" rel="nofollow">FizzBuzz</a> correctly?</p> <p><strong>Edit:</strong> 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".</p> <p><strong>Edit:</strong> 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.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060372#1060372 0 Answer by JackM for How long should it take a senior developer to solve FizzBuzz during an interview? JackM 2009-06-29T20:34:44Z 2009-06-29T20:34:44Z <p>A senior dev?? Maybe five minutes.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060383#1060383 0 Answer by Zak for How long should it take a senior developer to solve FizzBuzz during an interview? Zak 2009-06-29T20:35:57Z 2009-06-29T20:35:57Z <p>As long as the rules for fizz-buzz are provided, probably no more than 5 minutes</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060384#1060384 22 Answer by Kendall Helmstetter Gelner for How long should it take a senior developer to solve FizzBuzz during an interview? Kendall Helmstetter Gelner 2009-06-29T20:36:01Z 2009-06-29T20:36:01Z <p>About a long as it takes for them to say "you really want me to write that down or just speak it aloud".</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060395#1060395 15 Answer by Michael for How long should it take a senior developer to solve FizzBuzz during an interview? Michael 2009-06-29T20:37:11Z 2009-06-30T17:18:04Z <p>It really depends on the dev - I don't like using time-based metrics in interviews for this purpose.</p> <p>A great candidate could code FizzBuzz as fast as he could write and maybe wrap up in a minute.</p> <p>Another great dev might clarify the requirements to ensure he doesn't miss anything, come up with a solution and talk through it, do a quick sanity check on it, write the code, and then spend another few minutes walking through the code and focusing on the corner cases to verify it works - taking much longer but delivering a very solid answer.</p> <p>For your case knowing if you should cut them loose after 30 minutes, it should be pretty obvious if they are unable to make forward progress on this simple problem or if they are incapable of translating their ideas into code. Both are pretty straightforward and would result in me recommending no hire. At that point, I wouldn't cut them loose - I would be giving directed hints to wrap up this question and then either give them softball questions or just general discussion about their past projects. I might even still try to sell my company a little bit, to leave the candidate with a favorable impression that they could pass on to people they know who might want to apply.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060397#1060397 29 Answer by Mike Robinson for How long should it take a senior developer to solve FizzBuzz during an interview? Mike Robinson 2009-06-29T20:37:29Z 2009-06-29T22:17:06Z <p>Hugh Jackman cracked the NSA database in 60 seconds with a gun to his head and a girl in his lap....so yeah, 5 minutes for FizzBuzz (max).</p> <p>By the way, javascript 48 seconds (no code golf):</p> <pre><code>for(var i = 1; i &lt;= 100; i++){ var output = i + ": "; if(i % 3 == 0) output += "fizz"; if(i % 5 == 0) output += "buzz"; console.log(output); } </code></pre> <p>Oops. </p> <p>Didn't read the spec, I was wondering what people were complaining about. Ok, 2 hours later (guess I didn't get the job)</p> <pre><code>for(var i = 1; i &lt;= 100; i++){ var o = (i % 3 + i % 5 &lt; 1 ) ? "fizzbuzz" : !(i % 3) ? "fizz" : !(i % 5) ? "buzz" : null; console.log(!(o) ? i : o); } </code></pre> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060398#1060398 0 Answer by Eric Wendelin for How long should it take a senior developer to solve FizzBuzz during an interview? Eric Wendelin 2009-06-29T20:37:39Z 2009-06-29T20:37:39Z <p>Their choice of language on their PC? I'd say 3 minutes tops.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060401#1060401 0 Answer by Cody C for How long should it take a senior developer to solve FizzBuzz during an interview? Cody C 2009-06-29T20:37:58Z 2009-06-29T20:37:58Z <p>I say they should be very close in 15 minutes. They may not have the exact program working but they should be very much on the right track by then. In 15 minutes you'll have a gauge on his skill level.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060402#1060402 3 Answer by SQLMenace for How long should it take a senior developer to solve FizzBuzz during an interview? SQLMenace 2009-06-29T20:38:08Z 2009-06-29T20:38:08Z <p>less than 5 minutes, probably 2 or 3 for pseudo code and 5 for something that would parse/compile</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060403#1060403 1 Answer by R. Bemrose for How long should it take a senior developer to solve FizzBuzz during an interview? R. Bemrose 2009-06-29T20:38:11Z 2009-06-29T20:38:11Z <p>42 seconds.</p> <p>Too short? How about 4.2 minutes then?</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060409#1060409 8 Answer by Danra for How long should it take a senior developer to solve FizzBuzz during an interview? Danra 2009-06-29T20:38:57Z 2009-06-29T20:38:57Z <p>Solving FizzBuzz is known to be NPC.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060411#1060411 6 Answer by Paul Dixon for How long should it take a senior developer to solve FizzBuzz during an interview? Paul Dixon 2009-06-29T20:39:06Z 2009-06-29T20:39:06Z <p>Like everyone else, I'd say about 5 mins or less. Jeff Atwood had a <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">blog post about the apparent inability of many programmers to do this effectively</a>.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060412#1060412 1 Answer by mfloryan for How long should it take a senior developer to solve FizzBuzz during an interview? mfloryan 2009-06-29T20:39:09Z 2009-06-29T20:39:09Z <p>To quote the very blog you referred to "Most good programmers should be able to write out on paper a program which does this in a under a couple of minutes."</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060427#1060427 22 Answer by rtperson for How long should it take a senior developer to solve FizzBuzz during an interview? rtperson 2009-06-29T20:42:19Z 2009-06-29T20:42:19Z <p>I'd mentally count to three, by which time I would expect to have heard, "What, you're joking, right? I mean, you can't be serious..."</p> <p>Then the next thing I should hear will be, "All right, you make a for loop..."</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060460#1060460 5 Answer by RichieHindle for How long should it take a senior developer to solve FizzBuzz during an interview? RichieHindle 2009-06-29T20:48:14Z 2009-06-29T21:42:41Z <p>I'm a senior developer and I just did it in C on paper in 1 minute 13 seconds, never having seen it before (or even played it as a kid).</p> <p>Excuse the terrible handwriting and mobile phone photography, and spot the single equals signs! Oops. Not sure what that proves. Hopefully just that I was rushing - it works perfectly apart from that:</p> <p><img src="http://entrian.com/fizzbuzz.jpeg" alt="handwritten Fizz Buzz in C" /></p> <p>I think the people who are quoting times of 10 or 15 minutes are really wide of the mark.</p> <p>(Perhaps you should ask "How much time should a senior developer waste mucking about taking mobile phone photos of bits of code and uploading them to the web just to make a point?" I fail. 8-)</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060461#1060461 6 Answer by theycallmemorty for How long should it take a senior developer to solve FizzBuzz during an interview? theycallmemorty 2009-06-29T20:48:48Z 2009-06-29T22:21:37Z <p>How about 2 minutes, max? We aren't merely talking about <strong>competent</strong> developers, we're talking about <strong>senior</strong> developers.</p> <p>Fizzbuzz is a trivial problem. Try it out yourself. I bet every 'senior' developer here can do it in under two minutes in the language of his/her choice.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060487#1060487 4 Answer by eeeeaaii for How long should it take a senior developer to solve FizzBuzz during an interview? eeeeaaii 2009-06-29T20:54:23Z 2009-06-29T20:54:23Z <p>Yes, it's an easy, 5 minute problem -- but in an interview give them at least 10 minutes or even 15 because if the person wants to work at your company they are going to double check things and be very careful to get it right. If they are quick and careless about the test -- in what amounts to a high-stakes situation if they really do want the job -- that tells you something about them.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060593#1060593 -1 Answer by Cheeso for How long should it take a senior developer to solve FizzBuzz during an interview? Cheeso 2009-06-29T21:13:36Z 2009-06-30T03:31:27Z <p>As a litmus test, FizzBuzz is a great one: If the interviewee actually answers constructively, <strong>FAIL</strong>:<br /> I don't want to hire anyone who would tolerate such a useless question in an interview. </p> <p>This would be a good question to gate acceptance into the "Programming II" class in 7th grade, though!</p> <p><hr /></p> <p><strong>EDIT</strong>: Downvoted 3 times! Ha! FizzBuzz for a <em>senior dev</em>? 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. </p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060599#1060599 3 Answer by David Thornley for How long should it take a senior developer to solve FizzBuzz during an interview? David Thornley 2009-06-29T21:14:01Z 2009-06-29T21:14:01Z <p>For a senior developer, about as fast as he or she can comfortably write or type. Brief pauses are allowable. Allow time for the candidate to realize what sort of thing you're asking, and deciding to go along with it.</p> <p>The candidate may or may not look over the code briefly before compiling. That's permissible. Don't sweat typos.</p> <p>If the candidate wants to write a header comment, fine, that's useful information.</p> <p>If the candidate has significantly more trouble than I've outlined above, that's a bad sign. If the candidate takes more than a few minutes, it's time to thank the candidate for his or her time, and politely bring the interview to a close. No point wasting two people's time.</p> <p>If the candidate is interviewing for a junior position, or is not using a familiar language and environment, you need to be more lenient. Still, if a candidate for any level of a developer position couldn't get it within ten or fifteen minutes in a reasonably familiar environment, don't hire.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060804#1060804 108 Answer by Martin Beckett for How long should it take a senior developer to solve FizzBuzz during an interview? Martin Beckett 2009-06-29T22:02:53Z 2009-06-30T13:09:16Z <p>For a SENIOR developer 6-8 months.</p> <p>First you have to pick a methodology, then you can start hiring the consultants that will pick the team.<br /> But before you do that you need to choose where you want to go, the Rational Rose conference are in Hawaii but the Agile ones are at a golf course.</p> <p>Then you need to get buy-in from the board at what your fizz and/or buzz strategy is, which means they will have to talk to the major investors and Wall St. But before they do that they will have to clear the whole thing with legal.</p> <p>And long before anything is implemented you will have jumped ship for a better paid job - with all your new found board-level project experience you are worth much more than they are paying.</p> <p>Meanwhile the list will be done manually on paper by an intern and typed into Excel by a secretary.</p> <p>edit: there is a (semi) serious point - interview questions like this are of the 'jump in and start coding without asking any questions' type. What I want from a developer is someone who knows what questions to ask and how before they start typing away.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060857#1060857 12 Answer by Esko Luontola for How long should it take a senior developer to solve FizzBuzz during an interview? Esko Luontola 2009-06-29T22:17:48Z 2009-06-29T22:41:26Z <p>As long as they are progressing towards the goal steadily, everything is good. Somebody might write the right code straight within a minute. Someone else might take more time in explaining his thinking, in factoring the code and in writing tests.</p> <p>The end goal and time is not important. The important thing is the way to the goal.</p> <p>For me it took just now some 10-15 minutes using TDD, the same way and quality that I would write production code. If I had written it just off the top of my head, it would maybe have taken one or two minutes (as I see other senior programmers have done it that quickly), but that would have been unprofessional. I wouldn't want to hire somebody who just hacks some code together.</p> <p>That 10-15 min was about as fast as I could type, except at a couple of points where I was thinking about descriptive method names and afterwards I did some refactoring to make the code more expressive. I considered the alternative of concatenating "Fizz" and "Buzz", so that there would be one <code>if</code> less, but that made code less clean to me (maybe because of the mutable state), so I settled with the code below.</p> <pre><code>public class FizzBuzz { private static final int FIZZ = 3; private static final int BUZZ = 5; public static String textForNumber(int n) { if (multipleOf(FIZZ * BUZZ, n)) { return "FizzBuzz"; } if (multipleOf(FIZZ, n)) { return "Fizz"; } if (multipleOf(BUZZ, n)) { return "Buzz"; } return Integer.toString(n); } private static boolean multipleOf(int multiplier, int n) { return n % multiplier == 0; } public static void main(String[] args) { for (int i = 1; i &lt;= 100; i++) { System.out.println(textForNumber(i)); } } } import junit.framework.TestCase; public class FizzBuzzTest extends TestCase { public void test__Multiples_of_3_print_Fizz() { assertEquals("Fizz", FizzBuzz.textForNumber(3)); assertEquals("Fizz", FizzBuzz.textForNumber(6)); } public void test__Multiples_of_5_print_Buzz() { assertEquals("Buzz", FizzBuzz.textForNumber(5)); assertEquals("Buzz", FizzBuzz.textForNumber(10)); } public void test__Multiples_of_both_3_and_5_print_FizzBuzz() { assertEquals("FizzBuzz", FizzBuzz.textForNumber(15)); assertEquals("FizzBuzz", FizzBuzz.textForNumber(30)); } public void test__All_others_print_the_number() { assertEquals("1", FizzBuzz.textForNumber(1)); assertEquals("2", FizzBuzz.textForNumber(2)); assertEquals("4", FizzBuzz.textForNumber(4)); } } </code></pre> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060879#1060879 3 Answer by Jim for How long should it take a senior developer to solve FizzBuzz during an interview? Jim 2009-06-29T22:22:52Z 2009-06-29T22:22:52Z <p>It shouldn't take more than 2 minutes. There shouldn't be any pauses, except at the end to check your work. I see similar results with my candidates with another simple question:</p> <blockquote> <p>Write a function to return the minimum number in an array</p> </blockquote> <p>I'd estimate that about 75% fail this despite "years" of experience. Amazing how many people get by with drag and drop technology.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1060917#1060917 1 Answer by clemahieu for How long should it take a senior developer to solve FizzBuzz during an interview? clemahieu 2009-06-29T22:34:59Z 2009-06-29T22:34:59Z <p>Senior developer? It should be done in their head as the algorithm is described so however long it takes them to commit it to paper.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1061055#1061055 0 Answer by Dave Rigby for How long should it take a senior developer to solve FizzBuzz during an interview? Dave Rigby 2009-06-29T23:22:23Z 2009-06-29T23:22:23Z <p>I just implemented this in C in just shy of 2mins (including compiling and fixing a couple of typos I made typing fast!), having not heard of the problem before. I'd like to consider myself a pretty experienced C/C++ dev, so anything in the order of 2~3mins seems reasonable, depending on typing speed etc - it's a pretty trivial problem.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1061636#1061636 1 Answer by Nippysaurus for How long should it take a senior developer to solve FizzBuzz during an interview? Nippysaurus 2009-06-30T03:50:04Z 2009-06-30T03:50:04Z <p>Just did it ...</p> <pre><code>class Program { static void Main(string[] args) { for (int i = 1; i &lt;= 100; ++i) if ((i % 3 == 0) &amp;&amp; (i % 5 == 0)) Console.WriteLine("FizzBuzz"); else if (i % 3 == 0) Console.WriteLine("Fizz"); else if (i % 5 == 0) Console.WriteLine("Buzz"); else Console.WriteLine(i.ToString()); } } </code></pre> <p>Took me almost 5 minutes exactly. And I still had to fire up VS, figure out what the modulus operator was (I had forgotten which symbol it was in C#), and had a glass of water.</p> <pre><code>irb(main):002:0&gt; start = Time.now =&gt; Tue Jun 30 13:38:08 +1000 2009 irb(main):004:0&gt; finish = Time.now =&gt; Tue Jun 30 13:43:10 +1000 2009 irb(main):006:0&gt; (finish - start) / 60 =&gt; 5.03985 </code></pre> <p>I'd say a senior should be able to do it in less than that. But I don't think there would be much difference between someone who does it in 4 or 3 minutes, as long as they don't take forever.</p> <p>Remember people aren't machines ... they might have been out of work for a month or two, gone through a rough personal situation, be sleepy or otherwise just not in a programming mindset right that minute. Thats why I think the time doesn't matter too much as long as its not unreasonably long.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1061718#1061718 53 Answer by JustJeff for How long should it take a senior developer to solve FizzBuzz during an interview? JustJeff 2009-06-30T04:25:03Z 2009-06-30T04:25:03Z <p>Maybe it's not about how well they can code, but how they respond as a "Senior Developer" -- i.e., about 10 seconds after they start coding, inform them that 'fizz' is going to be replaced by some other word, TBD. Ten seconds after <em>that</em>, tell them that you need 'buzz' for multiples of 7 or 11, not 5, and that you will be counting to 1000 not 100. Ten seconds after that, begin asking them for status reports once every 30 seconds or so. If they can't make progress on the code while spending 45% of their time giving status, inform them you are going to bring in the next candidate and that they will be working together to try to make some better progress. Have another interviewer enter the room and ask distracting questions, like "how much re-use do you think we'll be able to get from this?" Tell them that ok, ok, fizz for multiples of 3 and buzz for 5 after all. If they are still with it 5 minutes in, be sure to make them transfer to "an identical platform" because it's time for technology refresh. etc.</p> <p>If they can produce anything that remotely satisfies the requirements in under half an hour working like that, give them the job. =P</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1061749#1061749 1 Answer by Phoexo for How long should it take a senior developer to solve FizzBuzz during an interview? Phoexo 2009-06-30T04:35:35Z 2009-08-31T19:30:19Z <p>Am I the only one who thinks this is a piece of cake?</p> <pre><code>for (int i = 1; i &lt;= 100; i++) { if (i % 3 == 0 &amp;&amp; i % 5 == 0) Console.WriteLine("FizzBuzz"); else if (i % 3 == 0) Console.WriteLine("Fizz"); else if (i % 5 == 0) Console.WriteLine("Buzz"); else Console.WriteLine(i.ToString()); } </code></pre> <p>Is this supposed to be difficult?</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1063088#1063088 5 Answer by ais for How long should it take a senior developer to solve FizzBuzz during an interview? ais 2009-06-30T11:05:29Z 2009-06-30T11:48:42Z <pre><code>for(i in [1..100]) x = "" if (i %% 3) x += "Fizz" if (i %% 5) x += "Buzz" print x == "" ? i : x </code></pre> <p>~ 3 min</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1064172#1064172 0 Answer by semiuseless for How long should it take a senior developer to solve FizzBuzz during an interview? semiuseless 2009-06-30T15:01:57Z 2009-06-30T15:01:57Z <p>I spent about 5 minutes on the problem. For the most part, the "effort" was in identifying the likely "gotchas" in the question and making sure that I had them covered in the solution. </p> <p>In general, coding questions during an interview always include some kind of gotcha to make the candidate think. Maybe the problem is missing information, and they need to ask questions to clarify exactly what is required. Maybe the problem is complete, but looks too easy. </p> <p>FizzBuzz is a simple problem. There are two "gotchas" (such as they are): Has the candidate ever used the modulo operator? Will the solution still print the number when a word should be printed instead? </p> <p>Beyond that, there are a few additional things that I would check in the final solution: will the loop actually run from 1 to 100, how will the solution handle the case where the number is both a multiple of 3 and 5...but teasing out details of how someone will approach a real problem from this example is more than a little stretch. </p> <p>I am a slightly bigger fan of either pointer or bit manipulation questions during an interview, but most of the interviews I have done were for fairly low level C coding positions....so pointer and bit manipulation were important skills to have. </p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1123670#1123670 1 Answer by mannicken for How long should it take a senior developer to solve FizzBuzz during an interview? mannicken 2009-07-14T05:56:09Z 2009-07-14T05:56:09Z <p>Well, that's easy to calculate. I'll say time duration N and if you think:</p> <p>It's less than what it should take: multiply N by 2.</p> <p>It's more than what it should take: take average of N and N/2.</p> <p>I mean, we're all developers here, why take wild guesses when we can apply a modified bisection method.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1123684#1123684 -1 Answer by jrockway for How long should it take a senior developer to solve FizzBuzz during an interview? jrockway 2009-07-14T06:02:48Z 2009-07-14T06:02:48Z <p>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.</p> <p>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; <code>print '.' if $i % 1000 == 0</code> or something. Perhaps this is not the best thing to be testing for.)</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1129890#1129890 0 Answer by JBrooks for How long should it take a senior developer to solve FizzBuzz during an interview? JBrooks 2009-07-15T07:19:50Z 2009-07-15T07:19:50Z <p>Last year at this time, and again now, we are interviewing to hire a Senior ASP.Net &amp; SQL Server Developer. Last year we phone interviewed 20 guys, 19 were junk. This year we interviewed 10 candidates and 10 are junk. </p> <p>The interviews go something like this.... we ask "tell me some of the different kinds of SQL Server joins." They say "left outer join, right outer join, ect" (sometimes you actually hear the pages of their notes turn)... then we ask a simple question that any developer should be familiar with if they have traveled the well worn path of development. We ask - if you had a table of customers and a table of orders how would you find the customers that had no orders? None of the 10 this year knew that - how could this be?</p> <p>We would also ask what the difference between session state and view state were. All of them would spit back a book answer. Ok. Then we would ask: where is a view state variable stored. Now you are thinking that they just told us that so they will tell us again and we will all move on... nope. They spit back the book answer without fully understanding it. Five out of the 10 this year drew a blank on that question - yes, right after telling us the answer they could not answer it when it was rephrased. They are that unfamiliar with it.</p> <p>I guess in some places it works out when you fake your way thru an interview - I have no problem firing someone that lied their way into a job.</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1129904#1129904 0 Answer by hasen j for How long should it take a senior developer to solve FizzBuzz during an interview? hasen j 2009-07-15T07:26:13Z 2009-07-15T07:26:13Z <p>10 seconds to think about it<br /> 2 minutes to write it down</p> http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview/1348423#1348423 0 Answer by Dave Beer for How long should it take a senior developer to solve FizzBuzz during an interview? Dave Beer 2009-08-28T17:38:20Z 2009-08-28T17:38:20Z <p>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 <strong>prove</strong> that it's all working okay.</p> <p>In c#, I wrote:</p> <pre><code> for (int count = 1; count &lt;= 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()); } } </code></pre> <p>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.</p> <p>Definitely a valid interview question. But getting them to look over some production code and spot the mistakes is good too!</p>