Slashdot Mirror


Programming Interview Questions Are Too Hard and Too Short (triplebyte.com)

Programming interview questions can feel unnecessarily difficult. Sometimes they actually are, a new study has found. And this isn't just because they make interviews excessively stressful. The study shows that harder programming questions actually do a worse job of predicting final outcomes than easier ones. From the study: Programming under time pressure is difficult. This is especially true during interviews. A coding exercise that would seem simple under normal circumstances somehow becomes a formidable challenge under the bright lights of an interview room. Stress hormones cloud your thinking during interviews (even though, sadly, neither fight nor flight is an effective response to a menacing programming problem). And it can almost feel like the questions are designed to be perversely difficult. I actually think this is more than just a feeling.

Interview questions are designed to be hard. Because the cost of hiring a bad engineer is so much higher than the cost of rejecting a good engineer, companies are incentivized to set a high bar. And for most companies that means asking hard questions. Intuitively this makes sense because harder questions seem like they should result in a more rigorous screening process. But intuition turns out to be a poor guide here. Our data shows that harder questions are actually less predictive than relatively easy ones.
Further reading: Programmers Are Confessing Their Coding Sins To Protest a Broken Job Interview Process.

42 of 463 comments (clear)

  1. sing for your supper by s122604 · · Score: 4, Funny

    take this string, now reverse it, now convert it to pig latin, now reverse that.. How many internal threads are used to perform writes in a ConcurrentHashMap, now bark like a seal..

    1. Re:sing for your supper by AmiMoJo · · Score: 3, Interesting

      "Do this arbitrary coding problem" is usually a good sign that you don't want that job anyway. Such things have little relevant to the job or to producing good software most of the time.

      The only exception is on embedded where you actually do need to know the ins and outs of the compiler and stuff like that. But for Javascript or C# devs they should use String.Reverse() because whatever they code on their own will be worse and a waste of time. And even for embedded I would only ask by way of some questions about some sample code the candidate was showing me.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    2. Re:sing for your supper by Megane · · Score: 3, Interesting

      It shouldn't be about whether or not a person can program a string reverse, it should be about the entire team watching the new interviewee's process of writing the code on a white board (after they have interviewed him personally two or three at a time) to get a feel for his bullshit to brilliant ratio. (or his brillant to brilliant ratio if you're a TDWTF fan).

      Unfortunately when I was at a company that did this, it was during the dot-com crash of the early 2Ks, so we only had one hiring round while I was there. Our two programs were reverse a singly-linked list and copy a file. Watching recent CS grads who were weaned on a diet of Java trying to do file copy (it's important in C/C++ to know how to sling data around in buffers) was such a train wreck. In my case, I knew the basic file copy inside and out, including the performance implications of buffering. The CS grads were having trouble with the basic idiom of read a byte, while not EOF, do something with the byte. It was the EE grads that actually knew what the fuck they were doing.

      --
      #naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
    3. Re:sing for your supper by angel'o'sphere · · Score: 2

      Embedded coding is actually much more easy.
      You simply have your ints and chars and do your & and |.

      No idea why people try to push embedded programming as a pillar of high magic.

      A modern business "framework" regardless if it is Qt on a desktop or Spring, Hibernate in the Java ecosystem or what ever the .Net equivalent is: requires 100 times more knowledge than simple stupid C programming (or even assembler) on a 1960 invented chip.

      The /. idea that only assembly programmer (we tolerate C programmers) on archaic devices know how to program is as absurd as an Sumerian Professor teaching modern Business Administration in an american university: in old Sumerian.

      Hint: when did you program your last C/C++ program that as deployed on a web server serving 10k (+) concurrent sessions, having it multithreaded accordingly, having it in multiple languages and locales ... abstracting or preparing the database for that ... etc. p.p. ? And when did you do that in assembly the last time?

      Hint: I did never. And I "speak" about 20 assembly languages.

      Programming in assembly basically means: you have absolutely nothing to do with all the problems the real wold is facing .. and that is not xoring two bytes together.

      --
      Cost free eBook I read (by iBook/Kobo/Amazon/ObookO/Gutenberg etc.): "The Green Odyssey" by Philip Jose Farmer.
    4. Re:sing for your supper by fahrbot-bot · · Score: 2

      Our two programs were reverse a singly-linked list and copy a file. Watching recent CS grads who were weaned on a diet of Java trying to do file copy (it's important in C/C++ to know how to sling data around in buffers) was such a train wreck. In my case, I knew the basic file copy inside and out, including the performance implications of buffering.

      Or skip the buffering. I wrote an example using mmap() for Ultrix / 4.3BSD on a VAX-11/785 back in 1991 to demonstrate Unix memory mapping to a colleague at NASA LaRC who was coming from CDC NOS and NOS/VE [ my opinion is that NOS stands for Not an Operating System :-) ]. The program cats files to stdout, but could be changed to copy to a destination. The benefit here is that the OS does *all* the paging/buffering for you and (literally almost) all the run-time is accounted for as system time. The 50 line program still compiles cleanly on Ubuntu 16.04. (snippets below)

      void *map;
      struct stat stats;
      int fd = open(argv[i], O_RDONLY, 0);
      fstat(fd, &stats)
      map = mmap(0, (off_t)stats.st_size, PROT_READ, (MAP_SHARED), fd, 0);
      write(1, map, stats.st_size);
      munmap(map, stats.st_size);
      close(fd);

      --
      It must have been something you assimilated. . . .
    5. Re:sing for your supper by djinn6 · · Score: 2

      I'm sure there's difficult parts to embedded programming, just like any other technical discipline, however, you should not dismiss higher level work as easier, or even less paid. Now I don't know how much you make, but there are software engineers working at Facebook who make $400k in total comp. And yes, they are software engineers, not managers.

      Difficulty for them comes from 3 directions: performance, multi-threading, and customers.

      Performance is a given. A 5% reduction in CPU usage directly translates to millions of dollars of savings per year when something is executed billions of times per second. A lot of that involves a deep understanding of how the underlying hardware works. For example, you can get a pretty decent boost by massaging your data structure into something that could fit in the L1 cache.

      Multi-threading is a fallout from performance demands, but it's difficult in it's own way. Shared memory can lead to inconsistencies that are extremely difficult to debug due to its non-deterministic nature, and the actual problems may surface long after the inconsistency has occurred. So you turn to using locks, but then you discover locking not only reduces performance but causes deadlocks. Now to process billions of requests per second, you're going to need more than one machine, and if there's a shared resource, such as a database, then suddenly you have all of those problems made even more fun with the addition of network delay.

      Finally, since it's something customers can see, it also means they want a say in how it works. The worst of which are actually reasonable demands that just happen to be extremely difficult to implement due to a mismatch between how they envision the software to work and how it's actually designed to work. Keeping them happy while refusing their reasonable demands (that you've admitted was reasonable) is at least as difficult as all of the aforementioned difficulties.

    6. Re:sing for your supper by Darinbob · · Score: 2

      However there will always be a time when someone somewhere needs to know how to do arithmetic at a low level on a computer. These aren't things that are done once and then never needed again for all eternity. Maybe not many people will need to know this, but until we have AI that can do this we'll need people. Every time you have a new processor designed you will need to know how to do this, or when you have a new compiler, or when the third party libraries don't have what you need, etc. Even if you don't do exactly this arithmetic problem you will probably need to do something very similar to it or you will need to think in a manner similar to it.

      Even beyond this, I see many programmers who don't know floating point well and because of that they introduce bugs. Ignorance of how things work under the hood causes lots of issues. Given that schools don't teach this anymore, and too many programmers rely on libraries to do anything complex, we may soon be in a time where knowing how to fix code becomes more and more esoteric.

  2. Re: Harder? by Anonymous Coward · · Score: 4, Insightful

    Answers are never that important to me as an interviewer unless I am verifying they possess a certain skill. I am much more interested in how conscientious a candidate is in looking for the right answer. It is predictive of how they will solve real problems when they are unsupervised later after being hired.

  3. Loaded Interview by mrobinso · · Score: 5, Interesting

    I shortlisted for an interview and got ambushed on my arrival. There were 19 other candidates, and we're all ushered into a small room with 20 desktop spots on a table that went around the entire room. We were handed one single sheet of paper with a coding problem we were to find a solution for. All 20 workstations were Mac Minis. None of us were told there was a programming exercise, none of us were told it was a Mac shop.

    I walked out of the "interview" in disgust. Eleven others went with me. By the looks on the interviewers' face, this has happened before.

    I don't mind being put to the test, but I don't like being ambushed.

    --
    -- Karma whore? You betcha. --
    1. Re:Loaded Interview by Smerta · · Score: 2

      Place sounds like a dumpster fire.

      Does the place have a name? Sounds like in your round alone, there were 12 people who walked out. Probably dozens, if not hundreds, have walked out over time.

    2. Re:Loaded Interview by ShanghaiBill · · Score: 3, Insightful

      None of us were told there was a programming exercise

      Do you really need to be told this? Were you expecting to be hired as a programmer without demonstrating that you can program?

    3. Re:Loaded Interview by jythie · · Score: 4, Interesting

      Ah yes, the 'guess which compiler we are using and how it differs in minor ways from the one you know in 20 minutes!' style test.

    4. Re:Loaded Interview by tomhath · · Score: 2

      So there were 8 people left who had the required skills too complete the requested task?

      1: If they were looking for Mac users they should have screened for them in the first place

      2: If being familiar with using a Mac is the main qualification then it worked (but see #1). Otherwise they screwed themselves by rejecting good candidates who could have become familiar with a Mac in a week or two. Very stupid and inefficient.

    5. Re:Loaded Interview by monkeyxpress · · Score: 5, Insightful

      None of us were told there was a programming exercise

      Do you really need to be told this? Were you expecting to be hired as a programmer without demonstrating that you can program?

      I imagine it wasn't so much the test, but the bulk 'we don't want to waste our time, but are happy to waste yours' nature of the interview process. It can be a lot more effort for a candidate to come to an interview (time off current job, dry cleaning, transport costs) then for the company to allocate a few staff to the interview room for an hour, and it is a pretty good indicator that the company is happy to mess you about if they expect you to put the effort in to turn up, but won't even give you a one on one interview.

      I would always expect a one on one interview unless they told me before hand as a matter of courtesy.

    6. Re:Loaded Interview by Oligonicella · · Score: 2

      No, because I don't know that you actually wrote the examples of you work.

      That's when you talk to them. Pretty easy to determine if they wrote the code or not.

  4. Missed the boat... by Anonymous Coward · · Score: 2, Insightful

    Small hint: sometimes the answer is not what they are looking for...stress handling, bullshit-o-meter, implementation ideas, probable likability, etc...
     
    Only once I had an interview where I didn't get the job (as a software dev - back when I was a junior, was totally not prepared). The key is to be prepared and actually tell them you don't know and/or you don't want to bullshit them if you don't know the answer.

  5. Re: Harder? by Penguinisto · · Score: 4, Interesting

    Answers are never that important to me as an interviewer unless I am verifying they possess a certain skill. I am much more interested in how conscientious a candidate is in looking for the right answer. It is predictive of how they will solve real problems when they are unsupervised later after being hired.

    Quoted in full for emphasis.

    It's not always important to have a problem answered fully or correctly in the allotted time. It is far more important to see *how* the candidate tackles the issue, what steps they take, what mental tools they bring to bear, and most important of all, knowing when to ask for more information and/or assistance (and then paying attention to what they're asking for, and the reasons they state as to why.)

    I used to do this back when I dealt with just sysadmins. One of the fun bits was to chattr +i a config file, but then have them alter it as part of the testing (but not give them the permissions to fully do that).

    The point wasn't to torture anyone, but to see how they handle non-ordinary problems. To watch how they tackle it, how they determine what's going on, then know whether or not to ask for help - and to see if that request for help is specific ("you'll have to change the attributes back before I can update it"), or if it was vague.

    That told me more about the skills of the candidate than whether or not they successfully knocked out a problem.

    --
    Quo usque tandem abutere, Nimbus, patientia nostra?
  6. Interview questions? by bobbied · · Score: 2

    It's pointless to ask anything other than a basic programming question during an interview. IF you insist on verifying that a candidate knows the language they claim, do that OUTSIDE the interview. You can present them with a "how do you fix this error" or give them a bit of code and ask them what it does, but any detailed questions like "Solve this problem using recursion" really doesn't tell you anything.

    Personally, I ask what seems to be a programming question, but really isn't. I ask them how they'd go about writing some algorithm and then start throwing system integration tests that are failing at them, their coworkers not being available to fix something and a deadline they don't think they can meet. The point is to find out how open they are to ask for help, how readily they will report problems meeting schedule and how they choose to interact with uncooperative coworkers. To me THAT's the stuff that is more important than being able to implement a swap sort on a linked list using recursion.

    --
    "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
  7. A Favorite T-Shirt Slogan nails it... by ytene · · Score: 2

    ... "Talk is cheap. Show me the code."

    This might not work for all developers in all situations, but one of the best ways to establish credibility as a developer is to find an Open Source project you like and contribute.

    When it comes to the technical aspects of an interview, any technical interviewer worth their salt should be able to go to Github and verify that you are the person who committed the code you claim to own. Take along hard-copy, annotated if necessary, and be prepared to talk to it, to explain why it is something special, elegant, efficient, and flexible.

    If you can get testimonials from project leads or other contributors, to demonstrate that you're a good team player, so much the better.

    There are several advantages to this approach:-

    1. The body of work that you build up stays yours and can be taken from job to job
    2. You can share this well in advance of an interview, giving your interviewer time to review it and thus lead to a good discussion

    Yes, someone is going to argue that this approach could result in cheating and could allow you to claim ownership of code that isn't yours. This is not a new problem for the interview process to factor - and a good technical interviewer should be able to ask piercing questions able to determine if you really did write what you claim is yours.

    It's a completely [utterly] different example of credibility, but I am for some reason reminded of that scene in the original, Black-and-White movie version of the "Dam Busters" raid from the Second World War. Barnes Wallace, the inventor of the bouncing bomb, needed the use of an RAF aircraft from which to test drop his prototypes. It quickly became apparent that he needed an actual Avro Lancaster bomber, but of course, in the middle of a war, these were in short supply. His response?

    "Do you suppose that if we explained to your man in the Ministry that I designed the Lancaster that he might be willing to lend me one?"

    The whole reason we hold interviews in the recruitment process is to try and establish whether the candidate has the chops to actually do the job. Nothing says that better than hard, real-world evidence.

    1. Re:A Favorite T-Shirt Slogan nails it... by Anonymous Coward · · Score: 4, Interesting

      My biggest problem with your approach is I don't have any code in github. A lot of professional programmers don't. I program 50-60 hours a week for a living, the last thing I want to do when I get home is program. And the company owns all that I code, and they don't put it on github. Any programming I do at home is typically related to learning new languages and libraries, and to put it mildly, none of that is worth publishing anywhere.

  8. An obvious parallel by chrism238 · · Score: 2

    A similar situation is seen in final college exams, where students are asked to answer/solve a difficult programming question against the clock. A too frequent outcome is that few students fully answer the question, while many very poor answers have to be opaquely scaled to meet an external requirement. Not the best mechanism to separate the sheep from the goats.

  9. Stop interviewing, start bidding contracts by xtal · · Score: 2, Insightful

    I was a lot happier when I bid contracts for work and stopped interviewing for jobs.

    Being an employee sucks. The tax system is set up to screw over the working schlob. If you're smart enough to program well, you're smart enough to hack the tax system too. Programming is the only profession that has anything like trivial tests in interviews. The flip side of this is without professional credentials, that's where things go.

    Otherwise.. stand up and do tricks.

    Unionize already. Doctors are unionized. Lawyers are unionized. They call it something else, but that's what it is..

    --
    ..don't panic
  10. Subjective. by jythie · · Score: 4, Interesting

    I think a big problem with these questions is not if they are truly hard or difficult, but the meta thinking involved. Many of them really come down to 'which trick did the person who designed this test have in mind?' or even worse 'which niche within the language is the person who wrote this obsessed about?'.

  11. Reminds me of the phone book joke by gotan · · Score: 2

    A lecturer asks students to learn the phone book by heart.
    The physics students ask: "Why?"
    The medicine students ask: "Until when?"

    There's a longer version, but you get the point. Apparently some of these "hard interviews" are just testing how fast you can cram irrelevant knowledge into your head every sane person would look up when they need it. That someone knows how to write down a quick sort algorithm in c with every semicolon in the right place doesn't mean they know when best to use it.

    And now for something completely different:
    https://www.youtube.com/watch?...

    --
    "By the way if anyone here is in advertising or marketing... kill yourself." -- Bill Hicks
  12. Re: Harder? by jellomizer · · Score: 3, Interesting

    I have found it useful to give them questions that they may not know.
    I had a test that seemed to be rather good at judging ones ability. And it took people an average of 4 hours to complete.

    Question 1. I have an HTML file with a Picture of two boxes overlapping each other, and a box with two empty Div's asking them to make the other box look like the picture. (Non Web people will need to google to learn how to use style sheets, and position properitys)

    Question 2. A simple Application form, that asks for the address, validates that the format is correct, and just pops up a text box giving the errors or showing the address in a proper US mailing address format. (The zip code with leading 0's gets them every time. )

    Question 3. A SQL Stored procedure, that returns a table where the rows become the column. The code works correctly, however there is a null in the data, preventing it form working correctly. (So they either will need to do something with the null, or exclude it, extra bonus points if they state how insecure that code was.)

    This seemed to have allowed the company to get some good employees, but still it isn't fool proof, a few people slipped threw the cracks, mostly because they actually had experienced those particular issues before, so they knew how to handle them, but turned out they would struggle on new problems.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
  13. I've conducted many interviews by nightfire-unique · · Score: 4, Interesting

    I've conducted dozens of interviews over the past 10 years, and the best predictor I've found is simply to talk to candidates.

    I typically ask questions like:

    What's your favorite *nix OS / distribution, and why?
    What was your worst day, and how did you recover?
    What was your greatest success?
    What's your methodology when you're asked to start a new project from scratch?

    Key is to go into detail on each of the points, and listen for confidence, honesty, bullshit, and specific words. Test individual responses. Get down to syntax, command arguments, file locations, protocols... but try to keep focus on what they've done.

    So far out of the 8 people I've hired/recommended, only one didn't work out.

    --
    A government is a body of people notably ungoverned - AC
    1. Re:I've conducted many interviews by PhrostyMcByte · · Score: 4, Insightful

      Indeed. I find that within a few minutes of talking to a candidate, I usually have them nailed down pretty well.

      A good developer simply talks differently than a bad one. They talk about what matters rather than whatever rote thing they learned in school, they are excited to talk about cool projects they did, enjoy getting into the mud answering deeper questions, have opinions about things they've been using for a long time, and don't bullshit claiming they know things they don't.

      The ones I do give a longer coding exercise to are juniors -- these guys don't usually know how to chat just yet, and don't have any interesting projects under their belt. Enthusiasm can only go so far, so I like to send them home with something to spend an hour on, letting them send it back the next morning.

    2. Re:I've conducted many interviews by Shotgun · · Score: 3, Insightful

      The problem with the approach is that there is a non-trivial percentage of people who can talk the talk, but can't actually do the job. They're good at understanding the successes of their peers in enough depth to be able to successfully claim them as their own, and even fool a competent interviewer in spite of not being able to do the work themselves.

      No. The problem with this approach is that it requires an interviewer that has been in the trenches long enough to have worked with enough of the moochers. Once you've worked with a few, they're easy enough to spot. Unfortunately, competence in interviewers closely tracks competence in the general population.

      --
      Aah, change is good. -- Rafiki
      Yeah, but it ain't easy. -- Simba
    3. Re:I've conducted many interviews by Solandri · · Score: 4, Insightful

      So far out of the 8 people I've hired/recommended, only one didn't work out.

      This is another problem with the modern interview process - you only get to see half the results. Your success rate among hires is 87.5%. But you have nothing to compare that against because you don't know what the success rate would've been for the people you didn't hire. Who knows, maybe 90% of the people your interview process filtered out would've made good employees too, and your interview process is actually picking worse candidates than random chance?

      The only method I've been able to think of to test this is for management to hire "perfect applicants" to apply for job listings at their company. People with a made-up history, skill set, and knowledge which makes them perfect for a job. See how far they get through the HR filtering and interview process. If HR or an interviewer rejects them, then that indicates a problem with HR or the interviewer.

  14. Programming test during the interview? by Anonymous Coward · · Score: 3, Interesting

    That just doesn't sound like it's going to bring out the best in candidates.

    The best approach that I've found to making programming questions part of the selection process was having qualified applicants do the test prior to the first interview. We selected a few standard programming algorithms (Quicksort, Dijkstra's Algorithm and Hash table create) that we either gave the candidate broken code or the prototype which needed the code. The candidates were given one week to submit the tests at which point they would be reviewed and we'd decide whether or not to grant the candidate an interview. The review was based on operational correctness (did the code produce what we expected from given inputs) and performance (generally speed).

    HR (this was at RIM, about ten years ago when they would hire anybody with a CS degree and was apparently breathing), raised holy hell as it eliminated at least three quarters of the applicants without us even talking to them. Well over two thirds of the candidates never submitted the tests with most of them saying "I graduated from ... and where do you come off seeing if I can program?" and others saying, "I'm too busy in my current job to do this." with HR supporting those arguments. About 10% came back and asked if we had any other tests - these 10% always did the test we gave them successfully (and sometimes brilliantly) and these were generally hired and we never had performance issues with them.

    The big problem we had was explaining to HR (sorry "Organizational Development", RIM speak) that just because you graduated with a CS degree, that did not mean you could program and that we wanted people who wanted to be challenged. When it came right down to it, they were getting hammered by their management because we were only interviewing 10-20% of their "qualified candidates" and felt that our approach made them look bad as other divisions within RIM wanted to follow our approach.

    My response was "tough shit" and lead to some interesting meetings with senior VPs at RIM.

    1. Re:Programming test during the interview? by serviscope_minor · · Score: 4, Insightful

      I'm not surprised HR raised holy hell over that they were 100% right to do so. Only people in fairly narrow niches have time to do take finye coding tests. It skews heavily towards the young and especially those without dependents. Older candidates tend to have more in their lives outside work which preclude doing such tests.

      And older, more experienced candidates know you don't do work for free.

      They don't know you or your company. You're spending zero effort to ask them for a lot. They have no indication you'll put anything like a commensurate amount of effort into evaluating their work. We've all seen jobs where the winner was selected even before the advertisement. Who on earth but the naive or desperate wants to risk their work on that.

      There's no guarantee that you'll get a fair shake if you have an on site, but you know that the company is spending about as much time as you are, so there's a good chance they're not simply wasting it.

      --
      SJW n. One who posts facts.
  15. Programming Test During the Interview? by mykepredko · · Score: 4, Interesting

    That just doesn't sound like it's going to bring out the best in candidates.

    The best approach that I've found to making programming questions part of the selection process was having qualified applicants do the test prior to the first interview. We selected a few standard programming algorithms (Quicksort, Dijkstra's Algorithm and Hash table create) that we either gave the candidate broken code or the prototype which needed the code. The candidates were given one week to submit the tests at which point they would be reviewed and we'd decide whether or not to grant the candidate an interview. The review was based on operational correctness (did the code produce what we expected from given inputs) and performance (generally speed).

    HR (this was at RIM, about ten years ago when they would hire anybody with a CS degree and was apparently breathing), raised holy hell as it eliminated at least three quarters of the applicants without us even talking to them. Well over two thirds of the candidates never submitted the tests with most of them saying "I graduated from ... and where do you come off seeing if I can program?" and others saying, "I'm too busy in my current job to do this." with HR supporting those arguments. About 10% came back and asked if we had any other tests - these 10% always did the test we gave them successfully (and sometimes brilliantly) and these were generally hired and we never had performance issues with them.

    The big problem we had was explaining to HR (sorry "Organizational Development", RIM speak) that just because you graduated with a CS degree, that did not mean you could program and that we wanted people who wanted to be challenged. When it came right down to it, they were getting hammered by their management because we were only interviewing 10-20% of their "qualified candidates" and felt that our approach made them look bad as other divisions within RIM wanted to follow our approach.

    My response was "tough shit" and lead to some interesting meetings with senior VPs at RIM.

    I just rebooted and forgot to login to /. so this is repeated AC post.

  16. Re: Harder? by Ryanrule · · Score: 3, Insightful

    Maybe you could talk to them, instead of trying to deceive them?

  17. Re:Rapid fire by JaredOfEuropa · · Score: 2

    Exactly. I also prefer (longer) questions that out candidates at ease rather than put them on the spot. For example: “What problem in your career did you most enjoy solving?” Then just take it from there and go in-depth. Interviewees tend to open up when they get a chance to talk about stuff they are proud of or enjoyed doing.

    --
    If construction was anything like programming, an incorrectly fitted lock would bring down the entire building...
  18. Re: Harder? by luis_a_espinal · · Score: 2

    I have found it useful to give them questions that they may not know. I had a test that seemed to be rather good at judging ones ability. And it took people an average of 4 hours to complete.

    Question 1. I have an HTML file with a Picture of two boxes overlapping each other, and a box with two empty Div's asking them to make the other box look like the picture. (Non Web people will need to google to learn how to use style sheets, and position properitys)

    Question 2. A simple Application form, that asks for the address, validates that the format is correct, and just pops up a text box giving the errors or showing the address in a proper US mailing address format. (The zip code with leading 0's gets them every time. )

    Question 3. A SQL Stored procedure, that returns a table where the rows become the column. The code works correctly, however there is a null in the data, preventing it form working correctly. (So they either will need to do something with the null, or exclude it, extra bonus points if they state how insecure that code was.)

    This seemed to have allowed the company to get some good employees, but still it isn't fool proof, a few people slipped threw the cracks, mostly because they actually had experienced those particular issues before, so they knew how to handle them, but turned out they would struggle on new problems.

    This is the correct outlook.

    Unfortunately, there are enough "interviewers" out there looking for canned code monkeys, that it really makes an already stressful activity (job hunting) into an even worse hassle.

  19. not testing for the right thing by art123 · · Score: 2

    Problem solving is important but having a good work ethic is at least as important and most interviews do little to identify that.

  20. Interviews should be a two way street by Larry+Lightbulb · · Score: 2

    During an interview I'd realised I didn't want the job, so when they sprang an unexpected programming test on me I asked them for the project plan and the business case behind it. They said it was to check how well I could program, I replied that I want to check how well they're organised and what their policies were. It went on like that for a few minutes until the interview ended.

  21. Re: Harder? by Penguinisto · · Score: 2

    Maybe you could talk to them, instead of trying to deceive them?

    You don't have to deceive them entirely - just emulate a problem or two to see how they handle it.

    --
    Quo usque tandem abutere, Nimbus, patientia nostra?
  22. Re: Harder? by GuB-42 · · Score: 2, Informative

    Part of a sysadmin job is to fix the mess of others, get lied to and deal with incompetents.

    Sometimes, you'll have to fix a problem, and no one will be there to help you. You are the expert, you are supposed to fix problems, not the other way around. When asked, people will invariably tell you they did nothing. If there is some problem you can't fix (ex: that "read only" attribute), you'll probably have to tell the person who can fix it exactly what to do. Either because that person doesn't know (remember, you are the expert), or because he is some kind of higher up who specifically hired you not to waste his time.

  23. We Give Live Programming in Interviews by tungstencoil · · Score: 2
    We give live programming challenges in interviews. Interestingly, we quickly moved from a 'hard' model to an 'easy' one, for kind of the same reasons.

    What we do is provide a list of about 6 (depends upon skill set we're hiring) problems that equate to first or second year CS studies. They are all straightforward and require no fancy manipulations. The candidate picks one. We set them up with an environment, they can access Google (keep search history intact, no Googling the actual problem).

    They are given an hour to do the problem; anyone on the team can do it in fifteen minutes or less. If they're having trouble, we will give them another hour. There is a proctor present to help with non-programming issues (for example, for C++ folks we'll help them compile if they're rusty with command-line gcc).

    These types of simpler exercises provide insight into some of the fundamentals: can you write code? What methods do you use to solve problems? Can someone else easily understand your code?

    The number of C++ 'programmers' who can't compare two lists based upon criteria, or web programmers who (no joke) can't code a page that dynamically retrieves data using a (provided) web service, or database folks who can't join two tables is staggering. The exercise weeds out people who have spent years - decades - copy/paste/trial-error coding. Sorry kids, we have real work to do.

  24. Re: Harder? by tungstencoil · · Score: 2
    This! In fact, I"ll expand it do include a subset of larger companies as well.

    The company I work for has multiple divisions. We primarily build technology. In some divisions, the people who write code are, indeed, just laborers who build exactly what is provided them.

    But in a couple - magical - divisions, the people writing the code understand the intent, the business, and the objectives. It's much harder to find, hire, and develop these people. It's especially bad when someone is good at one facet but not all of them. It's really difficult to scale. That's why so many places "grow" to a point where things like the business, design, architecture, etc. are divvied up. They also end up being (individually) "expensive", at least on paper.

    However, if you can make it work, the employees tend to love it. There is some survivor bias - people who don't like it are amongst those who cycle out. "I'd rather just code than deal with foo." It's also hard to scale.

    Honestly, there's merit in both approaches. As for personal satisfaction, it depends where you land in terms of what you truly enjoy.

  25. Re:Er isn't stress testing part of the test?? by Shotgun · · Score: 2

    WTF?! In the real world, when are you going to need to write a program to escape a burning building? If the place is such a dumpster fire that they are trying to push out critical, last minute fixes with the customer standing in the waiting room, then good God, get me away from there!!

    --
    Aah, change is good. -- Rafiki
    Yeah, but it ain't easy. -- Simba