Slashdot Mirror


Ask Slashdot: Are Timed Coding Tests Valuable?

First time accepted submitter xkrebstarx writes "A buddy of mine recently applied to a large tech company. Before setting up a phone interview with him, the unnamed company issued a timed coding test to gauge his coding prowess. He was allotted 45 minutes to complete an undergraduate level coding assignment. I would like to ask the Slashdotters of the world if they find value in these speed-programming tests. Does coding quickly really indicate a better programmer? A better employee?"

47 of 776 comments (clear)

  1. I dunno... by Joce640k · · Score: 5, Insightful

    I dunno...but it will weed out the pretenders/bullshitters.

    --
    No sig today...
    1. Re:I dunno... by beelsebob · · Score: 5, Insightful

      The other thing it'll do is near guarantee that they get some bugs from all applicants, they'll then have something to discuss in the phone interview, and gage the applicant's responses and proposed fixes.

    2. Re:I dunno... by hackula · · Score: 5, Insightful

      I never believed the whole "95% of interviewees fail the FizzBuzz test" until I started interviewing candidates. People with 15 years of "experience" on their resume would regularly fail or give up. I also encouraged googling, including just searching for the exact problem, and I encouraged questions and told them that both behaviors were seen as a good thing. IDK how someone could possibly get through a CS program and still fail this test, but it happened regularly.

    3. Re:I dunno... by SJHillman · · Score: 3, Interesting

      Mod parent up

      I took a couple of programming classes in college and we had some timed tests. However, failing to get the desired results within the allotted time was only enough to knock off a partial letter grade (IE: go from a B+ to a B). The professors mostly wanted to see how you approached a problem, whether you commented your code, if any horrible coding practices jumped out, etc. In the follow-up, they would also want to know how you would fix any issues you came across if given more time.

      How much you got done was still somewhat important - there was a basic expectation that you would have some functionality working and other pieces at least partially completed. After all, if you have to spend 45 minutes looking up how to do a basic loop, then you're probably not experienced enough for anything beyond entry level (if that), so it helps weed out the people who are outright lying about skills.

    4. Re:I dunno... by Anonymous Coward · · Score: 3, Funny

      wth is a fizzbuzz test?

    5. Re:I dunno... by Cryacin · · Score: 4, Interesting

      These tests are vital when interviewing. We recently put out an ad for a senior programmer, and got about 100 or so responses. After 25 responses hit the circular filing cabinet, as they were obvious resume spam with no cover letters, we declined around a further 50. Of the remainder, we asked a simple question. In JavaScript, without using the reverse() method, reverse an array of numbers containing 1,2,3,4,5 in the most efficient way possible.

      We got 5 responses back, which we interviewed. The other 20 were out. These tests are meant to weed out the crap that would waste our time, and honestly, the 5 guys that responded, responded in under 5 minutes.

      --
      Science advances one funeral at a time- Max Planck
    6. Re:I dunno... by beelsebob · · Score: 4, Informative

      Well, you just failed for not googling...

      But, print all the numbers from 1 to 100, except rather than printing multiples of 3, print fizz, rather than printing multiples of 5, print buzz, and for multiples of both, print fizzbuzz.

    7. Re:I dunno... by beelsebob · · Score: 4, Informative

      And yet, as stated above, surprisingly, 95% of job applicants fail, just like the AC above.

    8. Re:I dunno... by serviscope_minor · · Score: 3, Funny

      I never believed the whole "95% of interviewees fail the FizzBuzz test" until I started interviewing candidates.

      Well, I've never interviewed job candidates and I have a hard job believing this. It's not that I think you're lying (I don't), it's that I've never seen it for myself and my brain has a very hard job accepting that someone who does programming for their livlihood could not solve this in their sleep.

      It doesn't matter that it's true, it's just really REALLY hard to imagine. And I don't WANT to believe it.

      Anyway, here's my entry.


      s/^$/c_0/
      :mainloop

      #Advance the number counter
      tclear1
      :clear1

      s/9$/0/;tdigit1done
      s/8$/9/
      s/7$/8/
      s/6$/7/
      s/5$/6/
      s/4$/5/
      s/3$/4/
      s/2$/3/
      s/1$/2/
      s/0$/1/
      :digit1done

      s/_90/_100/
      s/_80$/_90/
      s/_70$/_80/
      s/_60$/_70/
      s/_50$/_60/
      s/_40$/_50/
      s/_30$/_40/
      s/_20$/_30/
      s/_10$/_20/
      s/_0$/_10/

      #Advance the Fizz counter
      y/abc/bca/

      #Clear the hold space
      x
      s/.*//
      x

      #Divisibility by 3 /c/{
              x
              s/$/Fizz/
              x
      }

      #Divisibility by 5 /[05]$/{
              x
              s/$/Buzz/
              x
      }

      x /^$/g
      s/[abc]_//
      p
      x /100/!bmainloop
      D
      q

      Silly slashdot. Why do you keep reformatting my code and why do you make me type junk here just to get my post accepted? Blah blah blah blah blah blah and you don't like too much repition wither this makes it very hard to paste code into the forum now please let this post in please pretty please with a cherry on top and sprinkles and is that even your bucket in the first place?

      --
      SJW n. One who posts facts.
    9. Re:I dunno... by Anonymous Coward · · Score: 4, Insightful

      -- pseudo-code
      for i in 1 to 100 loop
            if mod(i,15) == 0 then print 'fizzbuzz' ;
            elsif mod(i,5) == 0 then print 'buzz';
            elsif mod(i,3) == 0 then print 'fizz';
            else
                    print i;
            fi
      end loop

      -- 4 minutes to write pseudo-code, maybe not elegant, but not googling
      -- Depending on the language, I'd have to to look up the print, loop, and modulus syntax

    10. Re:I dunno... by beelsebob · · Score: 3, Funny

      You know... Every time fizzbuzz is explained somewhere, there are always 100 attempts to solve it right beneath...

      I think this is the first time I've ever seen the first response (or in fact, most of the responses) actually be correct!

    11. Re:I dunno... by smpoole7 · · Score: 3, Insightful

      It's not only a great idea to weed out the wannabes, watch how they react when you challenge them.

      The ones whose eyes light up and are eager to prove themselves? That's your guy or your gal. :)

      --
      Cogito, igitur comedam pizza.
    12. Re:I dunno... by Anonymous Coward · · Score: 4, Funny
      That's easy; I'm a fast typer!

      #include <stdio.h>
      int main()
      {
      puts("1"); puts("2"); puts("fizz"); puts("4"); puts("buzz"); puts("fizz");
      puts("7"); puts("8"); puts("fizz"); puts("buzz"); puts("11"); puts("fizz");
      puts("13"); puts("14"); puts("fizzbuzz"); puts("16"); puts("17"); puts("fizz");
      puts("19"); puts("buzz"); puts("fizz"); puts("22"); puts("23"); puts("fizz");
      puts("buzz"); puts("26"); puts("fizz"); puts("28"); puts("29"); puts("fizzbuzz");
      puts("31"); puts("32"); puts("fizz"); puts("34"); puts("buzz"); puts("fizz");
      puts("37"); puts("38"); puts("fizz"); puts("buzz"); puts("41"); puts("fizz");
      puts("43"); puts("44"); puts("fizzbuzz"); puts("46"); puts("47"); puts("fizz");
      puts("49"); puts("buzz"); puts("fizz"); puts("52"); puts("53"); puts("fizz");
      puts("buzz"); puts("56"); puts("fizz"); puts("58"); puts("59"); puts("fizzbuzz");
      puts("61"); puts("62"); puts("fizz"); puts("64"); puts("buzz"); puts("fizz");
      puts("67"); puts("68"); puts("fizz"); puts("buzz"); puts("71"); puts("fizz");
      puts("73"); puts("74"); puts("fizzbuzz"); puts("76"); puts("77");
      puts("fizz"); puts("79"); puts("buzz"); puts("fizz"); puts("82"); puts("83");
      puts("fizz"); puts("buzz"); puts("86"); puts("fizz"); puts("88"); puts("89");
      puts("fizzbuzz"); puts("91"); puts("92"); puts("fizz"); puts("94");
      puts("buzz"); puts("fizz"); puts("97"); puts("98"); puts("fizz"); puts("buzz");
      return 0;
      }

    13. Re:I dunno... by ShanghaiBill · · Score: 4, Insightful

      And yet, as stated above, surprisingly, 95% of job applicants fail, just like the AC above.

      I used to give people this test: Write a program, in any language, to read a list of number from stdin, sort them, and write them to stdout. For instance if the input is:

      23
      14
      375
      42

      Your program should print

      14
      23
      42
      375

      By far the most common "solution" was this:

      main()
      {
            printf("14\n")
            printf("23\n");
            printf("42\n");
            printf("375\n");
      }

      Most of these people had degrees in CS.

      Anyway, I hired the girl that wrote this:

      %!/bin/sh
      sort -n

    14. Re:I dunno... by hackula · · Score: 5, Funny

      Nope, but you might try a Javascript programmer. I would be willing to be a Java programmer would implement this using the ReverseFactoryAbstractFactoryFactory pattern though. They might be able to get it to you in a year, but you would be obligated to sign a 5 year 200k/yr support contract.

    15. Re:I dunno... by mcmonkey · · Score: 3, Insightful

      In JavaScript, without using the reverse() method, reverse an array of numbers containing 1,2,3,4,5 in the most efficient way possible.

      Semi-off topic question: really? I mean, are we (programming job seekers) as a group that dumb?

      I recently went through searching for a programming job after 5 years in a position that mainly dealt with configuring off-the-shelf apps. Every single interview at some point had a question that required reversing an array without using Reverse(). (Only about half mentioned efficiency.)

      I'm big into puzzles and logic games, and as long as I can use pseudocode and not stress syntax, technical interviews are truly fun. I enjoy coming up with algorithms to solve interesting problems. But reversing an array is not an interesting problem; it's trivial. It got the point where I felt like I should walk in to an interview, introduce myself to everyone in the room, and go right for the white board and put up an array-reversing function, just to get it out of the way.

      That a significant number of applicants for a programming position couldn't (or wouldn't) solve this quickly is sad commentary. (It's even worse if you consider it's likely yours would not be the first position these folks have applied for. Based on my experience, they would have been asked the same question previously, and not only couldn't come up with a solution, but also didn't think, maybe I should figure this out before I send out any more resumes.)

    16. Re:I dunno... by MrBandersnatch · · Score: 4, Funny

      It took me 6 because I spent 5 minutes trying to find an elegant solution to the problem - do all older programmers suffer from the problem of premature optimization? ;)

    17. Re:I dunno... by funwithBSD · · Score: 4, Interesting

      And I probably would hire him.

      IF he is good enough to take my stupid test and shove it up my ass for wasting his time but without refusing the request, he is the kinda of guy I want one or two of my team. Or more. My boss is this guy, I am this guy, half the rest of the team is like this guy.

      Those guys are the kind of guys you can give a "Letter to Garcia" to and know it is going to get there without much intervention on your part.

      And those are the sort of guys that make complex datacenter migrations/refits successful, even if you have to provide air cover because some PM tried the same stupid trick and he shoved the test up their ass and they did not like it.

      --
      Never answer an anonymous letter. - Yogi Berra
    18. Re:I dunno... by Anonymous Coward · · Score: 5, Insightful

      I don't understand why employers don't just ask to see some code the developer has already written. Some people (nerds) don't do well in social situations and it takes a few days to get into the swing of things.

      I really don't get the "write a merge sort" routine. When was the last time someone did this IRL? At least people can use google, etc. When I was outta college, we had to do this crap on a whiteboard with 5 guys staring at the back of your head with no references. Talk about nerve racking.

      I would think the best possible thing to do would be to ask the candidate to write something before the interview and give them a few days. That way they are in their comfortable environment and can do their best work, proofread, comment properly, debug properly, optimize properly, etc. That's what you're really after, not someone who can write buggy ass, un-commented, un-optimized code really fast.

    19. Re:I dunno... by narcc · · Score: 4, Funny

      No, most older programmers suffer from "do it right" syndrome.

      I wrote two different solutions and selected the most readable. It took 8 minutes, but I had to chase some damn kids off my lawn.

    20. Re:I dunno... by Goaway · · Score: 5, Insightful

      On the one hand it seems kind of lazy.

      Programming is pretty much Applied Laziness, so that is probably a good thing too.

    21. Re:I dunno... by FictionPimp · · Score: 4, Interesting

      Yes and no.

      I have taken programming tests for jobs. I tend to do really well and have gotten quite a few jobs and job offers from my tests. I excel at tests that give me a few days to complete some minor 'real world' type project. These jobs typically had more knowledgable staff and they used my 'test answer' application as a launching point for a discussion on my ability. They did this by challenging my design decisions, asking questions about areas in the code to get my insight, and asking me how I would improve the program given more time, or improve the test.

      I have also bombed tests that were timed asking programming questions. Many of these tests asked for simple things (print out a multiplication table to look exactly like this example) and I simply brain farted because I don't typically write applications that need console formatted output. I end up looking like a idiot to the test givers. I found no value in these tests asking me to write a function that factors, or write a loop that prints out hello 10 times. Interviews after these tests tended (when they happened at all) to be lower quality and the employees seemed less knowledgable. There was much less meaningful discussion about my abilities, even when I 'aced' the test.

      When I do my job in real life, I have time to plan, research, and I can keep open documentation for reference. I don't need to memorize every obscure function in the language my job requires, instead I can pull up documentation on how to use that object, function, or method. Many tests I have taken do not allow for this and it has cost me a few job interviews. While you have stated you encourage googling, most tests I have taken have explicitly denied the ability to search. I'd much rather have a week to build a working application then 45 minutes to prove I know how to write boilerplate code and memorized a whole bunch of console formatting functions.

    22. Re:I dunno... by TheSpoom · · Score: 3, Interesting

      Lazy, in a programmer, is a virtue.

      --
      It's better to vote for what you want and not get it than to vote for what you don't want and get it.
      - E. Debs
    23. Re:I dunno... by fzammett · · Score: 4, Insightful

      Wish I had the mod points, but this is spot on.

      I've frankly never been particularly good solving these "simple" algorithmic problems on the spot either, even with my 20+ years of experience in the field, even with being a published tech author, even with being very highly regarded by all I've ever worked with. So, although I haven't had the need to interview for a job in quite a few years, I'm sure I wouldn't do any better than average if these sorts of things were thrown at me.

      But, compare the code I write for a living with the code most others do and there's no question which one of us you'd want to hire.

      I think this is true of a lot of good developers... there's MUCH more to this job than being able to solve a specific single programming task because all of us that are worth hiring can do that, given enough research and time... sure, I agree, it's nice if you can throw algorithm X, Y or Z up on a whiteboard from memory, that'll make you marginally faster than me... but speed, while not irrelevant, is FAR from the most important characteristic of a good developer. Code that is clean, elegant, logical, as simple as possible and maintainable five years down the road are FAR, FAR, FAR more important, and you're NOT going to gauge those things with a fizzbuzz-type test (I do A LOT of interviews now, believe me, I know this from experience).

      --
      If a pion (n-) collides with a proton in the woods & noone is there to hear it, does lamdba decay into the source pa
    24. Re:I dunno... by ShanghaiBill · · Score: 5, Interesting

      So how can one pass the HR screen and get an interview with "programming knowledge", and even a CompEng degree, but with otherwise no experience?

      Obvious answer: apply to companies that pre-screen with on-line tests. At my company, if you do well on the on-line test, you will get an interview. At the interview, you will spend about 30 minutes chatting, and about 2 hours writing code. Some of the coding will be on a white board in a conference room with your potential co-workers, and some of it will be alone in a quiet cubicle.

      We added the "cubicle coding" because some introverted people don't do well on the white board, but can shine when allowed to focus in a quiet cubicle. I learned this when I declined to hire an applicant because he tended to mumble and stare at his shoes. That evening he emailed me an extremely concise and well coded solution to the problem, way better than I would have done myself. I brought him back for a second interview, hired him, and he turned out to be one of the best programmers I have ever worked with. Eventually he became less introverted, and when he talked to me he would stare at my shoes instead of his own.

    25. Re:I dunno... by Anne+Thwacks · · Score: 4, Funny
      elegant, easy to read, and maintainable

      You mean rewrite it in another language?

      --
      Sent from my ASR33 using ASCII
    26. Re:I dunno... by Ihlosi · · Score: 3, Insightful
      People with 15 years of "experience" on their resume would regularly fail or give up.

      I'm curious ... can you elaborate on how exactly they fail?

      Do their attempts just have stupid bugs or is the whole approach wrong?

      I'd probably fail at "printing". Only writing code for devices without any human-targetted outputs does that to you. :P

    27. Re:I dunno... by dward90 · · Score: 3, Informative

      While you're absolutely correct that a fizzbuzz test is not a good way to determine if you *want* to hire someone, I think you're missing the point of these kind of exercises. It's purpose is to weed out candidates who are a complete waste of time. Trivially simple programming tests don't tell you if a person is a good developer. A passed test means basically nothing. However, a failed test means that to spend any time interviewing that candidate is a complete waste.

      Note that I'm talking about really simple stuff, with no real time limit and not caring about bullshit syntax (You forgot a semi-colon! Go home!). I would never expect an experienced developer to code out complex sorting or search algorithms from memory. Those tests, for sure, don't tell you anything.

      --
      My other sig is clever.
  2. Of course by Bogtha · · Score: 5, Insightful

    They are extremely valuable - they let you know which potential employers don't have a clue about programmer productivity / expertise.

    --
    Bogtha Bogtha Bogtha
    1. Re:Of course by buddyglass · · Score: 5, Informative

      I took one of these during an interview. They put me in a room w/ a computer my IDE of choice and had me do a project. The general gist was to build a program that read instructions from a file, parsed them, carried them out, then output the result at the end. The instructions all had to do with string manipulation. After I finished, they brought my code up on a projector and had four or five developers do a sort of code review, asking me why I chose to do various things in certain ways. So, not only did they test whether I could finish the project successfully, they got to see whether I can speak intelligently about design decisions and handle constructive criticism from other developers. Seemed like an extremely valuable exercise.

  3. Useful for weeding out non-programmers by Ckwop · · Score: 5, Insightful

    We use Fizzbuzz and a short SQL test that take a total of 30 minutes for the first part of the test. If they fail this, we can them and don't give them an interview.

    A surprising number of people fail this test.

    We then have a larger problem with much more time allotted. Here we're looking for style and quality of construction.

    That said, even with this longer test, the people we hire tend to get the same distance through the test. They're at least within the same half of an order of magnitude.

    At the end of the day, in a paid position you can and do have a deadline to work to. You can't take forever building something. You have to produce the goods!

    1. Re:Useful for weeding out non-programmers by davidbrit2 · · Score: 3, Insightful

      Yeah, give them a simple task. Something that any reasonable programmer should be able to do in 15 minutes. Then give them a solid hour to work on it. If they can't produce something working in that time, that's a pretty informative result. The time limit isn't a speed challenge; it's meant to be very generous, and act as, "Look, we need to move on..."

      Personally, I like to give a few different options from which they can choose freely. Something procedural, something OO, and maybe something in SQL or a functional language. Perhaps a couple different choices for each - around 6 to 8 total. That way you don't run the risk of excluding a worthy candidate because you happened to design some problem they aren't really specialized in, and if they can't handle any of them, that's a nice big red flag.

  4. Re:No undergraduate level stuff for me by beelsebob · · Score: 5, Insightful

    I personally discard any applicant that thinks like this, it means they can't actually think about algorithms, data structures, and how to design something well, and in doing so will produce sloppy assed code.

  5. Aren't all tests timed to some degree? by khakipuce · · Score: 5, Interesting

    A lot of companies use coding tests as part of the interview process and pretty much there will be some time limit, whether stated or not. They are not going to let you sit there for two days to answer 20 questions or complete a 10 line routine.

    As to the value of rigid timing, then that is a bit dubious.Do you want fast and sloppy or slow and accurate? Does this tell you something about the organisation and whether or not you want to work there? I feel it really depends on how they treat the results WRT the timing.

    --
    Art is the mathematics of emotion
  6. Yes by Splab · · Score: 5, Insightful

    If the people performing the test are any good.

    First of all it will weed out the anti authority programmers. (There is a lot of people who will refuse to do this - the door is right there...)

    Next, it will test if you can handle stress - quality of the code (should be) is irrelevant in these kind of tests. But you learn a lot about how people act under stress.

    Personal experience, during an interview I was asked to implement a hash map on a whiteboard. What they where looking for was not an actual shiny working example (hands up, those who don't need to go look in a book to find a proper hashing function (or the interwebs)) - they wanted to see how I handled myself in a stressful situation.

    1. Re:Yes by SirGarlon · · Score: 4, Informative

      If the people performing the test are any good.

      This is a key point. I "failed" one of these interviews because my implementation updated the left-hand side of a loop condition, and the kid who was interviewing me didn't have the listening skills or mastery of basic algebra to understand that can be equivalent to updating the right-hand side.

      The take-away for me was, thank God I'm not working there with him as a colleague or, worse, a supervisor.

      This was at Google, where everyone thinks they're hot shit.

      --
      [Sir Garlon] is the marvellest knight that is now living, for he destroyeth many good knights, for he goeth invisible.
  7. Sure it does by beinsvein · · Score: 3, Insightful

    If a job requires a skill that is easy to test, it should be obvious that you want to test it. Programming is such a skill. Sure there are tasks within programming that can't be tested in 45 minutes, but there are also tasks that can. I'd feel I knew more about a programmer's skills having seen a couple dozen lines of code she's written than for instance hearing her last employer's opinion, which may be biased by all sorts of interests, or reading the list of projects she'd worked on, where you don't know how she contributed. College grades in programming courses might provide the same kind of information, but courses may not be standardized and the candidate might have developed her skills since college.

  8. Heck yes by dkleinsc · · Score: 5, Informative

    The basic rule of programming interviews is that you should demand that they actually program. It doesn't necessarily have to be a difficult problem: I've handed somebody a standard Fizzbuzz in an interview, and the competent candidates will solve it in 2-5 minutes, while the incompetent candidates won't solve it in 15 minutes.

    The reason this is necessary is that on paper, the incompetent candidates can look identical to the competent candidates.

    --
    I am officially gone from /. Long live http://www.soylentnews.com/
  9. We found that broken code was a better test by mykepredko · · Score: 4, Interesting

    When I was at RIM, we used a broken quick sort method that the candidate was asked to fix. We didn't time how long it took the candidate to implement the fix, but it generally required the candidate to do some research as to what was wrong. One of the team leads created a simple app that tested the performance (ie speed) of the fix.

    What was really interesting to me was the number of candidates who refused to do the test (50-60%) because they said it was "beneath them". The big problem was, RIM's HR (OD) that insisted we interview the candidatest that refused to do the test because we were losing potentially half the candidates that were responding to the job applications (this was when RIM was The Place To Be).

    The best candidates were the ones that did the test and asked if we had any more. These candidates also tended to produce code that ran sort the fastest.

    myke

  10. Re:No undergraduate level stuff for me by buddyglass · · Score: 5, Insightful

    You would be surprised at the (low) quality of some candidates whose resumes suggest they're qualified for a senior engineer position.

  11. Re:just like speed writing by SurfMan · · Score: 3, Funny

    Funny how you misspelled "Gammar Nazi"

  12. Re:No undergraduate level stuff for me by beelsebob · · Score: 5, Insightful

    The thing is, you may not be hiring a worldwide known linux kernel expert. You may instead be thinking about hiring someone who's CV says he's done several impressive looking things. You need to verify what his level of involvement in those was, and a good first step is often "are you so retarded that you can't possibly be telling the truth on your CV".

  13. Re:No undergraduate level stuff for me by ShanghaiBill · · Score: 5, Insightful

    I personally discard any company that tests undergraduate-level stuff.

    This is one of the reasons for the test. It not only filters out the incompetent, but it also filters out the arrogant prima donnas, who will probably not be good at teamwork.

  14. Yes - tests more than just coding. by jnelson4765 · · Score: 4, Informative

    I've done one recently - it also tests memory and grace under pressure. Some people just can't perform well under the gun, and in a high-pressure workplace where you may be dealing with outages that are hitting the tech press within minutes, and the global press within an hour, being ale to not fold under pressure is a critical job skill.

    Plus, as my old business computing teacher in high school said, "You will be doing tasks that make no sense on obsolete technology for inscrutable reasons. If you have a problem with any of this, you should probably drop out of this class, since you do not have what it takes to be a programmer in the business world." Dealing with arbitrary requirements is part of working for any large company, and seeing if an applicant will go through with it, or if their ego is going to get in the way, is a useful test.

    --
    Why can't I mod "-1 Idiot"?
  15. Re:No undergraduate level stuff for me by qwijibo · · Score: 4, Insightful

    When I'm hiring for positions that are paying high salaries, I want to know the person is just as good (or better) in front of a computer as they are at interviewing and sounding smart. A simple programming exercise can confirm that the person is good with computers, not just as BS'ing their way through interviews.

    It's disappointing how many applicants will fail such a simple demonstration of their claimed skills. Likewise, if someone thinks a short demonstration is beneath them, I don't want to work with them. Every job has some crap that just needs to be done, even if its a waste of everyone's time. If they haven't learned the "do it and move on" philosophy, they're going to be hard to work with. I've worked with people who will spend days arguing against doing 20 minutes of work - I'm definitely not going to hire people like that.

  16. a sensitive subject with me by TheGratefulNet · · Score: 4, Interesting

    ob disc: I'm an older guy (50's) and have been writing C code for almost all my jobs in my life since my early 20's. I write code at home, I develop firmware (and hardware, also at home) and I'm extremely technical.

    but I fail a lot on 'programming timed tests' and I blame my older slower mind, mostly. the last time I HAD to get inside a tree data structure and totally rewrite it: never in my life. the last time I had to implement a sort routine from scratch: never in my life. its always been a matter of consulting the standard ref models, adapting them and using them. its simply not real-world to test memory recall.

    younger guys (I was one once, lol) have an advantage. its fresh in their minds, and they don't have 35+ years of 'noise' in their brains for those sort/search/traverse routines to compete with. I remember when it was trivially easy to derive those algs on the spot or recall them from memory. I passed almost every coding test back in the 80's, 90's and even 00's. but now, I'm finding I have to sit back, think, maybe search a bit and then I can get the answer.

    interviewers who are in their 20's and 30's have no patience for people like me. I bet they even laugh behind my back. and yes, speed DOES definitely change as you get older.

    but put me in a real life situation where I DO have net access, emacs, gcc and gdb and I'll get your answer pretty quickly and demo it to you, too, if you want.

    in summary, real life is an open-book work style. testing candidates closed-book style really reflects badly on YOU, the interviewer, for not getting this detail about how young vs experienced people think and solve problems. for the new guys, you can only ask them the datastruct101 level questions. but its wrong and even insulting to ask older guys the same questions and in the same way, expecting the same speed of reply.

    when I interview with older guys, they 'get it' and they aren't such hard-asses. they know what matters, there is respect and it shows. I like interviewing at places like that. they have human beings there.

    but 'compare dick sizes' interviews, where the company guys are there mostly to show off and try to knock you down (I'm looking at you, google...) are a waste of everyone's time and fairly insulting, at that.

    I would almost go so far as to say that its improper to have a 20something interview a 40 or 50something. they have no idea what to ask, how to gauge the reply or value it and it often comes off as a strange young/old challenge.

    anyway, I will not pass any coding speed tests. but I can always solve the problem, I can learn 'on the fly' as I research the problem and I know enough to avoid the bad algs and target the efficient ones. I just don't -care- about deriving the fundamental building blocks anymore. I USE the blocks, I'm kind of tired of looking inside them. (I build electronics quite a bit but I'd never be able to answer exactly how an NPN is built, nor do I need to care to be able to effectively use it).

    companies that apply speed tests have missed the point. it shows poorly on them, in fact, that they think this actually makes sense.

    --

    --
    "It is now safe to switch off your computer."
  17. Re:No undergraduate level stuff for me by 0xdeadbeef · · Score: 3, Insightful

    And I understand the pompous arrogance that motivates his feigned ignorance at the purpose of fizzbuzz tests. For every apocryphal story of "zomg they asked me to write quicksort from memory!" there are hundreds of actual examples of people with impressive credentials who can't even handle modulo arithmetic or linked lists or whatever trivial concept most competent programmers know reflexively. I know, early in my career I graded the damn things, and flunked several people with Masters degrees and many people with years of experience. Never failed a PhD's test, but I did witness one guy who stormed out of the interview when asked to take one. Buh-bye, cupcake!

    No one is above this. Anyone who believes they are too special to take it is either so completely ignorant of the industry and the caliber of applicants that they won't perform well in a business setting, or, more likely, they are aware of their own shortcomings and are putting on a show to maintain face and self-esteem. Competent people use them as an opportunity to relax and maybe show off a little.

    Seriously, refusing a fizzbuzz test for a programming job is like applying at the DEA and refusing the mandatory drug test. I don't care how you feel about it, you're a fucking a moron to think you could ever get around it.