vote up 40 vote down star
27

I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programmer after mediocre programmer.

Our very own Joel Spolsky has his famous article, "The Perils of Java Schools."

Similarly, Alan Kay, a famous Computer Scientist (and SO member) has said this in the past:

"I fear — as far as I can tell — that most undergraduate degrees in computer science these days are basically Java vocational training." - Alan Kay (link)

If the languages being taught by the schools are considered such a contributing factor to the quality of the school's program then I'm curious what languages do the "top-tier" computer science schools teach (MIT, Carnegie Mellon, Stanford, etc)?

If the average school is performing so poorly due in large part the languages (or lack of) that they teach then what languages do the supposed "good" cs programs teach that differentiate them?

If you can, provide the name of the school you attended, followed by a list of the languages they use throughout their coursework.


Edit:

Shog-9 asks why I don't get this information directly from the schools websites themselves. I would, but many schools websites don't discuss the languages they use in their class descriptions. Quite a few will say, "using high-level languages we will...", without elaborating on which languages they use.

So, we should be able to get a pretty accurate list of languages taught at various well known institutions from the various SO members who have attended at them.

flag
show 35 more comments

73 Answers

1 2 3 next
vote up 55 vote down

I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programmer after mediocre programmer.

They have always churned out a lot of mediocre programmers, a handful of good ones, and a few brilliant ones. Only the language has changed.

link|flag
4  
I'm curious what the language everyone was frowning at before Java was? Were they saying, "Todays Universities are no more than COBOL vocational schools?" or something similar? – Simucal Mar 13 at 19:43
4  
@Ed Swangren, Ok, you show me how you would eloquently teach functional programming concepts to your students with C. I think saying the languages don't matter is silly, when they obviously do. Concepts taught in a vacuum aren't the same as concepts learned with a concrete language. – Simucal Mar 14 at 3:38
1  
@Ed Swangren, They certainly aren't the only thing that matter, but those concepts are going to be delivered in a form of a language and if you only get exposure to a single paradigm language, you don't think that matters? – Simucal Mar 14 at 3:39
1  
Because the curriculum doesn't really matter. Universities cannot create brilliant programmers. Whatever the curriculum or language being taught is, there will always be many mediocre programmers, a handful of good ones, and a few brilliant ones. – Chris Mar 14 at 4:29
show 6 more comments
vote up 23 vote down

MIT

MIT used to teach its intro CS course (6.001) in Scheme (the textbook is still online), but that course was last taught in fall '07. The entire CS curriculum was restructured around then. Now, the new intro course (6.00) in Python. Other languages taught/used in various courses include:

There are probably a few more taught in some of the smaller, more advanced classes.

link|flag
2  
MIT changed their introductory CS course from SICP (scheme) to a robot-oriented course in Python. You can find the rationale here - (wingolog.org/archives/2009/…) – Pranav Apr 26 at 22:35
show 6 more comments
vote up 15 vote down

Carnegie Mellon

  • Intro to Programming - Java
  • Unix Programming - C
  • Principles of Programming - ML
  • Operating System Design - x86 Assembly & Heavy use of C
  • Data Structures - Java
link|flag
show 3 more comments
vote up 15 vote down

Everyone is saying that Java has opened the floodgates to mediocre code monkeys. This is true, but not for the reasons being cited here, that it is too easy and thus unsuitable for teaching CS.

I would argue that Java is too similar to the last generation university teaching language: C++ (Look at Java generics and C++ templates for example). And this is not a coincidence.

Java is first and foremost made for the industry which has lead to its widespread adoption. Here are some points to consolidate this fact:

  1. Java was designed to have similar syntax to C/C++ to woo the older generation while making it easy for the new generation to replace them.

  2. Heavy emphasis on contractual black-box programing with interfaces. This makes it easy to fire the person who finished his module and then outsourcing the rest of the work to India or fresh college graduates.

  3. Sun wants to make money.

Who is to blame for the influx of idiots? Industry. Industry is responsible for the commoditization of CS majors/programmers.

You have all heard ever so often on the news and Slashdot how there is a perpetual lack of programmers that they even need to hire foreigners on H1-B visas.

Colleges then teach Java because their students need jobs in order to donate or even pay for school.

link|flag
2  
The problem with java is that it is not similar to C++. It is similar to C. It throws out almost every lesson learned in C++. C++ templates and Java generics are an excellent case in point. C++ templates are actually useful, and enable an entirely new programming paradigm. Java Generics are syntactic sugar over void pointers as you'd expect to see in C – jalf Aug 17 at 18:29
show 2 more comments
vote up 14 vote down

The University of Waterloo computer science program uses (in rough order of introduction to students)

  • Scheme (just in first year, for the "learn how to program" courses, although many people use it beyond first year when they can)
  • C++ (there's one poorly taught course exclusively on C++, but this along with Java are the main languages used by students).
  • C (mostly for the two OS courses)
  • Matlab (mostly for computational mathematics courses - ie. computational mathematics, computational linear algebra, medical image processing, etc.)
  • Java (mostly for GUI applications)

Many of the upper year CS courses allow for choice of language. Haskell is a surprisingly popular language among students. Also, MIPS assembly and x86 are used in a couple of courses.

The engineering programs as far as I know use mostly C#, with a bit of C++ thrown in (and definitely no Scheme).

link|flag
1  
When I went to Waterloo the first year CS courses were in Pascal, second year was Modula-3 and Scheme, and third and fourth year depending on the course (most used C, and allowed C++. A few specified a certain language, like the AI course which used Scheme and Numerical computing which used Matlab). I wouldn't say these courses taught the language in question so much as they required that you learn them well enough to use them for the assignments. – Laurence Gonsalves Jun 30 at 4:53
5  
Java is a horrible choice for gui programming! – Jim In Texas Jul 20 at 18:14
show 4 more comments
vote up 12 vote down

University of California, Berkeley

  • Scheme (Intro to Symbolic Programming)
  • C (Operating Systems and Systems Programming)
  • Java (Data Structures)
  • C++ (Computer Graphics)
  • Matlab (Matlab for Programmers)
link|flag
show 5 more comments
vote up 10 vote down

Princeton University:

  • Java
  • C
  • x86 assembly
  • Perl
  • Python
  • awk
  • ChucK
  • Javascript
  • (etc.)

Specifically, the typical CS student starts with COS 126, the intro class, which teaches Java, then takes COS 217, which teaches C and basic x86 assembly language, then COS 226, which teaches algorithms and data structures in Java. Then there are various upper-level courses: COS 318, Operating Systems, uses C and assembly language; COS 325 on digital signal processing uses mostly C and ChucK, occasionally Matlab and/or Java; COS 333 is a mishmash of various languages including Perl, Python, awk, C, C++, Linux shell scripting, or whatever the students want... I think there are other classes that use primarily C++, e.g. computer graphics, but I'm not personally familiar with those.

(Almost forgot: there's also COS 109, an intro class intended for non-CS students, which uses Javascript and HTML.)

link|flag
vote up 6 vote down

Good developers will not limit themselves to what a University teaches. The kind of developers I want to hire are the ones that spend their free time writing programs that interest them, learning the languages they need to get those projects done and basically pushing the boundaries. The kind of developer I don't want to hire are the ones that got a 4.0 in their CS program, but didn't write a single line of code that wasn't graded in four years.

That said, my undergraduate University, the University of Missouri-Rolla (now the Missouri Institute of Science and Technology) still teaches C/C++ to first year CS students and continues that throughout the degree program. Second/third year students take "Computer Organization" which introduces Assembly and low level architecture. It's not until third/fourth year that elective classes introduce other languages, like Java, as part of classes like User Interface Development, etc.

Personally, I'd put that up against any "top tier" school.

link|flag
show 2 more comments
vote up 6 vote down

The good universities don't teach languages. They teach concepts. After the first "intro to computers" course, you're expected to pick up the language du jour by yourself from the labs.

link|flag
show 5 more comments
vote up 6 vote down

When I was at Cornell (#6 on your list), ~8 years ago, they didn't "teach" any programming language, except maybe at the 100-level. They mostly just used a language, and you were expected to pick it up to do the work. The languages they used were:

  • Java (almost everything)
  • C++ (databases course, because the db guy thought it was necessary for dbs)
  • Scheme? (some advanced 200-level CS course, if you happened to go through that part of the program in a semester when they offered it; sadly, I didn't)
  • Gofer (a Haskell-like language; used for a couple weeks in the standard 200-level course)
  • Matlab (numeric computation and some graphics work)
  • MIPS assembly (computer architecture)

The programming languages I learned there were basically useless. Nobody's ever heard of Gofer. Nobody uses MIPS assembly. I've never used Scheme or Java 1.1 on a project outside of class (though I have used Common Lisp and Java 1.[2-4]).

But the point of the courses wasn't to teach me the language. When I'm staying up till 3am every night writing a compiler in Java for class, the point is not to learn Java, but to learn to write a compiler. The fact that they gave us a mission and we had to do the footwork to get there was better than teaching a language.

Being given the task of "write a compiler", you learn to teach yourself not just the programming language, but version control, error handling, refactoring, and so on. While Joel laments graduates who only know Java, I find that merely a symptom of not having learned how to learn, which is the true purpose of a university.

If you study physics and happen to use English when doing so, the point isn't to learn English well, but to learn physics. I don't think anybody would confuse physics with English. Would you ask what language top-tier universities teach physics in? ("I studied at Heidelberg, and we used German!")

Cornell also used Windows NT 4, but that's also completely irrelevant.

link|flag
show 5 more comments
vote up 6 vote down

Northeastern University

  • A Scheme variant
  • Java
  • Some C; some MIPS

Undergrads are introduced to Scheme first. Many of the principles and problem solving methodologies learned during that course are applied to the later Java courses.

First year Master students take a mandatory course in Programming Design Paradigms.
Students are exposed to functional programming through small subsets of Scheme Language(Beginner Student Language ...). In the Second half of the course, the students are exposed to Object Oriented Programming through a language called ProfessorJ.

Principles of Programming Language uses Scheme exclusively. The course studies various aspects of programming language design.

Other graduate courses at Northeastern are language agnostic. For example, in the Algorithms course, the students are encouraged to use languages like C and C++; but many choose to use Java and similar OO languages like Ruby.

link|flag
2  
Northeastern in Massachusetts. The Scheme variant is called PLT Scheme - Here's some more info: plt-scheme.org/index.html – tehblanx Mar 16 at 13:09
show 5 more comments
vote up 5 vote down

University Of Southern California (as of 2006, at least):

  • C++ for the majority of CS courses (i.e. everything not listed below)
  • C for data structures course
  • Java for survey course / part of intro to OOP
  • M68k ASM for intro to architecture
  • MIPS ASM for other architecture/hardware courses
  • C# for databases course (but this may have just been the prof)
  • Prolog for part of the AI course

VB, PHP, etc only show up in the information technology courses which are not part of the CS curriculum.

Sadly, no functional programming whatsoever at the undergraduate level.

link|flag
vote up 4 vote down

I found Oxford (http://www.comlab.ox.ac.uk) didn't really teach languages per se, the course taught actual computer science -- algorithms, data structures, a healthy amount of relevant mathematics, that kidn of thing -- with very little focus on the specifics of language. Where necessary, though, we got a little tuition in (and pointers to where to find more) Haskell, Oberon, and a fictitious MIPS-like language called "SPIM" -- pretty sure we ended up writing a C -> SPIM compiler in OCAML, eventually.

Nottingham (http://www.cs.nott.ac.uk) on the other hand seems much more focussed on producing Computer Science graduates who are already trained software engineers / programmers -- so there's a lot of focus on Java early on, with more 'exciting' languages like Haskell only taught in optional modules later in the course.

link|flag
show 1 more comment
vote up 4 vote down

UC Berkeley

Lower Division

Scheme (CS 61A - Structure & Interpretation of Computer Programs)
Java (CS 61B - Data Structures)
C (CS 61C - Machines Structures)

Upper Division

Java (CS 162 - Operating Systems and System Programming)
Java (CS 164 - Compilers and Programming Languages); C++ used for the first time this semester
Python (CS 188 - Artificial Intelligence)
C (CS 186 - Databases)
C (CS 161 - Security)

link|flag
show 1 more comment
vote up 4 vote down

University of Michigan

  • C++
  • Assembly
  • Your choice in some higher-level classes
link|flag
show 3 more comments
vote up 3 vote down

I graduated from Michigan Tech, which, while not a top-tier CS University (top 50 in Mechanical, Civil, Environmental, and Materials engineering, FWIW), is supposedly regarded as having a fairly decent CS program.

The intro courses (CS 1 and 2, Data Structures) were in Java. Next was a "C++ for Java Programmers" course which introduced C++ and some GUI programming with QT. Operating Systems was taught in C++, and Systems Programming used C, though we were pretty much just expected to teach it to ourselves (K&R was a "recommended but optional" textbook). In all of these classes we used vim and Makefiles on Linux and Solaris machines. In Computer Architecture we learned MIPS assembly, and in Programming Languages we used Scheme (and a very tiny bit of Prolog, pretty much "This is Prolog, it's nifty but you won't see it again unless you take AI").

As far as electives go, I took a databases class where we were taught SQL (MySQL specifically), though most of the class was more concerned with theory (relational algebra, normalization, ACID, storage, etc.) We also touched on accessing databases with JDBC and Perl's DBI. Our final project, which was pretty much "do something neat that makes use of a database", could be written in whatever language we wanted. Other classes were similar; use whatever language we feel suits the problem best, just as long as we provide instructions and everything needed to build and run it on the lab machines (Linux). System/network administration classes used a fair amount of bash scripting. In addition to C, C++, and Java, I decided to turn in a couple of assignments in PHP, several in Perl, and a few in Python, when they were appropriate for the job.

link|flag
vote up 3 vote down

Texas A&M University - College Station

Undergrad: CPSC 110 - Pascal; CPSC 113 - C++; CPSC 121 - C++; CPSC 203 - FORTRAN; CPSC 206 - C; CPSC 211 - Java / C; CPSC 221 - C++; CPSC 314 (Programming Languages) - Java/Haskell; CPSC 321 - Assembler; CPSC 435 - Ada

Grad: CPSC 601 - C / Java; CPSC 602 - C++

If it looks a little heavy on C++, keep in mind that Bjarne Stroustrup is one of the profs. :-)

link|flag
show 1 more comment
vote up 3 vote down

I'm studying at University of Copenhagen, Denmark. It's not quite Ivy League, but the best university in Denmark, and been rated in the top 50 worldwide a few times, so pretty decent at least.

In the first semester, we were taught SML, a functional language, as a general introduction to programming.

This has the fun effect of leveling the playing field. All the cool kids who think they've been clever and learned Java or C++ before enrolling have to throw it all out and start over on a completely different language. It usually turns out that those with no programming experience actually grasp it easier.

Second semester, we were taught Java as an introduction to object-oriented programming.

On second year we were taught MIPS and Alpha assembler (the former as the target architecture in the compiler class, and the latter because we had to implement a simple OS kernel running on an old Alpha).

And that's basically all the language-specific classes we have. Depending on which classes you take past these, you'll probably learn C, C++, Haskell, Lisp, Prolog, Python, SQL and a few others. But in general, specific languages tend to take a back seat. They're something you occasionally have to pick up pretty much on the fly because you need it for an assignment or project.

(In the years since I enrolled, they've reshuffled some of the classes, so the exact order in which we learned these, and the amount of time spent on each is no longer accurate. In writing the above list I just stuck to what I knew. In particular, they've butchered the kernel project and with it, Alpha assembly. The latter isn't a big loss of course, but you really learned a lot from the kernel project)

I think that's the correct way to teach CS as well. It is not a programming degree as such. Individual programming languages are just tools to be used as necessary.

And without reading Joel's or Kay's minds, I think that was their point too. A CS college shouldn't just teach today's fashionable language. Whatever languages they teach should basically be incidental to the real meat of the degree.

link|flag
show 1 more comment
vote up 2 vote down

Languages I've used in Computer Science @ University of Waterloo in Canada:

  • Java or Scheme (first year onwards)
  • C and C++ (second year onwards)
  • SQL using DB2
  • MIPS assembly (Operating systems class)
  • OpenGL (upper year graphics classes)

Those are the only ones we had in class discussions/tutorials about.

Upper year classes with programming assignments (such as advanced algorithms) generally allow you to code in C, C++ or Java.

link|flag
vote up 2 vote down

Informatic Engineering, University of Buenos Aires

  • C / C++
  • Java
  • (optional) C#
  • (optional) Smalltalk
  • (optional) Python
  • Perl
  • Shell Script
  • MIPS
link|flag
show 2 more comments
vote up 2 vote down

I studied Information Engineering and Management at the University of Karlsruhe, Germany. IE+M is actually only 40% economics and 20% law, so only 40% CS as compared to a pure CS degree.

The standard language used for demonstrating programming in general, as well as OO was Java. In my case that was before Generics, so generic programming was demonstrated using Pizza, which is a superset of Java adding, among others, generic programming.

Functional programming, type inference, pattern matching, currying, partial application were demonstrated with Gofer, an early implementation of Haskell.

Scripting, dynamic typing, high-level programming were taught using Python.

Assembly programming was taught using MIPS assembler.

In one course we had to implement a simple CPU, then write some micro-ops in binary code, some assembler ops in microcode and some simple programs in assembly. However, this was all done on paper, there was no simulator for the CPU.

We had to write some simple programs in lambda calculus, and for a universal Turing machine, also solve some problems with Semi-Thue systems, Markov systems and µ-recursive functions. There were some minimal Turing-complete languages, like the WHILE language, which only has the WHILE-statement, the constant 0, the SUCCESSOR function and one single variable. There were also some not Turing-complete languages, like the FOR language (you can probably guess).

In our databases course, we used SQL and OQL, and also some XML query language (I don't remember if XQuery existed yet).

In some course we had to write XSLT.

In some of the courses I didn't take there is C and x86 assembly. Also, the Sather-K language is designed in Karlsruhe, so some profs use that. One chair has a cooperation with Microsoft, and used an early preview of C#.

We did some Prolog.

All in all, I think there was a good mix from pretty much every paradigm except language-oriented programming / metasyntactic abstraction (IOW: Lisp was missing).

link|flag
vote up 2 vote down

ENSIIE (one of the top French software engineering schools)

C - introduction to programming, system programming (Linux kernel)

Java - Object Oriented programming

PHP - Web programming

Ocaml - programming concepts

A bit of Prolog, a bit of Promula.

I think the school was careful to teach the concepts behind the language (hence the use of Ocaml, whose presence in the industry is homoeopathic at best). The courses on testing and the courses on compilers, which were not based on any programming languages, were probably as useful in making us good programmers as the other language courses.

link|flag
vote up 2 vote down

I think you are somewhat confusing the issue here.

I don't believe the actual language being used really matters. After all, its really only a bunch reserved words (syntax).

If you take language X away from developers and suddenly replace it with language Y, you will be surprised how well they adapt and how short the learning curve actually is. My point is that its not the language syntax that needs learning, its the actual concepts... design patters, object-oriented programming, design & architecture, best practices, etc, etc. You can learn any of those concepts with any (OO) language.

Since today, most companies will choose to use a successor to C/C++ that is fully OO, that doesn't leave most Universities with much choice:

a) Spend millions of dollars for Window OS (a must, and limited to x86 only), spend millions more for their .NET tools & platform. Ultimately limiting your students to ONE platform, or

b) Spend close to nothing on Java, reuse existing platforms (don't need only x86), also teach them about a full range of OS's (Linux/Unix/Mac/Windows) and architectures that are non-x86 based.

As for your second part:

churning out mediocre programmer after mediocre programmer.

That is pretty much unavoidable... regardless of school or programming language. The reason for that (IMHO) is that programming is an ART contrary to common belief that it is a science.

You can give 1000 people a brush, some paint and a canvas. Just like you can teach 1000 people how to code and give them a computer.

The end result is that although everyone painted on their canvas, only a few were a master-piece, some where visually appealing, but most were just simply awful. The same is for the code... a few were extremely efficient and well written, some where just standard, but most was just poor unreadable/unmaintainable code.

So why do we hire most of these 'awful' students then? Because there is just too much damn demand for software programmers! That simple! And companies are raising salaries by stealing them away from their competitors, thus enticing another round of students to join up.

Jeach!

link|flag
show 2 more comments
vote up 2 vote down

As Joel says "A sure sign of my descent into senility is bitchin' and moanin' about "kids these days," and how they won't or can't do anything hard any more." Bitchin' indeed.

It's as absurd as Montgomery Scott bitchin' that they don't teach the internal combustion engine at Starfleet Academy anymore. Surely you can align those dilithium crystals without knowing how to construct a rotary engine.

If code-monkey jobs didn't require a bachelor's degree, perhaps the degree program would retain higher standards and lean more towards continuing education than vocational training...but, it's what the market demands.

link|flag
vote up 2 vote down

Stanford

C++ in introductory courses CS106A, CS106B

C/C++ (low-level memory management), Lisp, Python in introductory course CS107

Java in hardcore object-oriented class CS108

C in most systems courses including Operating Systems, Networks, Compliers

C in most AI courses

C#, Javascript, Python, and others in specialty courses

link|flag
vote up 1 vote down

Some University of Arizona computer science courses:

  • Intro to Computer Science: Java
  • Intro to Object Oriented Programming: Java
  • Computer Architecture and Assembly Lang: MIPS
  • Programming and Unix: C
  • Comparative Programming Languages: Haskell, Prolog, and Ruby
  • Starting summer of '09: C++ and Python.

For further information, schedule of classes (fall and spring offer different courses)

Java is the introductory language, but after Intro to Object Oriented Programming, it doesn't come up very often. There are about 3-4 CS courses that require Java in our curriculum. Many upper division courses require C.

link|flag
vote up 1 vote down

I went to the University of Toledo.

We learned the basics of Imperative programing using C++. The next course intorduced us to Object Oriented programming still using C++ (I believe it is currently taught in Java). After that it didn't matter what language we used.

The professors I had at UT focused on understanding the underlying paradigms and not so much the language you used to implement a solution. Once you understand the underlying principles, it doesn't matter what language you use: just pick up a hand reference to see if you should end your statement with a semi-colon or not.

Which language(s) you know doesn't impact how good of a programmer you are. Having exposure to the various paradigms (object-oriented, functional, imperative, declarative, logic,...) will certainly help round out your tool set, but that won't make you a great programmer. What I'm trying to say is that a good CS program doesn't teach "languages", it teaches "concepts" and let you use whatever tool needed to demonstrate your understanding of those concepts.

Languages I used at Toledo: - LISP - C/C++ - Assembly - Java - Python - SQL - Ada - VSE (I'm not sure if anyone that didn't have Dr. Ledgard knows about that one) - C# - HTML / CSS / XML / JavaScript - Visual Basic - The one we made up in our compiler design course.

link|flag
show 2 more comments
vote up 1 vote down

I imagine that the programming language that universities would teach would be the programming language that you write the same programming language in.

Pedagogically speaking, I also imagine that universities would teach how to learn how to learn, and teach how to teach how to learn how to learn, and teach how to implement learning processes as mathematical functions.

link|flag
show 3 more comments
vote up 1 vote down

University of Oslo (Norway):

The first semester one is taught Python if one is going to have a lot of math courses later in the grade if not one gets to learn Java.

All courses after that uses laguages, but do not use much time (or none) learning the language it self. One can then take classes that use Java, C, C++, Python, Common Lisp, Prolog, ML, ASM and matlab.

link|flag
vote up 1 vote down

Partial list of universities teaching Haskell for a significant number of courses:

  1. University of Edinburgh
  2. Oxford University
  3. Chalmers University of Technology
  4. University of New South Wales
  5. Australian National University
  6. Portland State
  7. University of Pennsylvania
  8. University of Kansas

Longer list at:

http://haskell.org/haskellwiki/Haskell_in_education#Haskell_as_a_first_language (probably well out of date though)

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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