package com.sarvesh.javabasics; public class HelloWorld { /* * Some point which must consider before writing java code * class name must be in upper case and also the filename must be same * methods are in camel case * and constants are in whole capital separated with underscore.*/ public static void main(String[] args) { // Hello World Print Statement System.out.println("Hello World !!!"); } }