class HelloWorld { public static void main(String Command_Line_Argument[]) { System.out.println("HelloWorld"); } } /* 1} The Program needs to be saved from the class name having the MAIN method 2} static is specified because we don't need to create object 3} Save your file as class_name.java 4} Command_Line_Argument[] are the argument that we provide during execution of program */