Java Hello World First Program – Java Programming Tutorial,Java Programming Tutorial,Compile and Run your First Java Program.
JDK should be installed in your machine,
Configure Environment Variables like jdk path
Java file name same name as Class name
public class HelloWorld {
public static void main(String[] args) {
System.out.println("This is my First Java program!!");
}//End of Main Method
}//End of Class
Public : We can call the method from outside of the class
Static: No need to create objects for static method, it run itself.
Void : It does not return anything
Main : It is the method name , The JVM can run your program.
(String args[]):Using for command line arguments.
On this page of the site you can watch the video online Java Hello World First Program – Java Programming Tutorial with a duration of hours minute second in good quality, which was uploaded by the user Software Testing Step-by-Step 01 January 2018, share the link with friends and acquaintances, this video has already been watched 203 times on youtube and it was liked by 3 viewers. Enjoy your viewing!