Embed presentation
Download to read offline

![Following is the program which prints hello world
public class Helloworld
{
public static void main(String[] args)
{
System.out.println(“hello world”);
}
}](https://image.slidesharecdn.com/helloworldjavaprogram-150702193517-lva1-app6891/85/Hello-world-java-program-2-320.jpg)


This Java program prints "hello world" to the screen. It contains a main method that uses System.out.println to display the message. The class name, Helloworld, must start with a capital letter according to Java naming conventions.

![Following is the program which prints hello world
public class Helloworld
{
public static void main(String[] args)
{
System.out.println(“hello world”);
}
}](https://image.slidesharecdn.com/helloworldjavaprogram-150702193517-lva1-app6891/85/Hello-world-java-program-2-320.jpg)

