Where to learn?

jmcs23

Regular Member
Joined
Mar 3, 2009
Messages
386
Reaction score
65
Hello,

I have some HTML and CSS experience, but I want to learn more programming languages. I'll be going back to school soon for computer programming but I would like to learn some things on my own in the meantime.

Is there a website, tutorials, etc. that anyone can recommend to help me learn new languages?

I'm looking for a online study course type of setup. That way I can learn properly instead of just poking around on w3school or something similar...

Thanks!

Sent from my Nexus 7 using Tapatalk HD
 
Try codeacademy, it's free and you can learn quite a few languages.
 
If you are more of a visual learner than reader, check out the thread in my signature. (become a Web developer from scratch)

Sent from my Nokia 1100 using Tapatalk 2
 
you can download Coder related Tutorial from the download Section./..
 
If you are interested in Web developing, BHW member (bk071) have shared a really great pack including most of all popular web programming languages, video tutorials, pdfs and more. As i cant post any links now, please use search and type in: [GET] Become A Web Developer From Scratch (complete course)

You will not be dissapointed, best of luck in learning!
 
Hello
There are many online free computer programming courses which can help you for learning. Many site provides tuts for that so google it and read books which can mostly help you . I heard w3schools for programming learning you can use this and one thing remember which you read or learn after that practices it. If any problem you have I will help you. I listed some online study course: 1.Computer Science For Everyone (Start Learning How to Write Programs and Writing Basic Programs), 2.Hobart And William Smith Colleges(Introduction to Programming Using Java, Sixth Edition) etc.
 
TRy w3schools(dot)com to learn more website programming languages ..
 
think of some small project or website plugin you'd like to make and then try to code it, while u'r trying you're learning - thats how I learned everything
 
Man there many tutorials on the internet. Go to w3schools, you can find there something useful
 
The best way to learn a new language is to read the official documentation.
It is the hardest way, because the information they provide is not always in logical order, but it is the fastest way too.
 
Thanks everyone for the replies. Now I have a good starting point :-)


Sent from my Nexus 4 using Tapatalk 2
 
Learn java it's very easy and powerful.

The basics of it are:

You have classes and one main class which contains the main method. A project includes the main class and other classes. Classes define objects or instances. The hello world program for java looks like:

Code:
public class HelloWorld{
   public static void main(String[]args){ // Dont' worry about memorizing this, with practice it comes easy
      System.out.println("Hello World!"); // Comments are made like this or like /* text */
   }                                                       // Classes start with capital letters, this class is calling the static method println, static methods are called          directly from the class while normal methods are called from objects of classes
}
 
Make use of roseindia.net. There are plenty of programs available with clear descriptions.
 
Here i had good experience with programmingsimplified.com where many basic programs are available.
 
Forums are good place of learning, you can learn a lot of things in forums, try joining any good coding/programming forum and participate there on regular basis, you would learn a lot of things practically.
 
Back
Top