Lab-1

Lab Report Example

Lab Description:

This lab is introduction to Java. Create one  simple program, display the following message ” Hello World “.

Code:

public class HelloWorld {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

System.out.println(” Hello World!!!”);
}

}

Screenshots: