11

Possible Duplicate:
How important is Domain knowledge vs. Technical knowledge?

I often hear from my colleagues and sometimes from interviewers that,

"There is nothing so great in having excellent programming knowledge. One must gain the domain knowledge as the 1st priority. If you have a good domain knowledge, then writing code for that is not a big deal."

(Here domain knowledge is something related to area you are working in. For example, I work in telecom domain, someone might be in Finance or Pharma or Web development or Embedded and so on.)

I disagree with above passage and think exactly opposite. In my career till now, I have seldom missed any deadline for bugfix or feature enhancement. I have kept changing the domains (within telecom) but stuck with learning the programming techniques. Though I might be wrong.

Questions:

  • Is my current approach correct ?
  • Given a choice between domain or programming (with limited time) which one should be chosen ?
  • Is there a good future for a person, who is primarily a very good coder but not so great in a domain (of course initially) ?

I ask this because, I feel that every domain ultimately boil down to code sea in which one has to dive!

iammilind
  • 2,232

4 Answers4

19

One could even define programming as "mapping domain knowledge to code", so obviously mastering both the domain and coding is mandatory. You have to dive in the code sea, yes, but it's not enough. How could you write the program without knowing what the program is supposed to do? Or, if you know what your program should do, how could you write it if you can't code?

In many cases, the programmer has to know the domain even in more detail than some plain "domain specialist", because the specialist can solve all kind of exceptions and corner cases with his common sense and experience as they turn up, but the programmer has to explicitly handle all those details in the code, before they turn up.

Given a choice between domain or programming (with limited time) which one should be chosen?

At any given moment, the best bet is to improve your weakest point. And, there are easier and harder domains. If you're making mobile phone toy games, then the domain is probably not that hard; the harder part is making the program efficient, portable, good-looking, etc. But if you're making nuclear power plant control program, then it may take years of intensive study to actually master the nuclear physics that your program has to deal with.

Is there a good future for a person, who is primarily a very good coder but not so great in a domain?

You can approach total mastery from either direction, but in the end, you have to master both coding and the domain.

10

Excellent question.

A programmer does not need domain knowledge. A good, well-rounded programmer should have the ability to interpret domain-specific requirements and obtain domain knowledge to solve problems, but in my opinion should promptly forget that information.

You have a choice - do you want to be a subject matter expert, or a technical expert?

If you want to work at one company, or stick to a specific industry, then gather that domain knowledge and climb the rungs. You'll soon shift from being a programmer to being someone who works with the rest of the business, liasing between management / marketing (who have business requirements) and the technical team (who just know how to translate technical problems into code). You'll be the guy who sees the requirements document and thinks "Hey, they forgot about scenario X when the moon is in the seventh house and Jupiter aligns with Mars". You are a subject matter expert.

If you want to have core technical skills, you avoid domain knowledge and keep growing your technical skills. This doesn't mean you should be belligerent and refuse to learn. It just means that gathering this knowledge is not your core focus. There are enough technical challenges in software engineering without focusing on business knowledge if you choose to pursue them. Become a solution architect; drive your organisations technical capabilities. You are a technical expert.

It's a legitimate choice. I choose technical expert every time. It means I can work anywhere, and never be sidetracked into work I don't want to do.

6

Domain knowledge is good but this is not the responsibility of the programmer. It is the responsibility of business analyst, systems analyst, data modeler, software testers, software architects and sometimes the project manager. Each of these categories require different level of domain knowledge.

The programmer is not supposed to gather or formulate requirements. He/she is supposed to understand requirements and implement these requirements, at least that is in the case in large institutions.

The reason for my argument is that business domain knowledge includes business functions, laws, regulations, interface policies with other businesses, business agreement between organizations, and lots of other details never discussed with developers. Also, programming is not a light skill to acquire and maintain. For example, You can't expect someone to know banking compliance rules, regulations, and OOP.

Nevertheless, a programmer who has worked in a bank for 10 years, would indeed know about banking products and banking system architecture more than a programmer who works for a Telco. This knowledge, makes that programmer more appealing to banking jobs, specially if the new environment uses the same software as the the job seeker environment (for example, same CRM or Credit Card Processing application). In oil companies in Canada, specifically, they usually ask for Oil & Gas expertise from developers - I never been able to justify that.

Domain knowledge allow a programmer to move to other careers if he/she so wishes but defining and documenting domain knowledge is not obvious without a certification, courses or a degree.

In my opinion, the core and foremost important qualification of a programmer should be the technical knowledge in his specialty stack.

NoChance
  • 12,532
5

If you wish to remain only a programmer, working for a company, then domain knowledge is not necessary but if you have, it is good. If you are a part of a team and you have a program manager, then he should possess little domain knowledge. In your case, you gain a basic domain knowledge while working on a project. For example, if you are involved in the development of a product in Telecom domain, then after a certain period of time, you do get a basic knowledge of the Telecom Services Provider.

From my experience, if you run a company or is a part of business development process, then definitely you should have a domain knowledge. You should also have a knowledge of your competitors.

Anyhow, you should keep your eyes open because you won't remain a programmer life long. In future you may lead projects.

Edited

And also, highly scalable products are possible only when you have excellent domain knowledge.

RPK
  • 4,378
  • 11
  • 43
  • 66