Tagged Questions

44
votes
37answers
2k views

Should entry level programmers be able to answer FizzBuzz?

When interviewing entry level developers, I have used the FizzBuzz question as a type of acid test. Generally, I ask for a solution in pseudo-code or any language of their choice. …
66
votes
162answers
10k views

What is your solution to the FizzBuzz problem?

See here 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 numbe …
17
votes
33answers
2k views

How long should it take a senior developer to solve FizzBuzz during an interview?

Assuming: Typical interview stress levels (I am watching) Using familiar IDE and program language (their choice on their PC!) Given adequate explanation and immediate answers to …
5
votes
11answers
747 views

Alternate FizzBuzz Questions

Anybody have any good FizzBuzz type questions that are not the FizzBuzz problem? I am interviewing someone and FB is relatively well known and not that hard to memorize, so my fir …
3
votes
5answers
204 views

What makes an application or a software development process “Enterprise”?

Duplicate of: What makes an application an “enterprise” or “enterprise-level” application? After reading Wolfbyte's answer on Enterprise FizzBuzz I have thought about what …
0
votes
1answer
377 views

Help with fizzbuzz? [closed]

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 "Bu …
2
votes
5answers
480 views

FizzBuzz using Ternary Operator

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 FizzBu …