Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Anonymous
Anonymous asked in Computers & InternetProgramming & Design · 8 years ago

How to start programming?

I really like computer and I would like to start programming. How should I start? Where should I start? How should I start? With what language should I start?

I have a Samsung computer with Windows 8 at the moment maybe that will help :)

8 Answers

Relevance
  • 8 years ago
    Favorite Answer

    You're going to want to start with a language that is simply structured and easy to learn. Object based languages like Java tend to be a little more challenging than table or variable based ones. For your first language I would recommend Lua. It is simple language in which code is sorted into tables.

    Ever play World of Warcraft? It was coded in Lua. Here's an example of some Lua script.

    do --Tells the computer to do everything below

    print "Hello world" -- Makes the computer print the words Hello World in the console.

    end --Signifies the end of a table or program.

    That wasn't to difficult was it? Now lets see a Java script that does the same thing.

    public class HelloWorld {

    public static void main(String[] args) {

    System.out.println("Hello, World");

    }

    }

    Looks confusing right? This is why you need to start with something simple like Lua. Here are some helpful links.

    Get Lua here:

    http://code.google.com/p/luaforwindows/

    A helpful guide:

    http://lua.gts-stolberg.de/en/index.php?uml=1

    Source(s): I know Lua, Python and Java, and trust me you want to start with Lua first.
  • 8 years ago

    It depends on a number of factors.

    I usually suggest one of two routes: Either Java, or HTML/Javascript. Java is better if you want to get deeper into program logic concepts more quickly and aren't afraid of a steeper learning curve. HTML/Javascript is better if you want to learn about media manipulation and UI design, with less emphasis on program logic.

    I recommend picking one particular language or route and sticking with it until you have a fairly good understanding of how to use it. This is better than jumping from language to language trying to find 'the easy one'. None of them are so easy that you will not eventually encounter frustration. You will have to have patience no matter what.

  • 8 years ago

    First, you should read up about programming logic and syntax. Then, download, or read a tutorial/guide on your preferred language. I would recommend python, as most programmers use that these days. After you done that, just experiment with making simple programs to get some experience in, and gradually make larger, more complicated program scripts.

  • 8 years ago

    You can start by thinking about what you would like to program or what you would like to see the computer do. Start with something simple like printing "Hello world". You may start with visual basic, c/c++ or java any language you may feel comfortable with.

  • How do you think about the answers? You can sign in to vote the answer.
  • 8 years ago

    Try start with visual basics it a great beginner language! itll teach you the basics then move to python again that a really easy language, slightly more advance than visual basics then move to the big stuff java, c++, C# etc....

    You will really enjoy it!

    Have fun!

    Source(s): Visual basics is old but therefor you can usually find it for free, infact i heard visual studio (newer visual basics) is very good :D
  • 8 years ago

    I would suggest you start with Python. It became the most easiest popular language in programming. It's really easy and fun to start with. How to start? You have Google. Google something like "python tutorial". You may want to search also "free python tutorials", whatever.

  • Anonymous
    8 years ago

    i think you should start with Pseudocode so that you can get fimiliar with the programming aspects

    and some basic algorithms then move to a programming language

    like c or c++

  • 8 years ago

    i suggest for begginers "Javascript" then move to "C++"

    Source(s): Experience
Still have questions? Get your answers by asking now.