.

My first java program

Thursday, 18 April 2013
Welcome all the geeks and nerds who want to develop some huge applications,all the college students,school goings and those who want something interesting in life.
so here is your first program..............
don't be upset if you don't know data structure and c,java is a language which you can learn easily only by entertaining yourself and the world ,you have to know only the basics.


here is a program----------------
.
                                                           
Class Hello
    {
public static void main(String[] args)
   {
System.out.println("hello world");
     }
}

class name-first letter with capital. eg Dog
method name-first with small letter then capital letter. eg myName()
object-what you want.

public is used to tell the scope,static is used its value is same everywhere,void is return type,string array is used to pass the arguments,System is a class,out is a object,println is a method to print line by line.

its your first program so give sometime to understand it then go further to make programs of other types..










.

Comment here