hot questions tagged fizzbuzz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T20:00:14Zhttp://stackoverflow.com/feeds/tag?tagnames=fizzbuzz&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1637952/should-entry-level-programmers-be-able-to-answer-fizzbuzz48Should entry level programmers be able to answer FizzBuzz?Bryan Rowe2009-10-28T15:21:12Z2009-12-02T23:02:50Z
<p>When interviewing entry level developers, I have used the <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">FizzBuzz question</a> as a type of acid test. Generally, I ask for a solution in pseudo-code or any language of their choice. If someone can't answer this question -- or get reasonably close, the interview generally ends shortly thereafter and we don't progress to more interesting code questions.</p>
<p>In your opinion, is it fair/appropriate/accurate to filter entry-level staff in this manner? Should the average four year college graduate have a reasonable enough foundation to be able to throw up a pseudo-code solution of FizzBuzz? </p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem71What is your solution to the FizzBuzz problem?saniul2008-08-02T12:53:19Z2009-12-19T06:01:05Z
<p>See <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">here</a></p>
<p>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><em>Disclaimer: I do realize this is easy, and I understand the content of the Coding Horror post I just linked to</em></p>
http://stackoverflow.com/questions/1783815/what-is-a-good-fizzbuzz-question-for-a-sql-programmer5What is a good 'FizzBuzz' question for a SQL programmer?g.2009-11-23T15:24:12Z2009-12-05T06:25:02Z
<p>We are looking to hire a SQL programmer and need a good screening question similar to the <a href="http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/" rel="nofollow">FizzBuzz question</a> but for SQL. </p>
<p>While it is certainly possible to write a FizzBuzz solution using SQL, I think the effort is misplaced. The FizzBuzz question assesses coding fundamentals such as looping, conditionals, output, and basic math. With SQL, I think something related to queries, joins, projections, and the like would be more appropriate. But, just as with FizzBuzz, it should be simple enough that 'good' SQL programmers can write a solution on paper in a couple minutes.</p>
<p>What is a good 'FizzBuzz' question for a SQL programmer?</p>
http://stackoverflow.com/questions/1060366/how-long-should-it-take-a-senior-developer-to-solve-fizzbuzz-during-an-interview17How long should it take a senior developer to solve FizzBuzz during an interview?Jim McKeeth2009-06-29T20:34:07Z2009-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/117812/alternate-fizzbuzz-questions5Alternate FizzBuzz QuestionsAndrew Burns2008-09-22T21:39:23Z2008-10-27T13:58:02Z
<p>Anybody have any good FizzBuzz type questions that are not <em>the</em> FizzBuzz problem?</p>
<p>I am interviewing someone and FB is relatively well known and not that hard to memorize, so my first stop in a search for ideas is my new addiction SO.</p>
http://stackoverflow.com/questions/617380/what-makes-an-application-or-a-software-development-process-enterprise3What makes an application or a software development process "Enterprise"?Sung Meister2009-03-06T01:02:56Z2009-04-17T00:05:51Z
<p><strong>Duplicate of:</strong> </p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1902#1902">What makes an application an “enterprise” or “enterprise-level” application?</a></p>
</blockquote>
<p>After reading <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1902#1902">Wolfbyte's answer</a> on <a href="http://code.google.com/p/fizzbuzz/" rel="nofollow">Enterprise FizzBuzz</a> I have thought about what constitutes a program as "Enterprise".</p>
<p>What makes an application or a software development process as <em>Enterprise</em>?</p>
<p><strong>EDIT</strong>: It seems like there is a lot of negativity around the word <em>Enterprise</em>.
Are there anyone who actually <em>enjoys</em> writing Enterprise-Level applications?</p>
http://stackoverflow.com/questions/659992/help-with-fizzbuzz0Help with fizzbuzz? [closed]Jotham2009-03-18T20:35:09Z2009-03-18T20:44:18Z
<p>Does anyone know how to 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"? Thanks, I am stuck. Any language will do.</p>
<h3>Duplicate of <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem">what-is-your-solution-to-the-fizzbuzz-problem</a></h3>
http://stackoverflow.com/questions/225045/fizzbuzz-using-ternary-operator2FizzBuzz using Ternary OperatorDamian2008-10-22T09:42:06Z2009-01-12T15:48:18Z
<p>I've been reading up on conditional style expressions in ruby, however I came across one I couldn't quite understand to define the classic FizzBuzz problem. I understand the FizzBuzz problem and even wrote my own before finding the following quick solution utilising the ternary operator. If someone can explain to me how this chain works to satisfy the FizzBuzz problem it would be very much appreciated :)</p>
<pre><code>for i in 0...100
puts i%3==0 ? i%5==0 ? "FizzBuzz" : "Buzz" : i%5==0 ? "Fizz" : i
end
</code></pre>