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?
|
2
|
Some people are programmers while some are computer scientists. Both look and solve problems differently. What are the fine points that separate them?
|
|||
|
closed as exact duplicate by 01, gnovice, dmckee, John Saunders, starblue Oct 4 at 17:48 |
|
|
Ask a person who learnt to program how to sort an array of numbers, and they'll tell you to use 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. |
||||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
@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) |
||
|
|
|
|
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. |
||
|
|
|
|
I would think someone with a CS degree took: Calculus 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. |
||
|
|
|
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. |
||||
|
|
|
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!) |
|||
|
|
|
|
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.) |
||||||||||||||||
|
|
|
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. |
||
|
|