vote up 17 vote down star
13

If you did the CS (or equivalent) track in college, what was the first computer language they taught you in the intro course at the start of the degree plan?

Also, what computer language do you think SHOULD be the first one you teach college students as an introduction to allow them to get their feet wet without overwhelming them, but also prepare them properly to handle more advanced concepts to come later in their education/careers? Finally, what is it about the language you suggest that makes it ideal in this environment?

flag
1  
This question is pretty much a duplicate (as is pointed out in one of the answers below). Downvoted. – Onorio Catenacci Nov 21 '08 at 19:14
1  
Vote to close: Duplicate of stackoverflow.com/questions/146840/… – Brian Aug 21 at 18:10
show 1 more comment

76 Answers

1 2 3 next
vote up 39 vote down

Don't focus on immediate commercial usability for a first programming language. Focus on a language that allows for quickly and clearly learning the underlying principles of programming. This way you will have a solid base for (self) learning the different programming languages and paradigms you will encounter throughout your entire career!

Our first programming language in college was a functional language called Scheme. Some strong points of Scheme as a first language :

  • very simple syntax, only basic data types and control structures : don't waste time on learning syntax and constructs.
  • use of recursion for loops : directly learn a fundamental construct that people sometimes find difficult to understand afterwards
  • a Scheme program is a valid Scheme data structure itself : this opens up writing a meta-circular Scheme interpreter (Scheme interpreter written in Scheme)
link|flag
1  
We also started with SCHEME. Although I like the language and it was fun to me, most students couldn't really follow and understand the concepts. The problem is, they never saw the "big picture" or how to real-life use this obscure stuff.. It was quite frustrating for many and not a good start... – ypnos Feb 11 at 1:54
1  
When you already have some Java/C++/Pascal/... experience Scheme, or any other functional language, can indeed require some slight mind bending at first. But I find it difficult to believe that, with a little bit of motivation, this hurdle can not easily be overcome. – Ruben Feb 11 at 19:58
1  
@ypnos: Can you point to any code that demonstrates real-life use of Scheme? -- I can't, though I've used a proprietary version of it called Monk for HL7 message translation for several years. – Scott Hoffman Feb 14 at 8:31
1  
My undergrad school also taught Scheme in CS 1, and I thought it was a really bad idea. People with programming experience, including myself, found it interesting because they hadn't seen functional programming before. People new to programming really struggled. We had a good lecturer, but I think recursion is just fundamentally harder to grasp than most concepts in an imperative language. Many people I knew were scared of programming after that class, even though they needed those skills in their other science and engineering majors. I heard the school is switching to Python now for CS 1. – Jay Conrod Aug 1 at 16:59
show 5 more comments
vote up 34 vote down

I'd like to say C since it is the origin most languages are based on today (or even have their tools coded in it - interpreter, compiler etc). It also has one of the best books tied to its name from Kernighan and Ritchie.

These days with all of the OO languages emerging it seems OO is the way to go, and it will be for a long while. Going with C or Java will benefit a class either way. The language itself isn't the most important factor, it's the concepts taught with it which can be applied in other languages.

link|flag
1  
If it is to get concepts that apply in other languages, wouldn't C be a bad idea. There is a lot of overhead that many languages don't have. Sure it is good to know to be a better programmer, but is that what you want in an intro class? – he_the_great Nov 21 '08 at 16:28
2  
What do you mean by overhead? One of the major features of C is that it is a stripped down language. It stood out to me when I first learned it in 1980 because I/O wasn't built-in and the I/O library was fully replaceable (try that in Pascal). – plinth Nov 21 '08 at 19:27
1  
Simple programs can be written in C without using pointers at all. Languages like Java pose problems because of the amount of built in features it has provides a negative incentive for the student to do it themselves. Building your own string and seeing what it means to concatenate is useful. – Erick Nov 25 '08 at 19:23
1  
C is simple and complex. Just a matter of what you will do with it. A excellent CS introdutory language. – Seiti Nov 25 '08 at 19:36
show 2 more comments
vote up 30 vote down

I don't think it matters what the first language is. On the other hand, I think it is very important to expose students early on to different programming paradigms, such as imperative, functional, object-oriented, and logical, before their brains freeze into a single way of thinking about programming.

I learned BASIC first on my own. In college I learned data structures in C, then I took a course in programming language concepts in Scheme, then a course called Programming Paradigms, which used C++ for OO and Prolog for logical programming. Then a course in x86 Assembly. I think this was a pretty good mix. Specifically, doing data structures in C first let me appreciate the advantages of OO.

link|flag
2  
Exactly. The language we use shapes the way we think. – Svante Nov 21 '08 at 17:26
2  
On the other hand, with Java you can start doing graphics and GUI much faster than with C++. The important thing, as I said, is to get exposure to other languages early on. If you come out of college knowing nothing but Java, then you are in trouble. – Dima Nov 24 '08 at 17:12
show 2 more comments
vote up 23 vote down

Just to stir the pot up I'm going to say ANSI C would be my first choice.

Yes, it is not Object Oriented. Why should it be taught first? Developers are getting lazy. High level languages and constructs are eroding the low level knowledge and understanding of logic. I completely agree that OO is a prevalent feature in the newer languages, but for a new student I wholeheartedly believe we should go back to the basics.

Teach pointers. Teach memory management. Teach them to never rely on garbage collection alone, and to remember to close streams, files, connections.

So many developers these days rely on their language of choice to do their work for them. Sure, that works, but what do you learn from it?

Having been taught ANSI C, and later Java, I believe our curriculum had the best of both worlds. It really teaches you to respect proper code, and to do away with the zealotry of new concepts and methodology.

That said, I do believe that as a developer matures they need to learn all there is to learn, including patterns, unit testing, etc. I just don't think OO is a 101 concept, in fact, it should be class of its own to give a proper medium to teach it in. So many developers think they know OO, myself included, but they really haven't even scratched the surface.

Just an opinion, and certainly not a mandate. To each their own. :)

link|flag
vote up 22 vote down

Here at Berkeley we use Scheme, and like a few other people have said, I think it's an excellent introductory language.

1) It has an absurdly simple syntax.

2) The text we use, The Structure and Interpretation of Computer Programs, is an excellent introduction to the subject.

3) It's multi-paradigm. Scheme is much better equipped to teach, say, functional programming, than C or Java.

4) Like somebody else mentioned, every Scheme program is a valid scheme data structure. This allows students to write their own Scheme interpreters without having to deal with writing an advanced parser

5) Everybody ought to leave college with a healthy respect for Lisp.

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

This question was asked here, which also pointed to it being asked here, and at least a third time it was asked here.

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

None specifically.

It should be as language agnostic as possible.

link|flag
3  
For later courses this is true. For introduction, it is necessary to teach in some language to make sure that all the students have a grasp of how to program in the first place. You can't expect the majority of students to be able to figure everything out on their own. – tloach Nov 21 '08 at 16:05
1  
Edit = delete + resubmit – Unsliced Nov 21 '08 at 16:18
show 4 more comments
vote up 6 vote down

When I was in college, it was Pascal.

Now it's Java. And I think I agree with this approach, especially since my alma mater teaches Python in the follow up course.

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

I'd still have to recommend Pascal as the very first. Although, BASIC does let people with no computer background get up and running a little quicker.

link|flag
1  
Basic introduces too many thinking blocks. – Svante Nov 21 '08 at 17:34
1  
Hey, give the language a little respect. It's "BASIC", NOT "Basic". – Brian Knoblauch Nov 21 '08 at 20:02
show 1 more comment
vote up 5 vote down

I was taught using C++ but wish it had been Python.

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

I was taught C++ and it gave me a very good grounding for learning other languages. I have met way too many programmers who have learned in Java, C#, VB, etc and have no idea what a pointer is. If you jump straight into a managed language you should at least be made aware of issues you had to contend with in unmanaged languages.

You need practical experience of an unmanaged language to put everything into context. I also feel that you need practical experience of non OO languages for the same beneficial reasons. You don't always appreciate what you've got until you've been made to live without it...

I also remember doing the classic "implement your own standard container" project where we had to make a double linked list. :) Those were the good old days. I love learning, and my early programming years were some of my most fun memories :)

link|flag
1  
Add to that that everyone should have to implement things that modern OS's do for you: memory management, file systems, threading, etc. at some point in an undergrad career. You shouldn't get a degree without being able to understand how the low-level stuff works. – tloach Nov 21 '08 at 19:23
vote up 4 vote down

I started in C++. My alma marta has now moved to Java, which seems to be the current trend. While both are well suited to teaching basics, I think that can be said for almost all programming languages.

However in C++, you gain a better understand of low level data structures and concepts like passing by value versus reference. It certainly isn't impossible to teach these concepts in Java, but I think C++'s approach of allowing you to shoot yourself in the foot is advantageous for students. I learned alot by doing things incorrectly, and then correcting my code.

link|flag
vote up 4 vote down

Whatever language is used, it needs to be a language in which the "core" concepts of computer science -- particularly algorithms and data structures -- can be tackled with a minimum of fuss. Ideally, this is a language with a minimum of features (or, at least, a language in which intermediate and advanced features need not be utilized by beginners) and a simple syntax.

I've TA'ed intro CS courses before that used Java. Java's a nice language with a great library and some decently nice features, but I found it a bad choice for intro courses. Java's syntax is inelegant and overly verbose, so even doing simple things often takes several lines of code. Moreover, you have to cover a lot of intermediate topics to do anything in the language, or at least do some handwaving in the beginning. For example, since everything in Java happens in a class, you already have to touch on some OOP stuff just to get started. You can gloss over a few questions ("What's a main() method" "What's a class?") at first, but eventually you have to deal with them. All of this subtracts from time spent on actually learning CS concepts.

I'd recommend Python or Scheme as a language for an intro course. Scheme has a simple syntax and allows you to easily address CS concepts with a minimum of fuss; Python allows the same approach, but has a slightly less awkward syntax (although I personally love the regularity of Scheme's syntax) and a better standard library. Python also has a nice REPL that can greatly aid in learning.

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

Even though I don't use it much, I think Python is a good language for CS 101. It's a clean, object oriented, imperative language; it's got well-designed standard libraries; everything you need to introduce people to programming.

I'd leave C and assembly for CS 102. People who already have a handle on the programming thing can skip the Python course; it's important for programmers to learn what goes on down at the bottom, but basic programming concepts are a prerequisite to that -- you don't want to try to teach them both at once.

Then, functional languages (i.e., one Lisp-style and one ML-style) and intermediate computer science concepts could constitute CS 103...

link|flag
vote up 3 vote down

We were taught Pascal, but we were expected to already know C for the Operating Systems course. Luckily, I taught myself C & Pascal before starting college.

link|flag
vote up 3 vote down

Ruby would be a nice language to start coding in.

link|flag
1  
You don't have to teach a beginner all the features of the language. There's no reason that "monkey patching" would need to be taught -- you can use Ruby perfectly fine without the feature. – mipadi Nov 21 '08 at 17:22
1  
Really? I didn't get some Ruby-isms at first, but now I find it much easier to read than I ever found any form of BASIC. – JasonTrue Jan 8 at 1:47
show 3 more comments
vote up 3 vote down

I started with Fortran. Using punched cards. In 1966.

Today, I'd prefer starting in C or C++. These languages work well for teaching algorithms and data structures. C++ also is a good choice to teach basic concepts of object oriented programming. Once you know them, learning a lot of other languages such as C#, Java, etc.. is a lot simpler.

Languages such as Lisp, Haskell, or F# should be used to teach advanced programming only. Functional programming is a little too intimidating for beginning programmers.

To teach scripting languages, use Python. For total beginners, Python is a lot easier to learn than many of the alternatives.

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

I took two such courses and they taught Java and C++.

I'd prefer C to C++ because it has a slightly easier syntax and you don't have to wrestle with the compiler. People taking the C++ course spent most of their time on resolving linker issues with code the compiler compiled without any warnings. Thinking about this, I come to the conclusion that Java might be the better choice, after all.

While I do agree with @Marko, I have to point out that such a course would be useless without teaching a particular programming language in parallel; people need the hands-on approach.

link|flag
vote up 2 vote down

I'm finishing up my degree now and all core courses were in c++. I'm glad they were as it prepared me for what most lanugages could throw at me and made learning java, and c# very easy... As for overwhelming them goes - well maybe the language should and weed out the students that don't really want to learn... ps I have a friend that learned on Java and is now using c++ at work and wished he'd learned it in school!

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

I would be very interested to see two very different compatible languages used together, say Java and Clojure. If you want to emphasize that algorithms don't change between general-purpose languages, and yet different languages are appropriate for different jobs, that would be a good way to start.

link|flag
vote up 2 vote down

I recommend Java or C#. In an introductory course, students need a language where they can focus on core concepts and problem solving, rather than syntax.

As an undergrad in engineering, all engineering students took an introductory programming course which used Pascal

As I was a grad student, I was a teaching assistant for Engineers who were learning C++. I think it was a horrible burden to inflict on poor unsuspecting engineering students, many of whom were taking degrees in mechanical engineering, civil engineering and the like. As a teaching assistant, I observed that about 10% of the students 'got it' right away and breezed through the course, and about 10% of the students still had trouble understanding the difference between a variable declaration and a function declaration halfway through the course. I don't think they got a lot out of the course.

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

They taught Java in my intro to computer science class. I never enjoyed java, and once I learned C++ I felt that learning java in the intro class was a joke.

I would whole-heartily suggest C++ as an intro programing language, at least you can write a program from scratch on day 2 of the class. With Java, the class was mostly altering pre-written code to fit the lab exercises. Terrible idea!

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

None specifically but as many as possible, ideally with as different a set of characteristics as possible. It almost doesn't matter whether it's C++, Haskell, D, F#, C, C#, Ruby, Perl, PHP, BASIC or whatever - do them all.

Understand the concepts and the languages will follow.

Are you learning languages in university to understand Computer Science or to get a job? C++ is a great place to start, but C# or JAVA would be useful to get a real life programming job.

So in a university, C++ and YACC.

link|flag
vote up 2 vote down

I was taught C++, Assembly, and Java. One class taught LISP.

I actually think this was a really good mix in terms of curriculum. I expect in the coming years you will see Ruby make inroads where Pascal, LISP, and Ada came in. I'd also love to see F# make an appearance in CS curriculum.

I think its important that C, C++, and Assembly stay in the curriculum. A lot of programmers don't have a fundamental understanding of performance/memory consumption because of being spoiled by Java and C#. At least one course should cover unmanaged code IMO.

link|flag
vote up 2 vote down

I'm currently taking an introductory course to programming, and we use Java. Personally i think its a joke, going right at OOP without the basics is just stupid. Sure, you get a running start but in the long run it would be best to start with C.

link|flag
vote up 2 vote down

I would avoid C and C++ and any other language with manual memory management or languages which require pointers for a lot of data structures. I'd focus on teaching the concepts of programmer first and I think having to deal with memory management and pointers hinders this. Yes, I would aim to introduce both of these, but not until the student is pretty good at programming in a garbage collected pointer-free language. Also, C++ is far from a beginner language. There are too many things left undefined or simply hard to understand that would only confuse the student programmer, or worse: give them bad habits.

I would also avoid Java for a number of reasons. Firstly, a simple hello world program in Java introduces too many features which need to be ignored (classes, public, static, void, String, arguments, System package etc) which can be a little confusing and secondly, while I find OO to be both useful and beginner friendly, I do not believe that forcing everything to be OO is a good idea, especially if all you are trying to do is teach simple statements.

I quite like the simplicity and power of Scheme and personally, I quite like the syntax too, however, I probably wouldn't use Scheme to teach beginners, since I think it's important to teach a somewhat mainstream language to encourage the students to build programs for themselves and others in their own time.

Having said all that, I would probably choose Python because:

  • It has an easy to understand (and IMHO clean) syntax
  • It has an interactive interpreter, an excellent learning tool!
  • Simple programs are simple, complex programs are possible (and IMHO often simpler than in C++ or Java)
  • It supports OO and some functional programming techniques
  • Its a real world programming language which is in common (common enough) use
  • Theres a large online community, wealth of articles, tutorials, books etc

After they have learnt basic programming, algorithms, OO, basics of functional programming, data structures and generally have a good enough grasp of programming to complete reasonably large assignments on their own, I'd probably introduce them to C or C++, perhaps allowing them to write Python extensions, though probably not.

I would also introduce them to assembly language. Preferably concurrently (in a computer architecture course) alongside C/C++ or even alongside Python.

link|flag
vote up 2 vote down

Djikstra wrote an excellent article called "On the cruelty of really teaching computing science " in which he argues that introductory courses should teach a language for which no implementation exists (but please read the paper as that's by far not the only interesting point and Djikstra presents those points them much better than I could ever present them).

It seems to boils down to "teach a low-level language so they learn the gritty details" vs. "learn a high-level language so they learn the pure concepts" (*). While I think both are equally valid goals for a CS degree, I have a feeling that it's easier to learn the gritty details once you wrapped your head around the pure concepts than doing it the other way around.

(*) plus the usual which-lanuage-is-the-best within both of these camps

link|flag
vote up 1 vote down

We used ADA. It was a pretty simple language, which helped. The best part was that it was already pretty pseudocode-like, so we were really taught the concept a lot more than the method.

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

This might be an odd suggestion, but it seems like shell scripting would introduce students to some programming concepts without overwhelming, while also giving them a very valuable tool.

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

I learned C++. I think choice of starting language is dependent on whether the person wants to be an academic programmer or a business programmer. Starting with C++ is a nice idea in that it helps give programmers an understanding of pointers. A lot of that stuff may be hidden behind the scenes, but it's a good idea for users of APIs and the like to know about things like references and pointers. That said, C++ might be easier to learn after first learning Python.

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.