vote up 1 vote down star

Possible Duplicate:
What course is missing from the CS/IS education.

Possible Duplicate:
What is the most important thing you weren’t taught in school?

There is quite a jump to make from getting a computer science degree into the real world of software development. I was wondering what others thought should be core courses for computer science degrees. My initial thoughts include teaching design patterns and test-driven development courses.

flag

Just the same question was asked here yesterday and some time before that. – Developer Art Aug 22 at 15:40
1  
@NewInTown In which case the standard SO response is to post a comment containing the link, and not to edit the question. – Neil Butterworth Aug 22 at 17:47

closed as exact duplicate by Neil Butterworth, starblue, redsquare, sth, Shog9 Aug 27 at 1:48

6 Answers

vote up 6 vote down check

Computer science has much the same relationship to software engineering as physics has to electrical engineering.

I think the real issue is that the discipline is mature enough that there should be a much more formal separation of the curricula (into computer science and software engineering) .

Many schools fail to recognize this distinction and many of the graduates from such schools fail to appreciate this distinction.

link|flag
1  
+1 for CS != SE – Nader Shirazie Aug 22 at 15:46
I remember my first few days at the Milwaukee School of Engineering in their SE program. First lesson: How CS is different from SE. Some programmers still fail to recognize the difference. – Cory Larson Aug 22 at 16:06
I agree that there should be a a more formal separation of curricula. I think more formalized disciplines will eventually emerge, but until then a gap will need to be bridged when computer science graduates join the software development workforce. – jamesaharvey Aug 23 at 2:30
vote up 4 vote down

I finished my studies quite a few years ago, but here are some rapid thoughts from what I've seen (in France, at least) from young people arriving in the company I work for :

  • Some notions about working in team : source control (SVN, GIT, ...) is something you can't live without once you've used it ; it would be useful even for student projects !
  • Some quality notions : tests!!! automated tests, too ! (it's a bit what you said, with test-driven development, but not only : testing an application when it's developped is necessary, and you don't learn that at school :-( )
    • Starting from there, using a bugtracker would be nice : why is it useful, for instance ?
  • Some words about frameworks, design patterns, ... Actually, if only someone could tell "do not re-invent the wheel"...

I also think that schools are sometimes a bit "behind" in terms of industry standards ; but it might not be such a big problem : the most important thing school should teach students is "how to learn" : if a student can learn by himself, and knows how to get informations, he will be able to deal with almost anything, even if it's a technology he never worked with before.

Just a couple of ideas, though...

link|flag
+1 for mention of "do not re-invent the wheel". Or should they be told, "your wheel isn't as good as the one we already have." ;-) – tim_wonil Aug 22 at 15:38
vote up 1 vote down

I think the curriculum varies widely depending on the university. For starters, the design patterns and TDD were part of CS (or IT) courses (bachelor degree level) at my university. That was about 5 years ago.

I think there's limitation to what a computer science course can or even should offer to students. To my mind, computer science as a field of study has more "pure" feel to it. What I mean is that a computer science is a branch of science, not engineering or technology. It should have more to do with algorithms, data structures, machine coding, network fundamentals, logic, human-computer interactions, etc. In other words, a computer science graduate should be expected to know more about how to come up with an an algorithmic solution to a problem, rather than how to build a great website/web application.

For a real world software development, I think there needs to be a slightly different discipline. Software engineering, Information Technology courses are such examples I think. These courses really should teach students how to solve real world problems in practical ways effectively and efficiently. There would be an overlap with CS of course. Both need to know some basics of computer programming, computer architecture (CPU, memories, networking, data storage), and the likes. But in software development focused courses, the graduates should really know and have experience in source control, databases, design patterns, software development methodologies, such as agile, TDD, XP.

Having said that, I think whatever you teach at a uni, it will be hard to beat a real world experience. And I suggest that including a 6 month of industry experience program within a CS/IT/Software Engineering course can really equip the students for real world software development. Some universities actually already have such program in place, but I'd like to see it more wide spread.

link|flag
vote up 1 vote down

I don't know about you, but I went to a local university here in Omaha and I was very unsatisfied with the curriculum. I'd describe the 4-year experience as a glorified Java certification.

Things they taught me:

  • Syntax of Java
  • Syntax of VB.NET
  • Syntax of C++
  • Syntax of SQL
  • Syntax of PHP

They really really hammered on syntax for the entire duration of the course, and this was to get a 4-year degree. Either my professors were really unskilled programmers themselves who never learned anything beyond the basics, or they believed that syntactical knowledge alone can turn a neophyte in an expert. Seriously, if you need 16 weeks to learn the syntax of a new language, programming is the wrong career for you.

Things they should have taught me:

  • Automated testing.
  • Automated builds.
  • Source control.
  • Writing comments.
    • Maybe we don't need a lecture on the topic, but I think instructors have a very bad idea of what commented code should look like. I had one instructor who wanted every line of code to be commented, resulting in atrocities like i++; // increments the variable i and Customer x = new Customer("Juliet"); // creates a new customer, assigns to variable x.
  • Data structures and algorithms.
    • It amazes me that, for four years, not a single textbook contained a basic description of a linked list, a hashtable, or anything more advanced than a bubble sort.
    • Graph data structures! There are so many graph problems out there, you could probably make an entire course studying graph problems alone.
    • Discrete mathematics: calculus is easy, but rarely comes in useful to your everyday developer. On the other hand, integer math, number theory, combinatorics, set theory, graph theory, etc are all relevant to computer science.
  • Computational complexity, Big-O notation, complexity analysis.
  • Design patterns!
    • You can make an entire course on design patterns alone. Regularly I find fresh-out-college kids who can't design their way out of a paper bag -- software engineering is learned on the job through trial and error.
    • As an addendum, universities need to assign work to students which mirrors real-world systems. 95% of all work I did involved writing fewer than 20 lines of code, and rarely more than 2 files. Students should be forced to build big systems with lots of loosely-connected, moving parts.
  • Threads!
    • 99.99% of all student work is single-threaded. Maybe students have a cursory introduction to threads, maybe they learn that a "lock" is the golden hammer to solving all of their problems. But writing concise, correct, and efficient multithreaded code is hard.
    • Can we stop polluting students minds by teaching them that extremely low-level locks and monitors are the only way to write multithreaded code? When I talk to fresh-out-college types, they've never even heard of message passing or actor model concurrency. The phrase "process calculi" alone puts students in a zombie-like trance which causes bits of foam to dribble out of their mouth.
  • Functional programming
    • I think a few people are fortunate enough to learn Lisp or some flavor of ML, but the vast majority the computer science experience for us is imperative. Functional programming affects the way you solve problems, modularize code, etc, yet its barely on the radar.

I know my experience isn't unique. It surprises me that so many students come out of their 4- and 6-year computer science programs knowing absolutely nothing about writing software, and they end up having to re-learn everything mentioned above from scratch.

link|flag
" if you need 16 weeks to learn the syntax of a new language, programming is the wrong career for you" - haha. Unfortunately, I think I could spend 16 months on some languages and still not have a clue (brainfuck, whitespace, MUMPS, perl etc). – oxbow_lakes Aug 22 at 16:33
vote up 0 vote down

More programming!

Everyone I know had people in their class finish university without being able to program. If you can't program, you shouldn't get a degree. End of story.

link|flag
More? Computer Science is not Software Engineering. Most Computer Science degrees have TOO MUCH programming, probably. – Chris Aug 27 at 15:54
@Chris: I expect we're working from different assumptions here. My CS degree did not lack in programming courses, they just allowed people who couldn't program through. The people who can't program also can't create data structure or algorithms, are unable to see the use of the math portions, can't understand compilers, or recursion, or complexity theory, etc. End result is students who can't program their way out of a paper bag, but manage to code up a web site for their thesis project, and still get to marks on their essays and writing. – Paul Biggar Aug 27 at 17:14
vote up 0 vote down

Designing and developing secure code, both theory and practice.

link|flag

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