vote up 17 vote down star
14

Possible Duplicate:
Which language should students start with?

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

closed as exact duplicate by gnovice, Bill the Lizard Feb 26 at 21:41

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question.

76 Answers

1 2 3
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 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 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

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

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

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

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

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

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

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

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

Hitting this one very late, but you really shouldn't be focusing on teaching a language at all; you should focus on programming.

Variables, conditionals, loops, function calls, recursion.

Probably classes and OOP, followed with linked lists.

Possibly memory management and garbage collection, although I think that should be skipped for non-CS majors. Same with pointer arithmetic.

If they learn the concepts, all languages will work for them. If they learn the implementation and focus on the language, their later learning will be harder.

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

If you look at current spectrum of languages the most innovative and evolved+evolving language which does not have a big initial learner cost has got to be C#.

C# is 'the' language I now wish, I was taught in my school.

Update: C# is innovative in that it makes static typing a first class objective, then goes on to allow dyanamic typing (C# 4.0), extension methods, anonymous typing and whole lot of C# 3.0 goodies that make it more closer to dynamic languages.

Because .Net is such a capable and huge platform, starting off with C# might be just what one needs in school to begin with.

Also I don't know too much about Python, but IronPython on DLR would be promising.

Ofcourse this is my opinion. Others may think differently.

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

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

link|flag
1 2 3

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