A jar has 1000 coins, of which 999 are fair and 1 is double
headed. Pick a coin at random, and toss it 10 times. Given
that you see 10 heads, what is the probability that the next
toss of that coin is also a head?
That tests their ability to turn a problem into mathematics, and some very basic conditional probability. Another common question (that I don't use myself) is to ask what happens to bond prices if interest rates go up.Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
41–50 of 363 posts
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#42In terms of reporting...there's no litmus test for how well you can report an event. The education beat, however, is pretty common for new reporters (it was my first), which is ironic considering how ridiculously complicated education is as a topic (same kind of financial/budgetary documents as any business, government bureaucracy, board politics, and of course, dealing with children)
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#43Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#44I have been unable to think of one for Linux system administrators. :-(
You'd be surprised of how many supposed Linux admins have no idea how to setup ssh logins, which says a lot about the depth of their experience.
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#45I'm a marketer, and have yet to find a way to judge a marketer's competence better than: "Here's this app, here's what it does. How would you increase downloads?" A quick brainstorm session shows you how they approach the situation, what tricks they have in their bag, and what methods they feel confident using (or if they're just BSing). Interestingly enough, 50% of the time people answer "SEO," which is among the wo…
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#46I have been unable to think of one for Linux system administrators. :-(
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#47I'm a marketer, and have yet to find a way to judge a marketer's competence better than: "Here's this app, here's what it does. How would you increase downloads?" A quick brainstorm session shows you how they approach the situation, what tricks they have in their bag, and what methods they feel confident using (or if they're just BSing). Interestingly enough, 50% of the time people answer "SEO," which is among the wo…
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#48Working for a web company. Our favourite JS question is, "What happens if you do this?" var func = function func () { // blah };
Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#49Re: Ask HN: What's your speciality, and what's your "FizzBuzz" equivalent?
#50I'm a software developer, but the code I work does a lot of DB access. I always ask a "two joins and an aggregate question." Given three tables: authors books sales ---------- ---------- ---------- id id id name author_id book_id title date price find the total sales by author in November 2013. The result set should have two columns: author's name and their total sales.