vote up 9 vote down star
3

I work in a software company which has been existence for 27 years and as a result the software framework on which our applications run is all home grown as it predated most of the standards that are commonplace now. As a result of this the day to day working involves a lot of exposure to the low level details of machine and code. A lot of C with low level memory/data structures. The newer code which is authored however is taking the step in the right direction, that is using standard libraries, STL Boost etc if it's C++ or glib in the case of C. However to maintain the codebase developers still need to get their hands dirty and be able to tell what is going on at a lower level. Now I am involved in the hiring for the company for Junior entry level developers and find a really hard time in finding kids who understand these details. Even though they have done coursework in compilers/data structures and algorithms. During the interview some even ask that why are you asking me these things, I can do this in Java using this, in .NET using that. Why do I need this level of details? My questions to the community are a few:

  1. Does everyone agree with me that knowing details like how a process is laid out in address space, how an executable gets built (compiling/linking) etc are essential to know? Or does it depend on what kind of s/w development you are doing. That is: does it make sense in my company's case that developers should know these details? Developers using Java/C# are ok with knowing them. 65-70% of the kids have a very vague idea about these details.

  2. Also these are just not Junior developers recently while searching for a senior guy for my team, I ran into the same issue. People with 15-20 years of experience were in the same boat.

  3. If I feel all the details are essential what is the best way of finding like minded people?

flag

50% accept rate
@HeretoLearn: This is a community wiki candidate. – Kb Jan 31 at 14:58
@Kb: Sorry for removing the "not-programming-related" tag that you added - it was an accident which happened because I started fixing typos before you added the tag. It's back now, though. – mghie Jan 31 at 15:27
@mghie: It's ok. Thanks! – Kb Jan 31 at 15:37
1  
I think this is analagous to the race-driver/car-mechanic scenario. Everyone wants to be a race-driver but only a few care about the internals. – Adrian Pronk Jan 31 at 16:42
I think I was hoping (by the title) to read some rant about identifying during interviews, the programmers who've transcended their training. Oh well, but that would be a nice article to read someday! – scraimer Feb 1 at 0:47
show 2 more comments

9 Answers

vote up 10 vote down check

Find intelligent people who can learn. I don't agree that knowing these details is important all the time. I do agree it is sometimes important based on environment. In yours, it sounds important. So find smart people, and train them. Good programmers should be able to learn nearly anything programming related.

link|flag
vote up 1 vote down

If low level details are really important to your company and your existing frameworks, then you NEED somebody with that type of knowledge, or at least the ability to learn it quickly.

However, training finding somebody with that knowledge is difficult, and training somebody before they can add value is a high risk proposition.

You may want to look into refactoring out that low level code into a seperate codebase, this will allow you to hire juniors without this indepth knowledge to add value, and fewer hard core developers will be needed to maintain the low level stuff. And you will find through trial and error the junior developers who have the interest and intelect to be trained in the low level code.

Just my 2 cents.

link|flag
vote up 1 vote down

I agree on the training. However one thing which I have to fight is the attitude that why I need to know these details. I think CompSc programs in the US are unfortunately producing application developers rather than software engineers. All Master level courses should have extensive course work in C, more implementtaion OS/Algortithms courses rather than just theoritical. Java/C# etc should not be used as teaching languages.

link|flag
@HeretoLearn-No big deal, but this would usually go in the comment right under skiphoppy's question. – John MacIntyre Jan 31 at 15:36
vote up 1 vote down

ad 1. If think the level of detailed knowledge required very much depends on the type of software - or rather on the type of features someone is implementing (e.g. if someone does mainly user interface programming, we will probably not need to know all low-level details of how the data he is working with is accessed, while someone building the business logic or database layer will need those). Thus, I'd only confront those programmers with the low-level issues that really need them to do good work.

ad 2.+3. We have a somewhat similar situation in our company - the database layer and some of the business logic code is very old and written in C (now it's actually C++ since we refactored all of the code, a costly but worthwile effort), while most of the add-ons (various user interfaces for different platforms) are written in C#. We also have troubles finding developers willing to code in C - it turned out that is was easier to hire older programmers (who grew up with C and still like it) than finding youngster willing to take what they personally considered a step back from e.g. C# to C.

link|flag
vote up 3 vote down

We have a similar situation here as well. To some extent, we deal with it by segregating our code base and developers. Those developers with less-experience, knowledge, and fewer skills work on the less complicated modules. Developers with more experience, knowledge and more advanced skills work on the more complex, sensitive, and interesting modules.

To some extent, this categorization also serves as a motivator for the junior members to improve their skills as they know it will lead to more interesting assignments. Similarly, it relieves the more advanced developers from having to deal with the more mundane tasks that don't keep them interested.

link|flag
vote up 0 vote down

I learned all the low-level stuff in school and was actually quite 'into it' for a while. It's interesting stuff. Most of my peers weren't so interested in the details. I'd say it's important for a junior developer to have some background in the areas you mention.

However, I should add that since I've been out in the 'workforce' I haven't needed any of those skills in even the vaguest sense -- probably because I got into web development.

So, part of your question asks if it's primarily necessary to know the details of compiling/linking/etc depending on the kind of development you do -- and to that I'd say: Definitely.

If your company does work in that area you obviously need developers who are familiar in the area but I wouldn't say that, if I were hiring, it would be a deal breaker for a new grad not to have serious interest/experience in assembly... it just wouldn't be relevant for a job like mine.

link|flag
vote up 2 vote down

I'd look for a firmware programmer who wants to cross-train into the desktop environment. The firmware world needs precisely this level of familiarity with the low level nitty-gritty. It's an attractive option for them because desktop development is a lot less stressful than firmware... I can fix my bugs without requiring a multi-million dollar product recall. That's one of the reasons I crossed over to the dark side :-)

You may have to pay more and get someone older, but in the current climate folks will take job security over other motivators.

link|flag
vote up 0 vote down

What you want to see in programmers is the ability to walk up and down the various layers of abstraction with ease. I think this quality cultivates with lots and lots of reading and doing ( in other words .. experience)

As an example of what i want to say: If a data structure is going to be stored in contiguous array, would you pad ( hint : virtual memory )

Or

  for(int i = 0 ; i < COL ; i ++) for(int j = 0 ; j < ROW ; j ++)  arr[i][j] = 0

vs

  for(int j = 0 ; j < ROW ; j ++) for(int i = 0 ; i < COL ; i ++)  arr[i][j] = 0
link|flag
That depends on whether the arrays are is row-major or col-major in memory. – Paul Nathan Feb 13 at 23:19
For optimization it is certainly helpful to know as much low-level detail as possible. But these days with business applications, web development and optimizing compilers it's rarely necessary to optimize in such as way (and can be handed over to the company expert then handed back again). – legendlength Mar 19 at 10:05
vote up 1 vote down

No, low level details don't matter. Many of us have programmed perfectly well in C and assembler on kernel projects without knowing the details of how microchips actually work. Knowing about hardware device interfaces is important (IRQs, ports, registers etc.) but knowing the implementation details is rarely useful.

Following that analogy, it's not important for new generation .net developers to understand assembly language, kernel implementation or physical -> logical address mapping. On rare occasions these things pop up and you have to deal with them but for 95% of business development they are merely academic exploration.

To drive my point home:

  • Excel users don't need to know how Excel works under the covers (but they do need to know the menus and the rest of its interface)

  • The creators of Excel don't need to know assembler (but they do need to know the .net API)

  • The .net team need to know C and assembler but probably not much about device drivers.

  • Driver writers need to know about the kernel API and hardware interfaces but not about microchip internals.

  • Microchip makers need to know about circuits, electricity and sometimes atomic structure, but not about string theory.

Interestingly it goes the other way too. Microchip manufacturers should know about driver writing yet they don't need to know about .net implementation or higher levels of abstraction. They really only need to know about the abstraction layers that are immediately above and below them (within reason).

link|flag

Your Answer

Get an OpenID
or

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