Ask Question
15 April, 11:33

Which of these are valid declarations for the main method?

? public void main ();

? public static void main (String args[]);

? static public void main (String);

? public static int main (String args[]);

+1
Answers (1)
  1. 15 April, 15:06
    0
    The answer is option 2. public static void main (String args[]);

    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.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Which of these are valid declarations for the main method? ? public void main (); ? public static void main (String args[]); ? static ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers