vote up 22 vote down star
6

Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter than me or certainly more educated.

Since then I found out he applied to Microsoft and when they had him do a doubly linked list implementation, he wrote it without indentation or comments, stating that he did not have time to worry about style. ( It was an email submission for which there were 2 hours to complete )

Microsoft did not call him back..... How do you think they responded, how would you respond?

Anyone from Microsoft on here that can suggest what they would do in this case?

flag
show 6 more comments

45 Answers

prev 1 2
vote up 0 vote down

I wouldn't expect an interviewee to comment their code (assuming they were writing it on the spot in the interview). If I was interviewing someone experienced though, and they failed to indent the code, then that would certainly count against them. I wouldn't expect the indentation to be perfect, or in a style I liked, or anything else. But it had better be indented. It's part of writing code.

If I'm recruiting someone non-experienced (and I usually am) then it doesn't matter. But I'm not going to ask them to write a doubly linked list either.

link|flag
vote up 3 vote down

I would fire him, but luckily, he would never actually be hired.

I would prefer that he spent 2 hours writing clean, almost functioning code, than for him to slap something together that works.

Programming style is important, especially when working on a team.
It becomes critical when supporting legacy applications, written by several people.

Part of being a professional, and not just some script-kiddie, is caring about the code. It's about realizing someone else will read this code (Maybe even you!) six months from now. Therefore, you should make it as easy as possible to maintain.

link|flag
show 1 more comment
vote up 0 vote down

Style that emphasis on readability is important. Extremely important.

Many programmers argue over frequency and use of comments, but most argue that they are needed.

link|flag
vote up 1 vote down

Your friend needs to get his prioritys right, and in my opinion I believe microsoft would care more then you seem to think they would.

link|flag
vote up 0 vote down

If want to throw away your source-code after writing it, it's OK to ignore styles. That applies for fast scripts, that you make for your task, that really runs only once. On the other hand, how often it happens, that the task that was supposed to run only once will be reused later.

Reusing may be OK, but it will later hard to understand what happens. If you want to modify the code later, you are lost without some style.

How important a proper styling is, depends on how long you will use and modify the code and how many will work on it.

If you work in a team, speak about which styles should be applied.

link|flag
1  
I would say not even then. I think you want your code to run correctly, even if it's one-off. If there are any errors in your code, you're gonna want to format it well enough so you can debug it. Also, with Python, you don't have the option not to indent. – Christopher Mahan Jan 12 '09 at 13:23
vote up 40 vote down

No programmer is an island. Someone is going to have to read their code one day. It's been repeated here many times before:

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Martin Golding (maybe)

That said, if their style is adequate, there are other much more important things to evaluate when hiring a programmer. But if they utterly refuse to use comments or attempt to make their code readable to others, it is a deal-breaker.

link|flag
show 1 more comment
vote up -2 vote down

When it comes to coding when applying for a job, I think it's a bit harsh to dismiss a candidate for not commenting/indenting the code he wrote, except in a situation where he was explicitly asked to do it.

link|flag
show 2 more comments
vote up 10 vote down

Code is read by three entities: The computer, the programmer, and ultimately the maintainer.
Style and Formatting is irrelevant to the computer, possibly important to the programmer, but it is certainly important to the maintainer, who has to try and comprehend the program's functionality.
Refusing to accommodate other developers by making code readable is disrespectful.
Creating organized code with meaningful variable names and comments is a form of common courtesy to anyone else who reads it.

link|flag
vote up 0 vote down

If you spend more time on indenting code than actually writing it, it could be a problem. But source code styling, conventions and consistency across the solution is important.

That is why I rely on a tool to do that. Resharper allows me to reformat all my code by pressing Ctrl+F, E keys combination.

link|flag
show 1 more comment
vote up 2 vote down

I find it hard to believe anyone would think no indentation is a good idea. That is just dumb, I wouldn't call him back either if he did that for me on an interview.

Comments are a little greyer, great code is self documenting to a large extent. IF you write great code then comments should only be places sparingly in places where what is going on is truly complex and hard to follow.

link|flag
vote up 7 vote down

Programming style is very important. Comments even more so. Even if you are working by yourself, on your own project, you should comment your code, because a month later you will not remember what you did and why. And if you work in a team, then unclear, unformated, and uncommented code can cause a disaster.

link|flag
vote up 3 vote down

Programming without identing and a readable style is like writing a book without paragraphs and pagebreaks. It's just a great bunch of text and I would never take time to understand it.

I fully understand the reaction of Microsoft - I wouldn't call him back too.

link|flag
vote up 9 vote down

There's little excuse for not commenting and none for not indenting. Indentation is handled by most of the best editors and commenting should come as second nature for somebody who MS might like to hire.

They're certainly both disciplines that people get into (either naturally or through schooling) so not showing either, perhaps, shows a lack of discipline, or, at least effort to express it.

Edit: 2 hours for a linked list?! I see he meant now... Fitting in all that formatting in the remaining one hour, fifty minutes would have been pretty tough! (I'm only playing around - I assume there was more to the interview than a linked list!)

link|flag
show 5 more comments
vote up 3 vote down

In an interview, it is perfectly fine to not indent or comment your code. In fact, I would be surprised if you had time to do that-- we normally don't give that much time.

As a general practice, however, I fully expect you to indent your code and add comments where necessary. In fact, our build machine will fail on minute things like including tabs instead of spaces in your code.

Code readability is important. Just like no one likes reading one big paragraph (instead of small, structured paragraphs), no one likes reading one big lump of code with no formatting.

link|flag
show 8 more comments
vote up 3 vote down

I would try flattering him, tell him that because he can do more complex stuff than other programmers he needs to comment it and lay it out nicely so that the rest of us can understand it.

I think if someone demonstrated that kind of attitude to me in an interview I would think very carefully about hiring him. I'm sure that even Microsoft want team players.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.