vote up 17 vote down star
14

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

77 Answers

prev 1 2 3
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
2  
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 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 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 0 vote down

I would suggest C#.

Young potential programmers aren't interested in making console applications, which is pretty much all they'd make for a while if they started with Python or C++. C# makes it easier to write "cool" apps right away. I think it's important to get students interested in programming before trying to teach them the drier fundamentals.

link|flag
1  
Why would a program be more cool just because it has a GUI? – kigurai Nov 30 '08 at 12:31
show 1 more comment
vote up -1 vote down

Personally I think that as long as its an OO language, then that would suffice. However, I'm a big .NET advocate and so I would say C#. That was my first language taught and that was in 2003!

link|flag
show 2 more comments
vote up 35 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 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 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 '09 at 1:47
show 3 more comments
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 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 5 vote down

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

link|flag
show 1 more comment
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 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 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 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 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
prev 1 2 3

Your Answer

Get an OpenID
or

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