Jump to content
xisto Community
Ashraful1405241560

Introduction To Programming

Recommended Posts

I reently started learning programmming. I decided to start with web programming. I covered XHTML and CSS, and am learning PHP and MySQL along with JavaScript. I plan to move on to more advanced stuff like AJAX and Ruby on Rails.But I wish to start learning desktop programming as well and I'll either C++, Java, or Ruby. Which one is the best one to start learning?And I am also looking for a book that can give me a theoretical introduction to programming that is not limited to a single language. Something that explains how programming languages work and what high and low level languages are, and how the computer hardware understands the language and stuff like that. Any suggestions?

Share this post


Link to post
Share on other sites

I started programming using C++, nothing but object oriented command line stuff. It's actualy the best to start making programs without a GUI because you can focus on the basis of programming. I'd also suggest that if you learn a programmling language, to choose one that is object oriented because most common used languages are (you'll also find most information about these languages). If you like some challenge, try Java, I realy like the language, it's not that simple to learn, but very advanced and you can also use it to create programs for your mobile phone :D . Another language I suggest is C#, I've seen friends creating nice programs with it :mellow: .

Share this post


Link to post
Share on other sites

I reently started learning programmming. I decided to start with web programming. I covered XHTML and CSS, and am learning PHP and MySQL along with JavaScript. I plan to move on to more advanced stuff like AJAX and Ruby on Rails.
But I wish to start learning desktop programming as well and I'll either C++, Java, or Ruby. Which one is the best one to start learning?

And I am also looking for a book that can give me a theoretical introduction to programming that is not limited to a single language. Something that explains how programming languages work and what high and low level languages are, and how the computer hardware understands the language and stuff like that. Any suggestions?


Well, let's say, that really depends upon your purpose.

Each language has its own strength and weakness:
1. Java is highly portable, runable on every platform, at the cost of performance.
2. C++ is nice yet unlike Java and C#, is unmanaged, which means you have to deal with the memory allocation manually).
3. C# seems to be the most beautiful, easiest to learn language I have ever seen with a clear syntax and good performance. But it's only fully support on Windows (Mono is there for C# development on POSIX but it's not yet competent). So, if you're considering multi-platform development then C# isn't a good choice.
4. ANSI C is essential for system level programming. You can also apply object oriented programming techniques if you want, but this is not very well supported by the natural of the language. Google for "object oriented programming ansi c". As I remember, there is a free ebook on the topic.

Alternatively, you may consider some scripting languages instead of the above (compiling) languages.
1. PHP with PHP-Gtk => terrible, don't even think about creating good GUI with this.
2. Python: can be used in almost every platform, from web to desktop. Some of the most used software in current Linux distribution are written in Python. You can also develop web applications using Python and in the end, I love this language due to its simple, elegant syntax.
3. Ruby: known as the language that created the revolution in web development. Ruby can be used for desktop application also yet I haven't seen much of its application in this field.

Caution: Python and Ruby syntax may look pretty weid to those who had certain programing experience already.

Share this post


Link to post
Share on other sites

how programming languages work and what high and low level languages are, and how the computer hardware understands the language and stuff like that. Any suggestions?

From this point of view, and also if you want to work in a big company or if you want to sell yourself as a program writer, you should consider ANSI C.C is a rather high-level language, however it's very near the computer hardware because most of huge systems today are Unix or Linux systems, and Linux and Unix systems are historically developed using the C language. Which means that, quite naturally, programs written in C for any purposes (even for complicated things like Oracle database queries) have very good performances and very short execution times.
So, C should be the first language you learn in your life, each other one comes second. :o

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.