Master the entry point of every Java program
The main method is the entry point of any Java application. When you run a Java program, the JVM (Java Virtual Machine) looks for the main method to start program execution.
public static void main(String[] args)Remember: This signature must be exactly as shown. Any deviation will prevent the JVM from recognizing it as the entry point!