4 Easiest Programming Languages to start learning coding

7 Feb

To code, it is not necessary that you should be a professional. The given article emphasizes so as it lists and describes 4 easiest programming languages. These languages will help beginners a lot, lets check them out!

BASIC

The Beginner’s All-purpose Symbolic Instruction Code is the premier language for students at the age of 8 or so. It  is the base of many common programming languages today. The language includes some easy-to-learn functions and its syntax is also very simple. There are no symbols needed at the end of each line which further simplifies its use. A nice educational language that can be easily extended in functionality. Here’s some simple BASIC code

CLS
INPUT "Enter your name: ", Name$
IF Name$="Mike" THEN
PRINT "Go Away!"
ELSE
PRINT "Hello, "; Name$; ". How are you today?"
END IF

Even a child can understand what it wants to say!

Gambas, the BASIC IDE for Linux : Review!

Lua

Lua is a popular programming language. It’s fast, lightweight, and can be easily embedded. It has a very easy to use syntax and can be implemented into anything. It’s a popular, fast, easy to use and implement programming language. But don’t underestimate it. It can be used for complicated programs too, including games.

A simple Lua code


A = {}
function A:add(x,y)
return x+y
end
print( A:add(1,2) )

Simple, ain’t it?

Visual Basic

This is a programming language used with Microsoft Visual Studio, which is very popular among beginners. Visual Studio is used to create professional programs easily and with a widely used framework. It also comes with a wide range of tools to create prototypes of applications very quickly. It can be easily used to make GUIs too and gives satisfactory results to newbies. Yet another sample program:-

Module Hello
Sub Main()
MsgBox("Hello, World!") ' Display message on computer screen.
End Sub
End Module

Python

 

Another Object-Oriented Programming Language. It runs on almost every computer. It also includes a development environment. It is cross platform, fast and very powerful. Runs on Windows, Mac, Linux….

Python is mostly used in Web, Networking, Software, and Game Development. It is really easy to learn and just gets the job done! Now take a look at this:-

print "Hello, World!"

Its done!!

These five languages ensure that even if you’re a newbie at computers, you’ll not be discarded! Have fun!

Tags: , , , , , , ,

9 Responses to “4 Easiest Programming Languages to start learning coding”

  1. Gaurav Kulkarni February 16, 2012 at 11:21 am #

    Hey.. Can you suggest me a book or online tutorial for Python?

  2. jj February 18, 2012 at 8:34 pm #

    I think the easiest language to learn is Hypercard and its derivatives…check out LiveCode (http://www.runrev.com/products/livecode/introducing-livecode-5-/)

    • amptechsoulja February 19, 2012 at 6:42 am #

      Although I really agree with you but Hypercard doesn’t have any good support online and also IDEs are crippled. I’d never tried LiveCode…Thanks for telling
      Keep Visiting
      Cheers
      Sid

  3. isene May 7, 2012 at 3:11 am #

    Try Raven: http://aerosuidae.net/raven.html

    • thesidjway May 17, 2012 at 3:12 am #

      Nice recommendation bro! Might come up with an article soon..

      • isene May 17, 2012 at 3:26 am #

        :)
        It took my 8 year old son about 15 minutes to get the basics of it.

Trackbacks/Pingbacks

  1. What language is best for your new development? — PartTimeLegend - March 17, 2012

    [...] should I use?(enfranchisedmind.com)Recruiting and programming languages(restreaming.wordpress.com)4 Easiest Programming Languages to start learning coding(faduworld.wordpress.com)Your Favorite Programming Language Is Not Good Enough(css.dzone.com)This [...]

  2. Do you speak my language? « bluedeckshoe.com - May 5, 2012

    [...] 4 Easiest Programming Languages to start learning coding (faduworld.wordpress.com) [...]

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s