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: BASIC, fadu, Lua, Microsoft Visual Studio, Programming language, siddharth jha, techsoulja, Visual Basic

Hey.. Can you suggest me a book or online tutorial for Python?
Hey Gaurav!
Check these 2 ebooks
http://www.torrentfunk.com/torrent/3525256/python-programing-john-m-zelle.html
http://kat.ph/beginning-python-from-novice-to-professional-t4179917.html
Hope it helps!
Keep visiting
Siddharth
I think the easiest language to learn is Hypercard and its derivatives…check out LiveCode (http://www.runrev.com/products/livecode/introducing-livecode-5-/)
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
Try Raven: http://aerosuidae.net/raven.html
Nice recommendation bro! Might come up with an article soon..
It took my 8 year old son about 15 minutes to get the basics of it.