Live data from Hacker News

Programmers are confessing their sins to protest a broken job interview process

theoutline.com

11–20 of 238 posts

Re: Programmers are confessing their sins to protest a broken job interview process

#14
post #5

Asking developers to program in front of strangers is primarily testing for ability to perform in front of strangers and developer skills secondarily (if at all.) I never ask people to code in front of me. I ask them questions to get a feel for where their areas of expertise are, and to get to know them. I wrote a post about my feelings on it last year: https://medium.com/@ebbv/my-case-against-coding-tests-6b15c1...

there is experimental evidence suggests that the ad hoc approach is the worst approach.

why not have them write code, not in front of people.

give them a laptop and some time alone?

Re: Programmers are confessing their sins to protest a broken job interview process

#18
This is a tough subject. I don't believe deep understanding of algorithms and data structures is necessary for the vast majority of engineering tasks. Most (almost all) engineers can get by understanding complexity notation and a matrix comparing time/space complexity for various algorithms and data stuctures, no memorization required. And even that is overkill, as most of time the "natural" one suggested by a problem will suffice. For example, "I need to map keys to value, so I'll use the Python dict class" will get the job done with acceptable performance almost every time.

Whiteboard interviewing based on these things isn't useful unless the candidate is being considered for a position in which knowing these things is fundamentally necessary (e.g. they'll be responsible for developing new algorithms or squeezing out the last 10% of optimization available).

On the other hand, substituting requirements for having public code profiles, and the assortment of take-home projects, in-office projects, pair programming to solve a problem the company is facing (especially if unpaid) is just as bad, for different reasons.

And certainly not asking technical questions is problematic.

I just don't know what the solution is. It's one of those things where I know a bad interview when I see it.

Post reply on HN