Answer:
The answer is option 2. public static void main(String args[]);
Step-by-step explanation:
The answer is public static void main(String args[]); let's understand this line:-
- public:-It is an access specifier that means whichever entity is public it will be accessible everywhere.
- static:-It means that there is only one copy of the method.
- void:-Void means that the method does not have any returning any value.
- main:-It is the name of the method.
- String args[]:-It is an array of strings which and it stores java command line arguments.User can use another name if the user want to.