Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

69
votes
41answers
5k views

Should entry level programmers be able to answer FizzBuzz? [closed]

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. If someone can't ...
26
votes
37answers
5k 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 questions Able to ...
21
votes
14answers
4k views

Alternate FizzBuzz Questions [closed]

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 first stop in a search ...
10
votes
5answers
733 views

How to code Fizzbuzz in F#

I am currently learning F# and have tried (an extremely) simple example of FizzBuzz. This is my initial attempt: for x in 1..100 do if x % 3 = 0 && x % 5 = 0 then printfn "FizzBuzz" ...
7
votes
1answer
947 views

Haskell — problem with pretty-printing a list

I'm new to haskell, and i read through and digested Learn You A Haskell For Great Good, trying out a couple of things along the way. For my first project i wanted to try the classic: FizzBuzz. So i ...
4
votes
5answers
439 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 constitutes a ...
3
votes
5answers
1k 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 FizzBuzz problem and even ...
1
vote
4answers
904 views

Codecademy FizzBuzz app, stuck on step 1

Here's my code for Codecamedy's FizzBuzz lesson var i; for ( i = 1; i > 20; i++ ) { "hello" if ( i % 3 === 0 ) { if ( i % 5 === 0 ) { "FizzBuzz"; } else { "Fizz"; } ...
1
vote
4answers
298 views

FizBuzz program: how to make the output correct?

I got a question about this program, it says: The FizzBuzz Challenge: Display numbers from 1 to x, replacing the word 'fizz' for multiples of 3, 'buzz' for multiples of 5 and 'fizzbuzz' for multiples ...
0
votes
2answers
112 views

How to select all values from an array or list?

I'm super new to programming and I'm wondering how to tackle one of the most basic problems out there-- the "FizzBuzz" thing. I'm doing this in Groovy. I have a pretty specific idea of how I want the ...
0
votes
3answers
260 views

FizzBuzz comment that confused me - are hard coded conditions wrong?

I discovered the "FizzBuzz" question today at coding horror. Great article. However, something in one of the user-comments confused me -- here's the quote: Geez guys - EVERY ONE of you who gave ...
0
votes
1answer
255 views

Facebook puzzle error: throws it's automated mail regarding build/run error

I solved the problem (Hoppity) as given on Facebook Puzzle Page. I solved it in c++ language (using g++ compiler) and mailed the .cpp file as an attachment to the mentioned e-mail address. I didn't ...
0
votes
6answers
322 views

what is the most efficent Python script to the below question? [closed]

Possible Duplicate: What is your solution to the FizzBuzz problem? Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and ...
-4
votes
3answers
149 views

How to Unit Test this method with C#

I have the following method, which I want to perform a unit test on. Change can be made for the method signature: public void PrintNumber() { Enumerable.Range(1, 100).ToList().ForEach(x => ...