Register now or log in to join your professional community.
Public: is an acces modifier used to represent visibility which means visible to all.
Static : is a keyword if we declaare any method as static it is known as static method. the main method is executed by JVM so it does not requre to create object to invike the main method. so it saves memory,
void : is a return type of method , it means it does not return any value.
main: represent start up of the program (execution will start allways from main () )
String args[ ]: is used for command line argument, it store the value pass by user at the run time, it work like array...