vote up 5 vote down star
2

Possible Duplicate:
Difference between a Computer Scientist and Computer programmer

Some people are programmers while some are computer scientists. Both look and solve problems differently. What are the fine points that separate them?

flag

Duplicate: stackoverflow.com/questions/1062811/…. – gnovice Oct 3 at 15:08

closed as exact duplicate by 01, gnovice, dmckee, John Saunders, starblue Oct 4 at 17:48

12 Answers

vote up 14 vote down check

Ask a person who learnt to program how to sort an array of numbers, and they'll tell you to use sort() Ask a person who learnt computing science, and they'll know which algorithm, why they did it that way, the pitfalls, why sorting can't go any faster than O(n*logn), and they are a bit more equipped to explore how to make this faster.

But at the end of the day, you need both. You'll make money connecting the libraries together to do what you want, but eventually you'll come across situations where the theory would help - why certain, superficially simplistic problem, has no known fast solutions, etc etc...

You could also start out knowing the theory, but as you work at your job, you realized you don't know how to organize your code for best reuse, "cleaniness", readibility, things that matter to people who deal with code day to day.

link|flag
1  
What is more interesting: one day you'll encounter problem where theory would help, but you won't even understand it unless you have hired clever people beforehand :) – Pavel Shved Oct 3 at 13:11
1  
nitpick from the "computer science" side: you can sort faster than O(n*log n), but only if it's not comparison-based. Radix sorting sorts in O(n*k) time, for items that can be broken up into "k" separate chunks (such as short strings, or bounded integers). – Tom Oct 3 at 14:12
@Tom good nitpick, and I knew about Radix sort. But most generic sort algorithm relies on comparison of 2 items, and general enough to demonstrate the point. :D – Calyth Oct 3 at 15:12
@Tom: Radix sort works faster when it works. As n becomes large, either k becomes large (and we get O(n*log n) performance when k increases like log n), or we get sublists in the buckets and those will – David Thornley Oct 5 at 14:01
vote up -1 vote down

I like to think that learning Computr Science gives you th textbook knowledge of the theory of for computing. You gain a ... sort of distant knowledge of the 'job'.

Now I'm not talking here about 'industry' programmers, when I make the next few statements, but a programmer who has pretty much delved into it all: (he's done application programming, embedded, probably even written a bit of a hobby OS, emulators, drivers, or at least two or three of that set).

You find that a Computer Science trained professional has a superficial knowledge of how to work things, but that a programmer who has done low level programming at say, the network level, and has probably written network drivers, and followed specifications on RFC standards while writing, etc., understands how things work, and much more importantly, they understand the why.

A Network Administrator understands his job via what a textbook has instructed him. A programmer who has experience in Network Programmer understands pretty much everything the Net. Admin understand, but on a deeprer level.

To an extent, (a large on) I would say that Computer Science, if it is to produce proficient experts who are well rounded, should not divorce programming from any particular field.

Web Designers should be taught programming, and the various translations protocols, and whatnot that they work on top of (a web designer who knows the little stuff, like even UTF to Unicode CodePoints tends to be more efficient).

Networkers need to truly get to know about the interfaces their network devices use to interact with the OS, and all that kind of stuff (NE2000 for a start).

I think that programming, when delved into deep enough, pretty much encapsulates everything else.

link|flag
vote up 4 vote down

I would call it similar to the difference between a carpenter and an architect in the construction field.

When the jobs are of a manageable size, a carpenter might have all the tools and know-how necessary to do an excellent job, depending on the training they've come across in the past and their experience level.

When the jobs get large and complicated, an architect has had formal training and can apply theory and advanced methods to help finish the job on time and on budget. In general, the architect is also going to need the help of others to finish the whole job.

Both are necessary and both can do excellent work they can be proud of. We've all seen chairs of exquisite beauty made by finish carpenters. We also all can marvel at Fallingwater.

link|flag
1  
Strange - my father (once a ships joiner, for many years now a builder) tends to think as architects as idiots - no brains, no common sense etc. And who's to contradict him - half the time their drawings are completely useless, and he has to do most of their job as well as his own. I've learned my share of computer science over the years - and have no intention to stop learning - but I have a similar view of some so-called computer scientists. Remember - many incompetents have degrees in any field, and the lack of certificates does not prove a lack of knowledge. – Steve314 Oct 3 at 17:02
Certainly, they both can do shoddy and pathetic work, too. I was sticking with the positive aspects of each in my original comment since I was detecting a slight air of dismissal towards 'mere programmers'. – goger Oct 3 at 22:05
@goger - agreed. No-one will claim builders (or programmers) as a group have a spotless record. Still, if you want on time, to spec and within budget, degrees and job titles aren't enough - or even necessarily relevant. – Steve314 Oct 4 at 10:29
vote up 1 vote down

One is a scientist, the other an engineer. The difference between the two is (theoretically) like the difference between scientists and engineers in other fields.

A scientist primarily does research. For a computer scientist, the primary area of research is algorithms.

A programmer is an engineer -- somebody applies known science to produce working solutions to people's problems.

At least that's how it theoretically should be. There is a basic problem with all of that though: it's ignored to the point that the distinction is nearly meaningless. I once interviewed some people for a job were we honestly needed a computer scientist. Most of the people I interviewed had PhD's in what they had been told was computer science -- I hope you'll pardon me if I disagree.

I had one guy with a shiny new PhD, who'd been recommended by one of the professors as a particularly promising candidate (though, in fairness, the prof knew nothing about the job). It quickly became apparent that the prof was at least partly right -- the guy really was very smart. Unfortunately, despite a PhD in CSc, he was a pure "coder" who hadn't a clue about anything related to computer science -- though had some vague notion of what "big-O" meant, he was pretty sure he'd never heard the phrase "big-omega" in any of his classes. When you get down to it, his knowledge of algorithms was primarily empirical. I asked about efficiency of various sorts, and his knowledge came down to knowing that it was a lot faster to include an "order by" clause when you generated a SQL statement, rather than doing the sorting afterward in PHP.

Colleges clearly aren't doing a good job of separating "software engineering" from "computer science", but industry isn't helping either -- a quick search on dice.com (for one example) shows that virtually every job advertisement that mentions "computer science" is really for a programmer, not a computer scientist at all.

link|flag
vote up 0 vote down

Computer science is beyond programing it is science that investigate mostly optimization and automation of various processes of any kind, so it can be applicable everywhere. CS ( computer science ) can be concretely used, tool or instrument for that usage is computer and work with that instrument is called programming.

Good luck.

link|flag
vote up 0 vote down

@Calyth:

Ask a person who learnt to program how to sort an array of numbers, and they'll tell you to use sort() Ask a person who learnt computing science, and they'll know which algorithm, why they did it that way, the pitfalls, why sorting can't go any faster than O(n logn), and they are a bit more equipped to explore how to make this faster.

Actually a good computer scientist knows that the lower O(n log n) bound is inapplicable in quite a lot of sorting algos that do not perform comparisons, like in the whole family of bucket sorting algos and that O(n), depending on the data, is provably reachable.

Great programmers have actually reached O(n) sorting times for a great many practical purposes by implementing themselves the counter sort (bucket sort can be seen as a generalization of the counter sort) in critical part of their code :)

I've got no CS degree but I happen to a math and algos addict and to have coded such O(n) sorts for the first time 20 years ago or so, when developping games for the Commodore Amiga was all the rage :)

(still trying to get used to Stackoverflow which I start to like a lot : I don't understand of to reply directly to another answer, so that my answer appears underneath the other answer)

link|flag
vote up 1 vote down

Difference between Programmer and Computer Scientists, can be equivalent to the difference between Writer and Linguist. Although they both are related to a language, and writer needs grammer to write. But they are substantially different:

Linguist (Computer Scientist): Creates, refines, and dictates the element of language. Who tells us to not to use who, but whom.

Writer (Programmer): Is the real person who do the writing. He writes a story, and uses a language as a tool. He thinks of the plot and the characters. He is the one who arranges the words, so not only they are grammatically correct, but they mean something. At the end, if grammer is wrong, everybody will notice and frown upon it. But when we read a story, we do not think about the grammer, we think about the story, the beauty, the passion, the romance, the thrill, that was created by it.

So i wouldn't say which one is greater. But if I were to choose, I will always become the writer.

link|flag
vote up 0 vote down

I would think someone with a CS degree took:

Calculus
Linear Algebra
Statistics
Intro to Java/C++
Data Structures/Algorithms
Computer Hardware (logical circuits, assembler)
Discrete Math

and some sort of combination of dbms, networking, operating systems, ai, graphics, computation (NP completeness, etc...)

You don't need all those to program, which is a broad definition, but I'm sure many programmers who didn't major in CS read up on the above.

link|flag
I started out with a HND, which is at best half a first, if I understand what a first is correctly. Since then, I've looked at everything in your list and more, and ATM I'm spending some time revising and improving using MIT and Stanford courseware stuff - though to be honest, it has very little relevance to writing software that basically adds up columns of numbers and prints them. C'est la vie. – Steve314 Oct 3 at 15:10
vote up 4 vote down

They are completely different thing, only slightly related to each other.

Programming is about writing code. Computer Science is a branch of mathematics dealing with the study of algorithms, computability, complexity analysis and similar fields. You can be a perfectly fine computer scientist without ever touching a computer and you can be decent (but not great) programmer without knowing any computer science whatsoever.

link|flag
1  
"Computer Science is no more about computers than astronomy is about telescopes." - Dijkstra – Jeanne Pindar Oct 3 at 20:32
vote up 1 vote down

Wow! What a question! A whole thesis could be dedicated to this. Anyway, to be succinct and to the point I think about it by this analogy:

Computer Scientists:Programmers as Mathematicians:Applied Mathematicians

Oh, and Computer Scientists in general have a terminal degree such as a phd, while some programmers (like Bill Gates for one) dropped out of college, and some didnt even complete high school (I know of one such guy myself who is is superb programmer!)

link|flag
vote up 8 vote down

A programmer is anyone who writes computer programs. A computer scientist is a mathematician who deals with concepts related to programming. (Lots of people are both.)

link|flag
Why the mention of maths? You don't need to have any ability at maths to be a programmer or a computer scientist (although basic addition & multiplication can be handy!) – Jason Williams Oct 3 at 13:27
10  
@Jason: Math is the foundation of computer science. This includes probability, combinatorics (counting), induction, set theory, boolean logic, and more. – Tom Oct 3 at 14:15
3  
@Tom - that comment gets an upvote, but I'm disappointed that you didn't list formal languages, automata theory, abstract algebra and, oh, all the other things I hypocritically cannot be bothered listing. – Steve314 Oct 3 at 15:01
1  
Calculus, differential equations, analysis (especially Fourier analysis) convolution theory, and wavelet theory too. Compression and image processing algorithms make heavy use of these techniques. It might be surprising to some people how mathematical computer science really is once you go past pre-built libraries with pretty interfaces. – joemoe Oct 3 at 15:49
Maths is very, very broad. Most programming has little to do with things like calculus (although like joemoe rightly says some programming is all about calculus and analysis), but almost all programming clearly has to do with the kind of things Tom and Steve list. – Joren Oct 3 at 18:05
show 1 more comment
vote up 8 vote down

Compare a pharmacist with a doctor: a pharmacist knows how to listen to your symptoms and give you the right medicine to help, whereas a doctor has a full understanding of the mechanisms behind your symptoms, and how the medicines really work. (Note that I'm not denigrating pharmacists, or "programmers", here!)

Computer science teaches you the history and background behind computing, and gives you a fuller understanding of how things work under the covers. You don't necessarily need all that to be a programmer, but it can give you a more complete understanding of the problems you need to solve, and how to go about solving them in an optimal way.

link|flag

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