Slashdot Mirror


Selecting Against Experience - Do Employers Know?

IBitOBear asks: "A couple days ago I did 'the interview loop' at that leading online retailer. Over the course of six hours I was repeatedly introduced to a guy in his early twenties, who would then ask me to write out code on a white-board for a problem that you might find in the study guide for a 200-level computer science class. I have 20 years of experience in programming and systems design. And in several cases the interviewers were vague, semantically incorrect, or self-contradictory. Interviewer blunders included not understanding that non-normal forms in databases -can be- more correct or efficient when the domain of a data is extremely limited; or choosing a leader among N candidates -is- a byzantine agreement problem. In short, the loop would have been perfect to weed out some guy getting his first job fresh out of school, but it definitely exerted selection pressure towards excluding experienced candidates. So employers, what are you doing to make sure that you are not culling out candidates with the low-ball? Job seekers, what do you do when you find yourself trapped in a sophomore study group?"

52 of 292 comments (clear)

  1. at "that" online retailer, they probably know by yagu · · Score: 5, Interesting

    They probably know they are leaning towards fresh blood, and probably will pass on more experienced and stronger candidates. I know quite a few people who work "there", and inside, they are one of the top IT shops, bar none.

    Also, there are a few things to be aware of... part of the interview process intentionally (from talking to insiders there, and at Microsoft) introduces vagueness, incorrectness, and other troubling aspects to problem solving. One of the things they're trying to observe is how a candidate deals with the obstacles.

    A friend at Microsoft told me if a candidate got flustered and angry at an intractable "problem" he (or she) was pretty much disqualified on the spot. At Microsoft, you could tell your job was "no go" if it didn't last the entire day. (Mine did, sigh... and I got the job, sigh again.) Typically they "nice" way was to tell the candidate the next interviewer got caught up in some responsibilities, and that would be that.

    My personal opinion, not that it amounts to a hill of beans for these companies, they sell themselves more short than they might realize. Business is about numbers games and businesses play the curve within one sigma, that's it.

    As for what to do when trapped in a sophomore study group, that sophomore group pretty much holds all of the cards. Candidates would be wise to suck it up, be friendly, and at least pretend not to be bothered by their seeming snobbery. (Also, by the way, the snobbery at Microsoft is real.)

    Some are better than others selecting excellent candidates (that online retailer comes to mind), but I think there's a slew of mediocre companies out there that would be better performers with a bit more appetite for investing in "old timers". Of course, coming from an old timer, I'm probably introducing my own bias.

    (ASIDE, and By The Way... you said over the course of six hours you were repeatedly introduced to a guy in his early twenties... If management had any of their wits about them, they'd consider getting rid of that guy... he should have been recognizing you by the 2nd or 3rd introduction. Sheesh.)

    1. Re:at "that" online retailer, they probably know by Guppy06 · · Score: 2, Insightful

      "Also, there are a few things to be aware of... part of the interview process intentionally (from talking to insiders there, and at Microsoft) introduces vagueness, incorrectness, and other troubling aspects to problem solving. One of the things they're trying to observe is how a candidate deals with the obstacles."

      Never attribute to malice that which is adequately explained by stupidity.

    2. Re:at "that" online retailer, they probably know by Skreems · · Score: 5, Interesting

      I agree with most of that. I'm basically one of the 20 year olds the story is complaining about. I ask retardedly easy questions when I interview people, and on occasion I will be a bit vague on purpose, to see if they will ask clarifying questions or just fumble around for a half hour (guess which one gets you hired?). The problem is, I've interviewed people who claim to have been working in industry longer than I've been alive, and you'd be amazed how many of them can't code what basically boils down to a double nested for loop. I've had people go up to the white board and fumble around for 30 minutes only to wind up back where they started. You have to ask those retardedly easy questions because half the candidates can't answer them, even the ones who've been full time workers for decades.

      As for incorrect knowledge of some algorithmic stuff... there's two options. One is, they may know the correct answer, but are waiting to see if you do, and if you'll correct them. In one of my interviews coming out of college, a person said something about the problem I was working that was blatantly incorrect. He'd been working on a similar system for months, so I'm convinced that he was just seeing whether I'd correct him, or defer to him as "the authority". I corrected him, and I got the offer. The second option is that he doesn't, in which case you should stand up to him anyway. Even if he doesn't know you're right, most people will respect someone who isn't afraid to contradict them. If you just blandly defer to everything they say, how do they know what it would be like to try to design a system with you?

      Not all of the impressions of snobbery at Microsoft are real, though. I found them very friendly in my interviews, and very down-to-earth. Probably depends on the group you're interviewing with, but there's a lot of people who are just good at what they do, and want you to show them that you're good at it as well.

      --
      Slashdot needs a "-1, Wrong" moderation option.
      The Urban Hippie
    3. Re:at "that" online retailer, they probably know by plopez · · Score: 4, Funny

      this 'for loop' of which you speak. is it like iterating over a collection or perhaps like usinng a row fetch cursor? I vaugely remember something like that from... fortran... but haven't touched it in a while... :)

      --
      putting the 'B' in LGBTQ+
    4. Re:at "that" online retailer, they probably know by Skreems · · Score: 3, Insightful
      And yet these guys have probably been writing successful software systems for years, what's going on?
      It could be any of a number of things: for one, we only have their word that they've written all these successful software systems. A resume gets you in the door, but it's useless after that. We don't know the true complexity of the system, we don't know the quality of your peers on the job, and we don't know how well the final product really worked.

      Secondly, I've known some people that could write software that "worked", but it was far from pretty, and it took an inordinate amount of time. We need someone who can code at a reasonable speed, where other companies, particularly non-tech companies who just have some internal tool programmers, may not care as much.

      Finally, it doesn't matter so much whether you actually solve the problem, but the work process that goes into it is key. If you stare at the board and just write some stuff, it tells me nothing. That's why I like simple questions posed in a slightly vague manner. I leave a lot of things undefined about the problem to see what the person will do. They can choose to assume things, which is fine as long as the state that they're assuming it. They can ask me for clarification, which I'll gladly provide. Any of these things is a big plus, because it shows you know how to analyze a vague problem, figure out the things you need to clarify it, and still move forward with an implementation without stalling on questions and definitions. The ones who fail are inevitably the ones who just stare at the board, write a couple lines of code, erase them, stare some more, etc. Specs aren't always clear. Requirements and bug reports aren't always clear. If you can't ask the right questions to clarify a slightly vague 200 level coding quiz, you're not someone many people would want to work with.

      One other comment: some people may suck at this because they rely on the compiler for everything. You can get surprisingly complex systems out of guess-and-check programming, but it's far from ideal. Quite a few new grads have this problem, although I'm not so sure about the more experienced programmers.
      --
      Slashdot needs a "-1, Wrong" moderation option.
      The Urban Hippie
    5. Re:at "that" online retailer, they probably know by boron+boy · · Score: 4, Funny

      We won't kill you, but if you ever want to see your garden gnomes again you'll give us the source code.

    6. Re:at "that" online retailer, they probably know by Haeleth · · Score: 3, Funny

      And yet these guys have probably been writing successful software systems for years, what's going on?

      Here's a clue.

    7. Re:at "that" online retailer, they probably know by dangermouse · · Score: 4, Insightful
      Wrong. Want to know why you're wrong?

      Because I don't have the time in my day to cross every 't' and dot every 'i' for you. You are a valuable developer if I can throw the problem and maybe the broad strokes of the solution to you, and trust you to fill in the details in both in a way that makes sense, and trust you to communicate with me when (and only when) you really need information or decisions that only I can give you.

      If I have to write a massive spec for everything I want you to do, I might as well replace you with some cheap team in India. They're great at giving you exactly what you ask for.

      When I get people who are contemptuous in an interview, for any reason, the interview is over. I'm looking to see whether I can work with you, not whether you're the perfect little programmer monkey. The world is awash with programmer monkeys, and with assholes.

    8. Re:at "that" online retailer, they probably know by Anonymous+Brave+Guy · · Score: 3, Informative

      You left out "more expensive." Yeah, sure, it's age discrimination, and it's illegal.

      No, it's not age discrimination. It would be age discrimination if you hired the younger guy just because he was younger, when both guys cost the same amount.

      (I don't know what jurisdiction this is in or any specific legal definition of age discrimination, but if the above isn't true, your law isn't written in English.)

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    9. Re:at "that" online retailer, they probably know by dangermouse · · Score: 4, Insightful
      You've misread my post.

      I can write a good spec. But if I take the time to do so, there's no particular reason I should hand that spec to you for implementation rather than to a cheap offshore team. Coding to spec is their specialty, and they're not bad at it.

      I don't want or need programmer monkeys. Junior developers we can train into senior developers, sure. There are a lot of very good reasons to go that route, and it's healthy and economical to have some junior devs on staff. But spending the big money on whizbang coders who need everything spelled out for them is a double waste.

      My interview is designed to find people who can and will think about a problem and its solution, and who have the knowledge and experience to get the details right. Those are the best developers, and they're relatively rare. You can bet that when I find and hire them they're highly valued and treated as such.

      Finally, an interview is a meeting of equals, and I approach it as such. The goal is to figure out together whether you and I want to enter into the employer-employee relationship, not for me alone to decide whether you're "good enough" for my team. If my expectations and your expectations differ, that's fine, we can shake hands and go our separate ways and the best of luck to you. Like you said, there are plenty of other employers. If you at any point display contempt for my expectations, though, you're just some prima donna asshat with a superiority complex-- don't let the door hit you on the ass, jack.

    10. Re:at "that" online retailer, they probably know by Skreems · · Score: 2, Insightful
      When I get idiot interviewers like you, then they get the full blast of contempt. Never waste my time being trival vague and misleading. There are plenty better places to work than yours. Pushing out the crusty experienced people who won't tolerate that nonsense is not a very effective strategy.
      Uh huh... see, the thing is, it's not trivial if it's what I want to know in order to determine whether to hire you. If you can't put up with a basic problem that should take you five minutes to solve, what does that say about your patience with other things? You sound like a prima donna who won't work on anything you don't personally find fascinating. Good luck keeping a job with that attitude, by the way.
      --
      Slashdot needs a "-1, Wrong" moderation option.
      The Urban Hippie
    11. Re:at "that" online retailer, they probably know by ratboy666 · · Score: 2, Interesting

      Rearrange in one pass:

      What they were trying to determine was your ability to "think outside the box". The box is the definition of string.

      Does that give you a clue?

      Try something like this:

      for character in string do
      . . . if uppercase(character) add character to uppercasestring
      . . . else if space(character) increment spacecount
      . . . else add character to otherstring
      print uppcasestring otherstring space x spacecount

      Single pass. Sort of redefines "string".

      That would be my first solution. And I can think of more...
      I would ask a question like that of a potential programmer (at a senior level) that is going to be doing design. Just to see how the brain juices work.

      YMMV
      Ratboy

      --
      Just another "Cubible(sic) Joe" 2 17 3061
  2. Walk away. by Spazmania · · Score: 5, Insightful

    Job seekers, what do you do when you find yourself trapped in a sophomore study group?

    Walk away. An interview is a two-way street: they're evaluating your ability to do the job but you're also evaluating their ability to provide a worthwhile work environment. If they fail your test, walk away.

    --
    Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
    1. Re:Walk away. by bahwi · · Score: 3, Insightful

      Agreed, I do freelancing contracting, back when I was looking for more contract jobs, I went to a guy at a company after sending him my portfolio and website and everything, he asked for a resume, I simply told him he didn't know what's he looking for and walked out. Really freaked him out, turns out it would be a job job not a freelance job, definately not what I was looking for.

    2. Re:Walk away. by AJWM · · Score: 2, Interesting

      Never.. Ever.. ask somebody to write answers on a white board. It is not natural. If I prefer to place open/close brackets right when start a function then white boards do not fit that pattern. Little things like this make it more 'English' and less 'code'

      You just failed any interview that I'd give. Not that I necessarily ask folks to write code on a white board, but if they can't handle that it shows that they're inflexible and would probably be totally lost in a design discussion or a code walkthrough. I don't care about matched brackets on a whiteboard -- compilers are real good at catching stuff like that -- but if you can't explain what you're doing in English (or whatever natural language you speak) then you don't understand it.

      --
      -- Alastair
    3. Re:Walk away. by Sharpner · · Score: 2, Insightful

      Good thing you figured out the situation was not for you. But if such a simple, standard request (resumes are standard and highly useful even for contractors, and even for those with lots of samples) was able to negate your interest, he was well rid of you as well.

  3. what to do as the job seeker? by Surt · · Score: 3, Insightful

    Probably you want to realize the company doesn't care enough about its hiring practices to have a bright future, and move on.

    If you're an employer, you want to make sure that your interviewers have a strong enough grasp of the interview questions not to be wrong about possible valid answers. Allowing inexperienced developers to interview candidates is a recipe for disaster. You don't build a quality company by delegating this task to the inexperienced. You accept that this is work that is best done by your most experienced people, and that it is one of the most valuable uses of their time that you can make.

    --
    "Who is the Journal of Quantum Physics going to believe?" --Stephen Hawking
  4. 20 years? So what? by zer0man · · Score: 5, Insightful

    20 years experience doesn't mean much. I have heard/seen candidates bullying interviewers with their credintials (I've got a PhD in Computer Science) or experience (I've been coding since you were in diapers) and yet still fail to reverse a linked list in-place, or fail to explain the basic idea of hashing.

    It bothers me, as an engineer with some experience, to be subjected to the humiliation of 'the interview loop', yet having been involved in hiring I absoluately see why it is needed -- people, well, inflate their credentials when it comes to looking for work. So companies essentially ignore past work experience and ask questions relating to specific engineering problems to try to see what kind of developer you are. Sometimes the interviewer is bad, but that's why it's a "loop" there are at least 4 of them, and one of them should be a more 'senior' interviewer who holds more sway (that is if i'm guessing correctly at your 'leading online retailer').

    True, the system isn't perfect. You could be a brilliant engineer, but can't reverse a string. But with the amount of money that is invested into an engineer by the company as high as it is, they company doesn't want to be wrong.

    1. Re:20 years? So what? by tgd · · Score: 5, Insightful

      The problem with the position you described in your reply is that its not really applicable to software development.

      An engineer with 20 years experience knows a few things:

      1) He hasn't had to reverse a linked list in 23 years.
      2) There are framework functions to reverse a linked list. Who cares how they work.

      Questions like that are VERY age-biased. Because only someone right out of school, or someone with their head so buried in the code would remember that on the spot. Experienced engineers will tell you how to manage the development process, how to write code that is engineered to be testable, can actually explain software architecture and will do a FAR better job solving real world problems.

      Why? Even if you DO need to reverse a linked list in a situation where you can't use framework functions to do it, an experienced engineer can pretty easily punch in a few google keywords.

      No amount of googling will give a kid out of school an understanding of how you really engineer software in the real world.

      The only time I would consider asking questions like that to an experienced engineer (and I ripped off a similar one I got asked at Microsoft way back when during an interview today) is if I've already decided someone isn't a fit for some totally unrelated reason and I need a quick way to quantify that.

    2. Re:20 years? So what? by kingkade · · Score: 4, Informative

      1) He hasn't had to reverse a linked list in 23 years.

      Irrelevant, it's a basic problem.
      2) There are framework functions to reverse a linked list. Who cares how they work.

      See (1), it demonstrates problem-solving skills and it's not an unreasonable problem to solve. It may be insulting if you think they think you're that much of a dolt that it'd be challenging. But otherwise it's not hard at all if they give you enough time.

      And let's say it is in that framework: you need to understand linked lists anyways if your problem uses lists that needs to be searched, you would know that using the list would be unwise.

      And say you do "Google it". How do you verify that the code is correct? "oops this is code to reverse a circular linked list...ummmm."

      I agree that you should probably not insult the guy's intelligence with such a question, or asking hm the question and giving a gameshow time limit.

      And inane questions too. I had some guy ask me "what data structure would you use in designing a database application?" You just have to be gracious, don't act snobby, and "suck it up" like someone said. Joke about it later with his co-workers ;)

    3. Re:20 years? So what? by AuMatar · · Score: 4, Insightful
      1) He hasn't had to reverse a linked list in 23 years.


      He doesn't need to know it immediately, but he damn sure ought to be able to figure it out quickly.

      2) There are framework functions to reverse a linked list. Who cares how they work.


      If you don't know how it works, you don't know how a list is used. You don't know when its appropriate to use it versus other data structures. If needed, you wouldn't be able to create a hybrid data structure. So yes, it matters if you can't figure it out with a minute or 2 of thought.

      If you can't get simple problems like that, its not worth my time to do the rest of the evaluation.
      --
      I still have more fans than freaks. WTF is wrong with you people?
    4. Re:20 years? So what? by Aceticon · · Score: 4, Insightful
      I suspect it all depends on what kind of position is someone being interviewed for:

      - A programmer should remain familiar with the basic principles of creating code that runs efficiently. A more senior programmer is expected to be efficient at creating such code and to make easier to maintain code.

      - A software designer is expected to be aware of the importance of compartimentalization of information and division of responsabilities across the design, and of the tradeoffs between flexibility, maintenability and performance when making a design. A more senior designer should be well versed in communicating the design and the rationale behind it to the developers, and of keeping a record of the accepted and rejected designed decisions and the reasons behind it (such a record can be used latter when changes in requirements might mean that the rationale for choosing a certain design feature instead of another one is now not valid anymore).

      - A technical architect is expected to understand the issues of scalability, inter-application connectivity, fallback solutions. He should be capable of defining standards which promote efficiente development, maintenability, robustness and/or lower number of errors, all supported by a well document, internaly consistent rationale. He should be an expert at communicating these solutions to the developers and designers. He should be aware of the development process and ensure that the right tools are chosen/provided for the right job.

      [Note: there's a lot more than just this]

      Now, if you're interviewing for a technical architect position, which is more important:
      • Somebody that knows how to reverse a circular linked list out of the top of their heads and can do it in 5 minutes on a whiteboard
      • Somebody that can hammer down an Interface Requirements Specification for connecting two sub-systems being developed by different contractors


      In my experience there's a limited amount of seniority (in knowledge and wisdom) that you can achieve as a programmer before you find out you've turned into a software designer (in all but name) - if you're still selling yourself as a programmer by then (say, because you like programming and can't stand the boring parts of software design like making long documents and doing presentations), expect to have to go through "just out of school" questions in an interview when applying for a programmer position, even if you're insanelly experienced for a programmer.
    5. Re:20 years? So what? by drsquare · · Score: 2, Funny

      Experience is overrated, old people are generally stuck in their ways, you only have to read the posts on here from experienced programmers telling everyone how awkard and difficult they are.

      It makes sense that a company would target younger workers who are more cooperative and pliable, they have more potential than the old beard in a crusty sweater who wants to sit in his cube and grumble about how he's not allowed to write everything in machine code with ed.

    6. Re:20 years? So what? by Godeke · · Score: 3, Insightful

      What I find amusing here is the request to "reverse a linked list in place". Talk about your WTF worthy request. Is it singly or doubly linked? If it is doubly linked, why the heck would you want to reverse it: just make an iterator that walks from tail to head instead of head to tail. Done and done, minus all that nasty moving data around. If you really want it to be permanent reversed, swap head and tail.

      If it is singly linked, why the heck would you want to do it in place when constructing a new reverse link list (effectively making the list doubly linked) will allow you to avoid moving a single piece of data and yet again walk the data in reverse efficiently. Just add the head link as "tail" and then iterate forward, prepending elements into the new list. Now walk your new reverse link chain.

      If you really really want to reverse in place, then I ask how the heck you managed to load your data in backwards in the first place. Only after you could explain that would I bother with the fact that the previously mentioned reverse link list can just be used to swap pointers by chaining both directions at once. Of course, such an operation requires a locking mechanism for the list as a whole and I'm going to guess that any software that requires swapping a singly linked list in place probably doesn't bother doing that. Bleh, how did your poor program end up in such a muddle.

      You see, such a question in modern development is best answered MU: un-ask the question and examine the root causes. Sadly, some people around here would find the idea of actually unmasking the root problem to be offensive and get angry that their toy problem wasn't considered a serious request. Toy problems don't show you understand anything except how to code toys. Large systems are not toys, and employing people who are good with toys, but not with large systems is a bad idea. The good news: people who ask toy problem questions instead of being concerned that you can understand the real issues are not people you want to work for.

      --
      Sig under construction since 1998.
  5. Heh by tgd · · Score: 2, Insightful

    Anyone who has interviewed at that "online retailer" knows exactly what you're talking about. In fact, it leaves no doubt among those who have who you're talking about.

    Its a silly process... they pride themselves on Google-esque hiring practices, but miss the boat. It was the one and only place with a process more rediculous than the Evil Empire(tm).

    My suggestion? Laugh at the guys giving it who imagine themselves big fish in a big pond, leave confident you've got more experience then them, and go work at a company with a better corporate culture. They're a struggling company stuck in the dot-com mentality. Unless you like that (and I'd have to guess with 20 years experience, you've outgrown sardine can working conditions and ego trips), you'll be far happier not working through interviews like that... use them as a sign of how the company works, and look elsewhere.

    There are FAR better places to work.

  6. Say it with a sneer by nizo · · Score: 4, Funny
    ...what do you do when you find yourself trapped in a sophomore study group?


    Make sure to make fun of any bogus information in a way that makes it clear any braindead moron should know better. Follow up with a story about a previous co-worker who got fired for thinking that exact same thing. Lastly make it clear that you are glad you have an interview at a competitor later and look forward to helping to crush their inept company. Adding that you will enjoy buying some of their used furniture at the firesale is a nice touch.

  7. TA problems by rednip · · Score: 2, Interesting
    Over the course of six hours I was repeatedly introduced to a guy in his early twenties, who would then ask me to write out code on a white-board for a problem that you might find in the study guide for a 200-level computer science class.
    I'm quessing that the reason why they are comfortable with those examples is , they were teaching it to undergrads just a few years before. It's likely that the company hired these fools right out of college (or their first job) to be architects, which is likely the job you are looking for. They have little to no project experience, and the only coding they have done is examples rather than real world solutions. We've had a group like this in our company for a couple of years now, besides costing millions every year, all they seem to do is cause headaches for those of us who do the programing.
    --
    The force that blew the Big Bang continues to accelerate.
  8. Summer Experience by D.A.+Zollinger · · Score: 2, Interesting

    I am returning to graduate school this week, and while I attended summer school, some of my classmates did not. Most of us have had professional experience before returning for a master's degree. One colleague of mine took an internship over the summer, and worked on developing a new internal software package. Previously she had been a project manager at a couple of different companies, and had developed a successful strategy for project management. At her internship, she was a project member, and for the first time got to see things from a different perspective. The project was not well defined, and no specific goals were set until much later in the project causing a lot of people to re-work things they had previously created. As well, the project manager had poor communication skills, and did not communicate the status of the project well with members of the project. As a result, she found herself working 19 hour days, and well over a month late on this project.

    As a former project manager, she had the experience, and asked questions about the nature of the project to help flush out details, as well as provide a much more narrow scope for the project. However, because she was the "intern" many of her questions were dismissed, and she was labeled as being "too detailed."

    She has committed to staying with the company until the project is completed, even though it may interfere with classes for the next couple of weeks, but she feels it is her duty to see the project come to a conclusion. As such, she has the skills, resources, and know-how to make the project a reality, but it is my suspicion that the employers were afraid to give her too much responsibility in the company or with the project because of her temporary status. As well, it is obvious that the company does not have a good project manager, and the company expects mediocrity because it knows nothing different. Those who desire to excel may find themselves working against the corporate current, and may ultimately be defeated by it. I certainly wouldn't want to work in such an organization.

    --
    I haven't lost my mind!
    It is backed up on disk...somewhere...
  9. My experience by cperciva · · Score: 3, Interesting
    A couple of weeks ago I did 'the interview loop' at that leading search engine. I had already told my recruiter that there wasn't any point asking me about 200-level material, and aside from one silly question about topological sorting my phone interviewer respected that. When I arrived for my on-site interviews, several interviewers apologized about being required to ask really easy questions. They asked their questions; I provided my answers; they asked why my solution wasn't the same as their solution; I explained that my solution was asymptotically faster; and we moved on to more interesting discussions.


    Having not interviewed at that leading online retailer, I don't know if the situation is the same there; but my impression at that leading search engine was that my interviewers were very quick to recognize that I was more qualified than they were and to adapt their interviewing appropriately.

    1. Re:My experience by uradu · · Score: 3, Funny

      > I explained that my solution was asymptotically faster

      Wow, you probably had them at "asymptotically", at which point they probably all rushed out of the room to consult dictionary.com.

    2. Re:My experience by Achromatic1978 · · Score: 4, Funny

      Now now, that's not right. After all, working at "that leading search engine", they'd have all rushed out the room to consult "define: asymptotically".

  10. As an employer ... by rebill · · Score: 3, Insightful

    I would already be looking to weed you out. Your disdain for the younger employees with junior technical skills is pretty obvious. As a manager, I would immediately wonder how you would treat those junior employees, and I would worry that you would regular belittle their knowledge, deride them for their mistakes and restort to intimidation to squelch a junior employee's idea that you happen to dislike.

    Of course, I worked with someone who acted in the manner I describe. He actually managed to cost the company we both worked for many hours of my time, as he chose to display his extensive knowledge at every opportunity, and I found myself translating what he was saying into something that the junior employees could understand. Oh, and thanks - I had never heard of the Byzantine Generals problem. But your reference to it is something that I would take as a warning sign.

    So, like previous posters, my suggestion is: just walk away. You are not built to work for a company like that.

    --

    Chivalry is not dead, it's just frequently misspelt. - M. Langley

    1. Re:As an employer ... by IBitOBear · · Score: 5, Insightful

      Actually, I showed no disdain at all. I carefully and cheerfully complied. I even kept the mood up and remained positive through the entire process. It was the odd post-interview feedback that got my goat a little bit. 8-)

      I actually like working with younger people as a general rule as it keeps the mind sharp and provides a continuous influx of fresh eyes to stave off the dogmatic ossification I often encounter in my peers.

      There is nothing wrong with going back to first principles. I just found the failure to transcend first principles (and the fact that a couple of the guys got all grumpy when they didn't understand my solutions to their problems as stated and as revised) to be something of a warning flag.

      The "ask a question of sublime simplicity" approach can only prove effective if the questioner can understand an answer of sublime subtlety.

      --
      Innocent people shouldn't be forced to pay for inferior software development.
      --"Code Complete" Microsoft Press
  11. Um... duh? by IBitOBear · · Score: 2, Interesting

    I call "editorial license". Whenever you try to cram a lot of observation into the (typically one paragraph) slashdot style article you have to do some word smithing. That makes things terse, and that comes off as pompous to some people.

    So what...

    Go ahead and try to rephrase me. I'll give you twoce the word length. Hit all the points and ask both sides of the question. And get it into a shape that would be accepted as an article...

    Then go take some classes in journalisim and/or rethoric.

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
  12. Since you might care... A clarification. by IBitOBear · · Score: 5, Informative

    I didn't get the job. And after I thought about the interview I didn't really want the job. So it was a push. I took a job offer that I had gotten from another company the day before the interview loop.

    Also, I have done hiring. I appreciate the need to ask some simple coding questions because it isn't that uncommon to get people in who _can't_ write a bsearch and who cannot demonstrate a mastery of the simple language syntax. But you only really need to walk that mountaiside once in the interview process.

    Then again, when you write some code on a white-board and the interviewer cannot understand it (q.v. "I don't understand... why are you checking the value of the pointer and then the contents of the pointer") and then that interviewer helps build the group decision that "we should get someone more technical", you are entering the realm of high comedy.

    I actually laughed when the recruiter told me about their rationale.

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
  13. Re:Umm.. maybe you need to look by IBitOBear · · Score: 4, Interesting

    You read to much into my question. I wasn't "outraged" I was bored to tears and disapointed. I didn't say "I have 20 years of experience" to them. I said that to you, the reader of the article, to give you some basis for my position. In a slashdot lead article you only get so much space and editorial attention to make the interesting points and spur on the discussion.

    I did answer the questions posed. No hissy fit, no condecension. I liked the people and we got along OK.

    The mire comes, however. One of the responses, for instance, was "I've never seen it done that way before" followed by a thats-impossible shake of the head and an "why are you comparing the pointers and then the contents of the pointers like that" when I explained how this second tier (e.g. more complex) question was still soluable in O(log(n)) time using the method presented.

    Several interviewers said in the interviews that they didn't understand the code as written etc, then the group consensus was that they needed someone "more technical".

    ASIDE: I will fully credit that a good percentage of the lack of understanding may well have been introduced by my crappy white-board penmenship. 8-)

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
  14. Honesty is the best policy by Travoltus · · Score: 3, Informative

    I'll present a candidate with a real problem in the danger room (our term for the isolated test center where we diagnose stuff and load test network setups without screwing with the blades&racks that are live) and screw something up, then have them try to fix it. I'm more interested in their methodology than their solution. Our test network works, but it's a mess; if they can innovate before my eyes and tell me how to clean things up while being tactful then they're hired. My predecessor did this and so do I.

    I expect to be corrected if I (intentionally, for the most part) say something wrong, but I expect tact and respect, and I'll tell them those guidelines up front. BS artists have that look when they don't know something, and they get very vague. I don't need to play games with them. Someone who knows their stuff will appreciate the honesty and show their true competent colors.

    I send BS artists out the door with a pretty precise explanation of where they went wrong. Hell, I even suggest where they need to get training so they don't have to BS their way through the next interview. This way they won't bother another employer with their BS attempts, or at least they'll know why they got rejected.

    If you know it, you know it, if not, then you don't, that's my motto. No need to trip people up, the losers will always get culled from the herd as soon as they open their mouths.

    Playing games with applicants sucks, IMHO.

    --
    --- Grow a pair, liberals... stop letting the Republicans bully you!
    1. Re:Honesty is the best policy by poot_rootbeer · · Score: 2, Insightful

      Fuck tact. If you need tact to deal with a broken design, that's an early warning sign in and of itself.

      No, fuck you. Being tactful when talking to colleagues--and especially POTENTIAL colleagues--is just basic business courtesy. You are not exempt from it just because you have to deal with a "broken" design, or for any other reason.

  15. My experience giving the interviews... by Tronster · · Score: 2, Insightful

    By now I've performed about 80-100 tech interviews for a variety of IT companies. I will ask the brain dead questions, but ramp up accordingly. I essentially want to ask just enough to know whether or not I can say with confidence "HIRE" or "NO HIRE". ( Recommend reading: Joel On Software )

    If relevant, I will ask for some white-boarding of UML, or a code fragment to perform a simple task.

    I do all of this because, I have found that age means nothing. I've worked with some seasoned geeks who taught my colleagues and I alot on the latest technologies. I've also worked with a guy I hired who had well over 20 years experiences and was absolutely useless. I can personally say the same to guys just a few years in the field.

    It's a crap shoot...and I don't like to gamble.

    Another way I look at it... I've also been on the receiving end of an interview at least a dozen times. When this happens I try to show my patience when going through the brain-dead questions, because I know acting rushed or anxious is a sure way to send bad mojo to the interviewer, even if I've nailed all the tech questions.

    I know I'm interviewing for a good contract when the interview switches to more challenging questions based on my answers. If the interviewer just runs through the list or makes self-contradictory statements, there is a good chance it's either a manager who doesn't know the subject matter or possibly a technie called in to give the interview and isn't good at it. At which point, it can be a fun challenge to turn up the charm with the interview, because I know the questions coming are no sweat. The degree of confidence shows leadership skills and does stick in their mind when making decisions. (Especially if the interviewer WAS a non-technie.)

    P.S.: Also regarding semantically incorrect or self-contradictory statements... I sometimes deliberately throw out a misstatement to see how the interviewee responds (if at all).

    --
    Help me find 3 kidnapped children!
    Cheers.

  16. I'm _glad_ they didn't hire me. by IBitOBear · · Score: 2, Interesting

    I threw no "fit". Then or now. I did answer the questions intellegently. I harbor no anger though I feel disapointed that the entire interview never got to "design".

    Whoever your "we" are I pitty them your presence. You think this is "a fit", I thought it was an interesting discussion starter.

    Programming without design is the quintessential case of going off half cocked.

    I would be doubly disapointed if this were a deliberate selection "technique" on their part. Running rats through a maze isn't clever if all you are looking for is fast rats.

    Besides, I don't "try to be cerebral", I am, for better or worse, that (over?) precise and careful. Yep, if you find that annoying, then I am _naturally_ that annoying. No effort, no wierd "attempt to seem". (Gee, a computer geek that isn't a social darling... Who could have possibly imagined _that_? 8-)

    Besides, while "[I] am the one wanting the job" in your mind, shouldn't "[YOU] want the quality employee"?

    If that was a deliberate test, then the hiering practice has established a damn low ceiling (IMHO of course) and the company must be constantly struggling against its tendencies towards brute-force solutions. It's not that such an approach _can't_ succede, its that such an approach will tend to hemmorage money, time, and tallent. There are so many metaphores that the mind boggles.

    So why am I glad? Glad they didn't hire me _and_ glad I asked the question in this forum? The various respondents have informed us all that I am not the only person to have encountered this broken process. And if it's broken up front, its probably broken out back.

    The scenery was nice though... 8-)

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
  17. Do you really want to reverse the linked list? by Animats · · Score: 3, Insightful

    The last time I saw production code that reversed a linked list, it was because someone wanted the last element of the list. So they reversed the list and extracted the head. After reading the code for a while, I realized that I was looking at C code written by a LISP programmer. I finally rewrote the thing to use C++ collection classes. A list wasn't even the right structure; a C++ vector was, because the collection was built once and then used millions of times.

    Be suspicious of code that does elaborate munging on pointers. Stuff like that should be encapsulated in general-purpose routines. If you see it in application-specific code, somebody is probably doing something wrong. And it's very likely that such code will be broken during maintenance.

    Programmers should know how to reverse a list, but shouldn't actually do it.

  18. Re:From the flip side of the coin... by symbolset · · Score: 2, Insightful
    Any good tips for how to *not* come off like a young idiot?

    Wait 20 years.

    --
    Help stamp out iliturcy.
  19. Your expierience didn't pay off by clambake · · Score: 4, Insightful

    Part of having 20 years experience is being able to control more than just code... It means you should have learned how to wrangle people as well!

    I went to those exact same interviews that you did, the same kinds of introductory questions, the ones looking to weed out the html "programmers" who suddenly decide they can do real programming since it looks so easy.

    So, what happened to me? Basically, I was able to turn the interview on it's head, and before too long *I* was the one having /them/ draw the witeboard diagrams. It wasn't hard, it's just a way of dealing with people, something I have learned over the years:

    Interviewer: "How would you make a singleton in java?"
    Me: "Well, how does this look:"

    public class Foo {

        private static final Foo _foo = null;

        private Foo() {}

        public static Foo getInstance() {
            if (_foo == null) {
                    _foo = new Foo();
            }
            return _foo;
        }
    }

    Interviewer: "Ok, good job next question..."
    Me: "Hold on a sec... Look closer at what I wrote, what did I just do wrong?"
    Interviewer: "Huh? You mean that's wrong somehow?" ...so then I follow with explaination of what would happen if two threads reached the inside of the if statement at the same time ...
    Interviewer: "Ooooh, threading, of course. I have heard of that!"
    Me: "Yeah, so, now how could we fix it? Here's the pen, show me what could be done..." ... next start a discussion about synchronization, maybe get into Java's serious double-check-lock bug/feature (and show them with pseudo-code how the HotSpot compiler can illogically re-order execution without you ever realizing it) and then discuss how one could fix it with the new ReentrantLock class, or some of the other .concurrent.lock.* packages.

    Maybe ask if they can think of a way to implement any kind of locking without using synchronization, have them use the whiteboard and show you what they are thinking in an more abstract form, and then show them how Sun did it with the thread scheduler magic...

    And before you know it, you've stretched a thirty minute interview into a threee hour programming discussion and you get offers to join before you leave the room.

    THAT is what "experience" should have taught you, everything else you can read in a book.

    1. Re:Your expierience didn't pay off by greg1104 · · Score: 4, Funny

      This reminds me of my worst interview ever. It was for a C programming job, ten years ago. The main programmer at the company asks "how you can write a function that [some operation on an arbitrary string requiring memory] without allocating memory at run-time inside the function?". I said "you can't without relaxing some part of the requirements". He disagrees; I ask for his solution. He shows a function using a static buffer, so the memory is allocated at compile time. I point out that a) this puts a limit on the size of strings it can handle, which he accepts and b) you'll be screwed the minute you introduce that code into a multi-threaded environment like the one they deploy their code into, because your static variable will inevitably get clobbered one day by two calls to this utility function. After some argument, he comes to recognize my point, and I ultimately got offered the job.

      Three months later I was fired for arguing with him all the time about how code should be built.

  20. Are you measuring what you think you're measuring? by Vellmont · · Score: 2, Insightful

    It'e interesting, but all your questions assume a certain mentality that's probbably similar to you're own mentality. Are you sure you're selecting for quality programmers, and not just people that think like yourself?

    That can be a good thing, and a bad thing. If everyone thinks you like you, you'll probbably all get along quite well and be able to communicate easily. But you're also likely to all make the same mistakes over and over.

    --
    AccountKiller
  21. Never use your provider's domain name by rfc1394 · · Score: 2, Informative
    On paper, they have a few great plans (for the Aussie market), but don't let your opinion(s) of their problems get back to their staaff, or you may have to find a new ISP in a hurry (with all the hassle of informing your correspondents of your new eMail address & shifting your web sites, etc.)

    Never, ever use your provider's address for your website and (especially) NEVER use your provider's domain name for your e-mail if it's of any importance. Look at my e-mail address for a moment, and you get the idea. When you have your own domain name, if your provider terminates you, or you leave, or you want to leave (better service, more features and/or lower price), you simply change the termination point for your service to someone else. In fact, it's not a bad idea to have your DNS service with someone other than your hosting in case you have problems or your hosting becomes overloaded (like being Slashdotted, for example) and you get locked for excessive bandwidth, you can change to someone else fairly quickly if you need to, but you might not be able to do that in a hurry if your DNS provider and your hosting provider are the same. (Especially if you can't get into your provider's control panel because they're overloaded.)

    With domain names around $9 a year, there's no excuse using your provider's domain name unless you're so broke you can't afford it. Which I have been, on occasion.

    Now, for that, you can often get a geographic-based domain for free (at least, in the .US you can). I established the domain "paul.washington.dc.us" which cost nothing, and ran it under a provider that allowed free hosting if you carried a banner ad, so for more than five years I had my own domain name and e-mail under that domain for free. I still have it, too, going on eight years now.

    --
    The lessons of history teach us - if they teach us anything - that nobody learns the lessons that history teaches us.
  22. And are you giving the wrong impression? by Anonymous+Brave+Guy · · Score: 3, Informative

    The parent makes an excellent point, in that what Skreems and co. really seem to be testing for is people who match their approach. The implicit assumption that their approach is (a) the only one that works, or (b) better than everyone else's, is not going to help improve their business.

    There is also the problem that interview processes are two-way things. You don't know me, so let's assume for the sake of argument that I am a good programmer who knows his stuff. The moment I walk up to the building of a prospective employer I am sizing the company up. The moment someone greets me (or leaves me hanging around in reception for ten minutes) I am gauging how much value the people at the company really place on colleagues. And when we get to the technical questions, I am definitely judging the technical competence of those who would hire me, and the quality of the code produced by the existing staff if I see any.

    So, dear interviewers of the world, let me put this simply. I am interviewing you, too, and I expect you to know your stuff. I would not be here if I wasn't interested in your business, but I am confident of my own abilities, including my ability to find another job quickly if yours isn't up to scratch. And it will cost me a lot less than it will cost you if today is a waste of time.

    What does this mean in practice? Well, everyone's different. Personally, I think vague questions are fine and expected. I'll seek clarification without a second thought, because that's how the game works. But if the interviewer is a smart-ass, or repeatedly makes elementary mistakes, I won't take it upon myself to educate them. I will simply judge them incompetent, and not take a job working with them.

    Now, perhaps a lot of companies wouldn't want to hire someone like me. (They probably wouldn't like my non-negotiable rules on IP and my expectation that I will work the hours in my contract and not give them 50% more for free, either.) That's their decision, and I accept that my principles here will rule out some companies that I might have been happy working for. But just as an employer usually gets enough applications not to worry about missing the odd good one because there will be others, so it goes with good people and finding jobs.

    As they say, first impressions count. This is particularly true of interviews, because you'll never really know whether someone is a good candidate or an employer is a good place to work until a few days into the job, so the recruitment process is really just an attempt to make the guesses more educated. In this context, I'd advise any employer who wants to recruit people who are good rather than merely young and enthusiastic (now) to stick to sensible interview techniques, and avoid the time-wasting and trick questions. You aren't really hurting anyone but yourselves with that kind of stuff.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  23. Maybe they don't want the most experience. by hal2814 · · Score: 2, Interesting

    What job were you applying for? Has it occured to you that you may be overqualified for the position if you're probably interviewing along with kids fresh from school? I've done many an interview and had to turn down plenty of overqualified candidates. Given their interests and abilities, they would've grown bored with the work we required of them very quickly even though they may be better at doing it in the short term. If they're gearing the interviews towards new grads, maybe that's for a reason.

  24. Tips for young interviewers by Anonymous+Brave+Guy · · Score: 2, Insightful

    FWIW, the following advice seems to come up a lot in these discussions. I haven't interviewed much myself, so this is mostly my way of summarising second-hand information; take it with a pinch of salt.

    1. Be friendly and confident, but don't try to be artificially authoritative. You won't carry it off, and since they're interviewing for a job with you there is enough implied authority on your side anyway.
    2. Make written notes on key points, but don't become too focussed on it. Pay attention to the candidate at all times.
    3. Ask enough sensible, relevant questions to get a fair idea of the candidate's abilities. Once you've got that, don't draw the interview out unnecessarily. The odd friendly comment or joke by either side is fine if it's natural, but beware straying too far off-topic.
    4. Open-ended questions are often better than those with a specific "right answer". You can tell a lot about a person from how they approach an open-ended question. Remember that listening is a more valuable skill than speaking.
    5. Talk positively. If you're gauging whether they'd fit with your company's working practices, ask if they'd be comfortable with X rather than whether they'd "have a problem" with Y. If you're talking about something that the candidate once did wrong, focus on how they recovered rather than the mistake.
    6. Don't ask trick questions. They don't tell you anything useful about the candidate, and make you look like an ass.
    7. Remember that interviews are two-way things. Give your candidate a fair chance to ask questions in return, preferably throughout the interview not just as an afterthought before the final handshake. Treat these the same way you'd treat questions if you were being interviewed yourself: pitch your company in a good light, but be honest and accurate.
    8. Check with someone in your legal team/HR/whatever you have access to about any questions you're not allowed to ask because of discrimination laws. Age-related questions might well be relevant in your case. For example, the answer to "Would you be comfortable working for someone younger than you?" can be informative, but you may not be allowed to ask that question.
    9. Using a single interviewer is not an ideal recruiting practice, because any one person might have preconceptions or pick up the wrong vibe even if well-intentioned. If your circumstances mean you're in this position, be careful not to let any personal preferences or prejudices colour your objective judgement.
    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  25. Strange by Slashdot+Parent · · Score: 2, Insightful
    I do freelance work as well, and every client that I've ever had wanted to see my resume.

    A request for a resume resume, doesn't necessarily mean that the position is W-2. Just so you know for the next time you feel the need to alienate a potential client.

    Even if the position was W-2, who do you think that manager will call with an open contract need? I'll give you a hint: it ain't you.

    --
    They don't grade fathers, but if your daughter's a stripper, you fucked up. --Chris Rock
  26. Just go ahead and correct them. by Malkin · · Score: 2, Interesting

    I have corrected interviewers in the past, and still received a job offer. Take it to a higher authority, if necessary, to convince them of their error. I once put the K&R smackdown on one guy who was trying to ask a trick question, and didn't have his facts straight. As long as you make an effort not to bruise their egos too much about it, they will usually come away with a positive impression. If they don't, then you don't want to work with them, anyway.

  27. Just my 2 cents by MadCat · · Score: 2, Interesting

    I've been on both sides of the hiring fence a few times, and most "vague" questions from interviewers are usually meant to see what your reaction will be to it, whether you blithely accept it and start mucking about or whether you will ask more questions to figure out what exactly the issue is.

    Ofcourse there are also interviewers that shouldn't be allowed near a computer.

    When doing the hiring (haven't in a while to be honest) I like to ask a few "easy" questions first, mostly centered on "how would you do X" just to see whether someone has the basic knowledge needed. If they can't answer them, it's not an immediate "no hire" but it does tend to weed out the bullshit artists. I also like to drill down. One of the last interviews I did was for a perl programmer position, so I put together some questions, some code, tossed that on a laptop, gave the interviewee the laptop and asked him to go ahead and solve my questions (implementation of a logfile parser that'd auto-update an iptables firewall for people dictionary-bombing ssh), and to fix my broken code, or suggest ways in which it could be done better.

    That usually gets you a clear picture of whether someone is actually capable of performing, and doing some thinking on the spot. They are allowed to Google to their hearts content, and they can grab the big bad Perl book as well. I'm satisfied if people can't necessarily tell me things from memory, but they know where (and how) to find the information they need.

    After that I try to see how they'd fit into the team as far as personality goes. How that's done depends on the applicant, and the team itself. Usually I'll take them on a little tour past the team first, show some things they're working on, then ask the applicant what he thinks and see whether he's either going to be the diplomatic type, or be honest and maybe suggest other ways to do things. I'll leave them with the team for a while and see how the discussion ends up going. This also gives the team an idea of what the applicant does or doesn't know.

    Afterwards I'll usually ask the team what they thought, and take that into account as well.

    I figure it's a fair way to do an interview, because people do get the chance to "show off" what they know, and I get to see whether they could work with the team.

    Being the applicant myself, the absolute worst experience is when you're asked a question, you don't know the answer, but your answer of "I don't know how to do this, but I know where to find the information that will teach me how to do it" is classified as being totally wrong. I've forgotten a lot of things in the past 10 years, and often don't memorize the obscure details of certain function calls, but I know where to find all the information that I'd need to make it work.

    Just my 2 cents.

    --
    There is no sig...