Program Structure
A simple Java application program is a class with at least one method called “main”
main method must always be defined using the words public, static, and void.
main method is where the processing begins in a Java application program.
main contains statements to be executed.
File name and a program class name should be same in the environment you are working.