Ask HN: What % of your job interviewees pass FizzBuzz type questions?
11–20 of 120 posts
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#12The last test I did help administer was for a VB+SQL job, and the first question was to write an example of a valid INNER JOIN. I'd say at maximum 25% of the candidates could do this.
Improving SNR? I did once have a potential employer get me to do a time-limited online test. If you wanted you could always stick your questions into one of them, so you can at least do the fizzbuzz-level screening without calling them in and sitting them down.
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#13I'm curious what candidates are getting stuck on. Is it the testing for divisibility that's tripping them up?
OP may not be actually using "FizzBuzz" as he said a FizzBuzz-type problem :)
Edit: For example, iterate through this string every time you hit an 's' print fizz etc...
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#14Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#15In the actual interview, I find that most give up after spitting out some pseudocode. About 40% have reasonable psuedo code that makes me think they'd get there (but these half-answers don't give me enough confidence to give them a thumbs up). Actual code that works (and running it from a terminal), we are seeing only about 15% tops maybe lower. We have started sending a fizzbuzz-ish question, a relatively easy css q…
Keep in mind that you may be getting a lot of good people with a lot of pros, but that don't do themselves justice on paper.
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#16Earlier quoted context omitted.
> We are looking for a Rails or PHP dev in waltham (near boston) currently without a lot of luck. The job has a lot of pros, but probably doesn't do itself justice on-paper. Are you attending local PHP and Ruby/Rails meetups and user groups? If none are available, consider starting one.
That is good advice. We are at just about every Boston Ruby Group meeting, though...
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#17Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#18I'm curious what candidates are getting stuck on. Is it the testing for divisibility that's tripping them up?
Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#19Earlier quoted context omitted.
OP may not be actually using "FizzBuzz" as he said a FizzBuzz-type problem :)
Ok fair enough, but I'm still curious where the sticking point is. Can they at least code the loop? I'm wondering if it's just that peoples' math skills are typical pretty rusty and if using another set of conditions would give you better results. Edit: For example, iterate through this string every time you hit an 's' print fizz etc...
for i in range(0,n):
if i % 3 == 0:
print 'fizz'
elif i % 5 == 0:
print 'buzz'
elif (i % 3 == 0) and (i % 5 == 0):
print 'fizzbuzz'
else
print i
It's not so much arithmetic that's the problem but reasoning about overlapping boolean conditions.Re: Ask HN: What % of your job interviewees pass FizzBuzz type questions?
#20Earlier quoted context omitted.
> We are looking for a Rails or PHP dev in waltham (near boston) currently without a lot of luck. The job has a lot of pros, but probably doesn't do itself justice on-paper. Are you attending local PHP and Ruby/Rails meetups and user groups? If none are available, consider starting one.
That is good advice. We are at just about every Boston Ruby Group meeting, though...