4 ms·
While we don't ask FizzBuzz in particular we have a question my manager asks: If you could fold a piece of paper 50 times, how tall would it be (very rough ball
by mikereedell 15y ago
While we don't ask FizzBuzz in particular we have a question my manager asks: If you could fold a piece of paper 50 times, how tall would it be (very rough ballpark figure)?
Our success rate is surprisingly low.
- noahc 15y ago1.8 Times?
- pp13 15y ago1/2x +1/2(1/2x + 1/2(1/2x +1/2(1/2x + ... = y If x = 1, then the equation likes this: 1/2 +1/2(1/2 + 1/2(1/2 +1/2(1/2 + ... = y 1/2 +1/4 + 1/8 + 1/16 + 1/32 + ... = y y = 1 = x y = x source: http://library.thinkquest.org/J002235/hard.html http://library.thinkquest.org/J002235/hard.html u mad?
- noahc 15y agoNo, I am correct. When I was calculating the height of the paper, not the thickness.
- cantastoria 15y agoThis is a pretty abrupt way to start off an interview. And I don't understand the point of this question w.r.t assessing someone's coding ability. Though I'd be curious to see if the success rate on that question and on a fizz buzz correlate.
- mikereedell 15y agoIt's generally asked at the end of the interview.
- pp13 15y agoObviously, your rate would be low. The implied domain of the question would throw people off. The question isn't a good indicator if someone can program. Why don't you ask your manager the following. If 1/2x +1/2(1/2x + 1/2(1/2x +1/2(1/2x + ... = y, then x = ? If can't get it in 5 minutes, he is not fit for his job.
- ajuc 15y agoWhat adventages this question has over asking candidate to write factorial, or FizzBuzz, or sth like that? It only checks if you can estimate the thickness of paper sheet and know powers of 2. Anybody can know that.
- wlievens 15y agoPerhaps if you show that you need (a) the thickness of paper and (b) the powers of too, you've shown the thinking ability to pass the question. The result value doesn't matter.
- sungura 15y agoThat's a pretty ridiculous question that's why its low.
- jimminy 15y agoOn the assumption that your question is verbatim what you give applicants, I'd say your success rate would be low. Your question lacks appropriate definition to be solved, in it's current state. You have multiple types of folds that could be made, variable on direction, orientation, and fold distance. The only one really pertinent to this problem is fold distance. A paper folded 50 times could be 51 * thickness, if you don't define that the paper must be folded in half each time. If you enforce that it must be folded in half it becomes: (2^folds) * thickness.