I’m a former CTO. Here is the 15 sec coding test I used to instantly filter out 50% of unqualified applicants
I’m a former CTO. Here is the 15 sec coding test I used to instantly filter out 50% of unqualified applicants. Written by Jose Zarazua in Hiring If you have a remote position open, your challenge is not attracting the correct candidate, it’s filtering out the bad ones, because you’ll have hundreds or thousands of them. This my favorite technique: Add a programming knockout question to the application process that is so simple to solve that only* unqualified developers will not do it manually. Here’s the question: result = 0 for x in [3,3,5]: if x >= 3: result = result – x else: result = result + x What is result? 1 0 -11 -10 Reveal the answer If you got 1, congratulations, you have wired your brain to easily interpret code. If you got -11, you copy pasted it…