PDA

View Full Version : New to Programming


Tjl
Feb27-04, 05:45 PM
I am going to major in Graphics Design, and Engineering, but I feel I must first learn a programming language. I had my try at Python, but became side-tracked with school. Do you have any recommendations for a good language to learn. I understand programming semantics and syntax pretty well, so nothing to basic here.

dduardo
Feb27-04, 06:52 PM
If your going to be doing graphics design and engineering, you might as well pick a language that you can use for both, and Perl (http://www.perl.com/) is perfect for this. It is useful for graphics design because you can write scripts for the Gimp (http://www.gimp.org/). It is also can be useful for engineering because you can quickly type up a simulation program to solve problems without compiling.

Other languages that are good:

C/C++
Java
Ruby (http://www.ruby-lang.org/en/)
Python (http://www.python.org/)

enigma
Feb27-04, 09:51 PM
One thing you should also do is find out what languages the university's engineering department uses.

Mine uses Matlab almost exclusively. I've been trying to switch my own projects over to Mathematica recently, but collaboration is a pain in the butt because noone else in my major uses it. Export data to text file->import data from text file...

Tjl
Feb28-04, 09:29 AM
All right then, btw do you know what language Drexel uses? Or what other universities have good computer science courses? I was planning on drexel but if i find a better...

chroot
Feb28-04, 02:09 PM
The choice of which language to learn first is largely moot.

All languages share a lot of features: variables, if and while statements, and so on. While the syntax can be quite different from language to language, the major concepts are all the same.

If you learn Java first, you can pick up Python relatively easily. If you learn Python first, you can pick up Java relatively easily.

Perl, while very useful in some situations, is an oddball language. If you learn it first, you might find yourself concentrating on structures that are NOT common to other programming languages. My suggestion is to save Perl for later, and learn either Python or Java first.

Also, if you'd like to be able to put graphical user interfaces on your programs -- rather than just interacting with them through a text console -- Perl may not be the language for you.

- Warren

sunilkamadolli
Apr3-04, 01:48 PM
java and perl are good choises.

kioria
Apr18-04, 10:58 AM
Above recommendations all seem good. So I must add another one.

At my university, we learn a functional language called, "Haskell". Its a 4th generation language which utilses inbuilt functions. We only use Haskell to teach first year students (programming courses, cse). This allows them to utilise the efficiency in computer programs. Have you ever heard of a "complexity of calculations" in a program? It is basically a way of reducing program's fetching speed (time) when dealing with sufficiently large amounts of data.

But of course, GUI aspect of this language is a major con. But, good enough to have you practising on how to reduce program's complexity.