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 0 vote down

C++

It has objects, pointers, templates and forces one to think about memory management. After that one can move to any language and hopefully become language agnostic.

In my CS studies, the only taught language was C++ and on more advanced classes it was expected that you can do an assignment in Java, Python, SmallTalk, PHP etc. What ever language fits the course subject.

I believe teaching the basics of programming (data structures etc.) with C++ is like how art students are taught to draw naked people with a stick of coal. The skill itself is not marketable but the deeper understanding it gives is important.

link|flag
vote up 0 vote down

Functional languages are inherently different from procedural languages, and I think both should be taught at an early phase. However, most computer languages in use currently are procedural rather than functional, so I don't know if teaching a functional language as a first language is really a service or not. It probably doesn't matter as long as the person gets exposed to both at an early phase.

Because of the rarity of functional languages, perhaps the advocates of this approach feel that this way everyone will get at least some exposure to a functional language.

link|flag
vote up 0 vote down

I didn't see my answer here, but my thinking is that you should either be taught a very high-level, but usable language like Python first, or you should learn the "portable assembly language" known as C.

If it's to weed-out folks who can't think in multiple levels of abstraction simultaneously, and won't ever "get" pointers, then go for C.

If it's to introduce people to programming concepts, and make sure it's really really hard to shoot yourself in the foot, then use Python.

I don't know which is the better route - but I am convinced that starting with an "intermediate" language like Java is bad because sometimes the language does stuff for you, and sometimes it doesn't - it depends on the particular library you're using at the time, and what you're doing with it.

Being able to sit down and just Start Doing Something is a blast - it's what I loved about BASIC way back when I started.

On the other hand, if you're going to go past CS 101 into a full-fledged CS degree, you're going to need to know the deeper issues, and C (or C++) is the perfect tool for that, in my mind.

link|flag
vote up 0 vote down

Really doesn't matter what specific language you start with, what matters is learning the process required to write programs. The logic involved. This is definetly a "walk before you run" scenario. Learn how to read code and you will in time become a better coder. Whether you use C, C++, C#, VB has no real bearing on how good a programer you will be. It's all about the syntax.

link|flag
vote up 0 vote down

Python - because it's an easy-to-learn language with little syntactic overhead, but at the same time it is very powerful, relevant, and useful with tons of libraries. It is also a terrific multi-paradigm language.

I can also understand the arguments for C or Lisp. Java has way too much mental overhead and is way too "enterprisey" for an intro programming course.

link|flag
vote up 0 vote down

I'd say C to learn about pointers. Even thought it's not used a lot by most of programmers, it's a solid base that everyone should have.

Then move on to C++ or Java to get OOP notions.

link|flag
vote up 0 vote down

If it's not specifically chosen programmers but general students who might find interest in programming, maybe Small Basic would be a neat starting point. The IDE is very simple to use so you can get started without much overhead.

link|flag
vote up 0 vote down

Java is used for the AP Computer Science curriculum in high schools. It's a good approach to OOP and a good place to start. The difficulty of creating GUI applications is its major weakness. Many high school students are visual learners and want to SEE something that they made other than text.

link|flag
vote up 0 vote down

I thinks it's important to start with something where it's easy to get good results very quickly - Pascal is easy to understand but you won't see anyone who would build up a real-world programm with that - maybe Python, Ruby or Java are good things to get started... within 5th grade we learned Logo which was quite nice too ;)

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

Pai H. Chou would recommend Python: http://www.ece.uci.edu/~chou/py02/python.html

On the successful side of the story, most students appeared receptive to Python, and most of the 35-40 students from each class were able to successfully complete the programming assignments without much difficulty. At least one student became a Python fan [...]

Not all students had a smooth experience with Python, though [...] [problem A] [...] [problem B, leading up to:] This was not really a problem with Python, and in fact it is motivating us to introduce Python earlier in the curriculum.

My own take:

There's very little friction or overhead. No public static void main, just print "hello, world". There's read syntax for your most common data structures (lists, sets, hash maps), and you can easily represent more complex data structures as primitives which have read syntax (see the link). Also, you can teach both imperative, object-oriented and functional programming with python (though it may not excel at the latter), so it's very versatile.

It's also a very handy tool to know for your day-to-day programming tasks where shell scripts are insufficient.

link|flag
vote up 0 vote down

I learned Java in my high school Computer Science course, and I think nicely introduced the nature and structure of programming. Still, when I think back to how I taught myself basic Perl in seventh grade, and how I relished the immediate ability to do incredible things, it makes me wish that more schools used Perl, Python, or Ruby when first exposing students to programming. Sometimes inspiration is the most important component of education.

link|flag
vote up 0 vote down

First language they taught me in uni = Java

First language they taught me in highschool was technically VB, but it was really just "copy this printout and run it" so I didn't learn a thing. Then they taught me C++

I think C or C++ is the better choice. It's probably better to work from a lower level language to a higher language if your students can handle it... will make them really appreciate everything the language does for them and give them a better understanding of how it all works behind the scenes. Plus, there are way too many Java-only students in my university.

link|flag
vote up 0 vote down

I had Fortran for my introductory language, as late as 1979. Today, I think Java would be a good language, because you can learn algorithms, data structures, and throw in a little OO near the end. Brian

link|flag
vote up 1 vote down

I'd go with Pascal. Effectively the same as C, but with less syntactic gotcha's, which will ensure a higher percentage of the time will be spent on the assignment, avoiding people not completing assignments because of problems introduced due to syntax.

For math or CS majors, Modula2 would even be better (they ought to be able to manage the stronger typing conceptually), but I don't know if there is a decent enough compiler nowadays.

I'd avoid object orientation in a first class. It confuses the hell out of them, partially also because an initial program requires more principles to explained for the initial program (why is that "xxx" there?... euh, you just have to take that granted for now), partially because the program is often fragmented more, and harder to follow for total programming virgins. (and those set the pace!)

Also pick your compiler/IDE on simplificity. If you must do GUI programs, avoid systems that require more complex concepts as separate listener creation etc.

It can be worthwhile to cut down an open source IDE and runtime library so only the relevant (simplified) libraries are exposed. This will also avoid students playing hours in class with the designer and dolling up the interface unnecessarily (making verifying the assignments harder)

link|flag
vote up 0 vote down

The one that I was started with - Java.

The one that they use now is Java and/or Python.

Before I tell you my choice, I'll tell you my observations. So a bunch of these students, who only did Java with OOP, they did ok in their first 2 years. Usually out of laziness and requirements, the first 3rd year course they take would be Operating Systems 1. And they smack themselves right into a brick wall because OS 1 requires them to use C calls, and they understand NOTHING about pointers, or C-style strings, or stack/heap space, or stack frames.

I recall helping this poor girl debugging his assignment, which was a simplistic multithreaded app (that I've also written whne I took OS1). She was having problems because if the input string was 16 character or less, the program "ran fine", but anything more, it would give this mysterious "Segmentation Fault". It should be obvious to many here that someone's probably writing a char* pointing to nowhere...

OOP isn't too hard of a concept to understand. I started programming before I've heard of this OOP stuff, and mentally it wasn't hard. As an observer, I noticed that people tend to have problems when they go from a language where everything's a reference to a language that has pointers.

Or maybe that's just the failing of the education system where they can't seem to be able to make people understand it.

I'd start them on C, or C++, and I'm quite sadistic, so I'd want them to have an assembly primer that explained stack frames, and linking. I had an incredible lecturer who actually taught us about that, but not many actually understood it.

link|flag
vote up 0 vote down

Honestly, it shouldn't matter. I think the root of this question is "how can you teach fundamental Computer Science concepts to first year students". Languages come and go (with the exception of COBOL, har har), but it is the concepts behind the languages that matters most.

Using this definition, the question is "What language best illustrates fundamental Computer Science concepts?". Personally I've found that procedural languages, such as C or ADA, to work the best. Using an Object-Oriented or Functional language forces the students to learn the concepts of Computer Science at the same time as the concepts of the given language (be it Object-Orientation or what have you).

I've found the simplicity of procedural languages very helpful when teaching at an introductory level.

link|flag
vote up 0 vote down

It was Pascal (UCB Pascal) and I just missed having to do Algol on punched cards (I started college in 1981).

It was a good foundation and worked for compiler writing and some other classes. But I quickly learned C-Shell and C and put those to work.

After I learned C and C-Shell, everything I did from then on out was built on these two.

I agree with those around here who make the case that C should be the foundation for everyone going forward.

link|flag
vote up 0 vote down

Mine was Pascal.

More important than a first language is that students should learn the programming languages by themselves.

IMHO CS 101 should be tought in pseudocode and mathematical specs.

link|flag
vote up 0 vote down

I went into university having learned BASIC in high school. In my first semester, I learned a language called PL/1 (an IBM creation that was supposed to combine the best of FORTRAN and COBOL into one language), because this was the language that most of the first year classes would be using. Simultaneously, I was learning Pascal for another one of my classes. (You try picking up two similar but different languages at the same time sometime. :-) ) In my second semester, I got bold and learned APL, because of how easily you could get it to do things with arrays. (This was back in the days before OO languages came along. And I never even heard of C until I began using it in 3rd year. I did some assembler in a 2nd year hardware course and had to learn LISP for a 3rd year course.)

Looking back on all of this and including the languages that I've picked up since (C++, Python), I would have to say that first year students should be taught C as their first language so that they can use it to learn the basic concepts (pointers, data structures, etc.) and then learn an OO language such as Python or C# that enforces good OO practices. (In C++, it's too easy to fall back on procedural programming techniques.) Also, students should have to learn at a language from at least one or two different paradigms than that of the more mainstream languages (APL and LISP come to mind right away) so as to keep them from getting locked into just one set of concepts. (For example, when working with arrays in C/C++, quite often, I try to think of how I would do it in APL and, IMHO, often end up with a better implementation as a result.)

Someone else said in their post that students should be taught languages such as Java and other mainstream languages so they can work in the real world. (In other words, they should be taught how to do what's done in the real world.) That's not the job of a university; that's what tech schools, trade schools, etc. are for. A university's job is to teach students the whys and wherefors of their chosen field so that they are better prepared to learn the how-tos for themselves. (I once heard a saying that states that a {substitute your non-university post secondary type of school here} teaches you how to do it, whereas a university teaches you how to learn how to do it.) And with the fast pace of change in today's high tech world, a person who can easily cope with those changes on their own or with minimal tutelage is a lot more valuable in the long run than someone who always has to go back to school to learn a new version of the same stuff they learned before.

link|flag
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 0 vote down

We started with the Oberon language at our university.

I think it is best to start with C++ and provide only the basics,
this makes it easier to extend the knowledge later on without having to switch language.

Once C++ is known it isn't hard to learn a new language.
If you are good you can learn the basics of a new language in some hours.

Starting with C or a simple language with limited features looks like a bad idea.
(This will make more advanced languages look more hard)

link|flag
vote up 0 vote down

At my university, our Intro to Programming class is taught in Java. It used to be in C++. The reason that it was changed to Java was because it is a class that is meant not only for CS majors. It's also there for Engineers, who need to take it. The other course that non-CS students need to take is also taught in Java. I believe this was done to simplify the curriculum for students who probably won't ever use the stuff ever again, and to get rid of pointers. Teach the fundamentals, and some java specific stuff, and the intro students are fairly well set.

The first real CS class goes over C a little bit, and dives into MIPS R2000.

I never took the intro course at college though, and my first language was QBASIC back in High school, followed by Visual Basic (not .net), C++, then Java. It worked pretty well for me.

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

As long as the student learns what a pointer is and how to approach problems mathematically the language doesn't matter much. Those two fundamentals are very important basic steps. Even in languages where pointers are GC'ed you still need to understand them.

Of course you should learn control statements and loops, but that's in almost every language.

link|flag
vote up -3 vote down

None. They should have learned to program in high school.

link|flag
vote up 0 vote down

If they're taking their first programming class and they do not have previous experience, then they should quickly jump in and see if they can handle it. A lot of people left my program because it didn't click. Luckily we were taught Java in our first two terms so they had plenty of time to switch majors.

link|flag
vote up 1 vote down

First, two very important questions:

Is Computer Science the right course of study for prospective software developers?

I believe the answer to this question to be no.

I'm not convinced that an "engineering" discipline is the right track either, but certainly most CS grads are ill-prepared for industry and the time they spend in college is largely spent learning the wrong things.

Which is better for prospective software developers: a college degree or a trade-school degree?

Personally, I believe that a college education is far more worthwhile, even though colleges are ill-serving prospective developers (hands on experience at any level would be vastly superior to any sort of trade-school type developer degree).

Ironically, people are working very hard to make the CS degree even less worthwhile for developers. Rather than create a new course of study which educated students in software development fundamentals and theory (to be distinguished from computer science theory), colleges have been working very hard to lower their graduation standards and morph their programs into little more than trade-schools which turn out blub-programmers.

Finally, the most important question:

When fresh out of college, is it better to know a "marketable" language or to know the fundamentals well?

I'd say knowing the fundamentals will almost always serve you better long term. Though there's still the bootstrapping problem. You almost certainly want to have marketable skills right out of college. However, there's a question of whether it makes sense for a college degree program to impose upon all of its students a particular marketable skill. I would argue that this is the responsibility of the student and not the responsibility of the college, except in the case of a trade-school.

This leads to the natural conclusion that the programming languages taught in colleges should be those which best facilitated understanding fundamentals of computer science or software development, rather than marketability or practicality. I propose this set of languages:

  • Assembly (for any processor, or even pseudo-assembly for a virtual processor)
  • Lisp (or some other simple, functional language)
  • Any good object oriented language (even smalltalk)
link|flag
vote up 0 vote down

Whatever the first language is - Scheme, C, Java, whatever, they're all fine choices - there should be a different one used for the second course, of a different paradigm. It's vital that students learn early that learning a new language is NOT that big of a deal, and that they should do it as often as possible. And being exposed to different paradigms will make them better programmers

link|flag
vote up 0 vote down

We started out with C++ and stuck with that for the first few programming classes in the CS track. We later learned Perl in a required class, but only worked with it briefly. The class that teaches you Java is not required, so you can get your B.S. without ever having touched Java. I took a web programming class and we worked with JSP, PHP, Javascript, etc. I think this semester they introduced Ruby on Rails to that class.

I think starting with C++ was fine since it goes along with learning about the hardware and memory, but I hate writing in it. I think it should be required to touch on Java or another fully object oriented language before graduating.

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
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.