vote up 18 vote down star
5

Which language should students, who are looking to become professional programmers, start with?

Should they start with a purely functional, procedural, object oriented or with a purely algorithmic approach?

I recently found out that many schools have dropped C++ for Java and VB as an initiation language.

Since these languages live in managed environments. Will students lose sight of important concepts such as resource management, quality and speed?

I started with C++ and think that it is the basis of my current habits and concerns.

The Pulse:

  • C
  • C++
  • Lisp
  • Java
  • Python
flag

34 Answers

prev 1 2
vote up 1 vote down

I suggest Python. It's quick, presents crucial ideas in simple ways, and is fairly good at being multi-paradigm.

Multi-paradigm in particular could be important, as it gives a good platform to explore different programming styles and may be beneficial in helping the students decide what directions they want to go next, if not just decide to stay with Python.

link|flag
vote up 3 vote down

I would start with the How to Design Programs, which happens to be in Scheme, because it is the result of at least ten years' work in teaching beginning students to program. I would then move on to C because there is nothing like C for developing a real understanding of what the machine is doing. With some Scheme and some C under your belt you'll be ready to tackle just about anything.

link|flag
vote up 0 vote down

I don't think a language matters really. As long as you get the principles and practices. I can't tell you how many Java programmers I meet who can't write code in any other language. I mean com'on - a variable is a variable. A programmer should be able to hack his way through anything really. Sure, you need docs at the ready, but with compiles today and syntax checking you really just need to know the environment (framework).

But if I had to pick, probably Python. It's easy to pick up. Takes time to master. And it's fun. Plus an outstanding community. My second choice would be c#. But learn the fundamentals with Python first. Whatever you do don't use Java to learn how to code. God. ;)

link|flag
vote up 0 vote down

Ask this question again, but this time, don't use "programming" language, use "Foreign language" or "Instrument" or "Wood working."

Most academic pursuits start with broad concepts. Once you understand broad concepts, drill down and refine to less broad. Always building upon the previous understanding until you get to a point where you understand all the concepts and now much understand more refined and specific points.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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