Tell me public static void main(String args[])?
Submitted by: Muhammad☛ public : Public is an access modifier, which is used to specify who can access this method. Public means that this Method will be accessible by any Class.
☛ static : It is a keyword in java which identifies it is class based i.e it can be accessed without creating the instance of a Class.
☛ void : It is the return type of the method. Void defines the method which will not return any value.
☛ main: It is the name of the method which is searched by JVM as a starting point for an application with a particular signature only. It is the method where the main execution occurs.
☛ String args[] : It is the parameter passed to the main method.
Submitted by: Muhammad
☛ static : It is a keyword in java which identifies it is class based i.e it can be accessed without creating the instance of a Class.
☛ void : It is the return type of the method. Void defines the method which will not return any value.
☛ main: It is the name of the method which is searched by JVM as a starting point for an application with a particular signature only. It is the method where the main execution occurs.
☛ String args[] : It is the parameter passed to the main method.
Submitted by: Muhammad
Read Online Java Software Engineer Job Interview Questions And Answers
Top Java Software Engineer Questions
| ☺ | Do you know how threadsafe is enum in Java? | 
| ☺ | Explain me what is a good usecase of calling System.gc()? | 
| ☺ | Explain me why doesn’t the following code generate a NullPointerException even when the instance is null? | 
| ☺ | Do you know what is the advantage of generic collection? | 
| ☺ | Tell us what do you mean by aggregation? | 
Top Java Programming Language Categories
| ☺ | Core Java Interview Questions. | 
| ☺ | Hibernate Interview Questions. | 
| ☺ | Advanced Java Interview Questions. | 
| ☺ | IBM WebSphere Interview Questions. | 
| ☺ | Spring Framework Interview Questions. | 
