Set Java Environment, Compile and execute sample java program to print “Hello World”.

 

AIM: Set Java Environment, Compile and execute sample java program to print “Hello World”.

 

CODE:

public class hello

{

            public static void main(String args[])

            {

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

            }

}

 

OUTPUT:



Comments

Popular posts from this blog

Write a program in Java to demonstrate the use of 'final' keyword in the field declaration. How it is accessed using the objects.

Write a program in Java to demonstrate use of final class.

Write a program to display result of student according to their marks using Switch case