what does public static void main mean
Answers
Answered by
1
Answer:
Explanation: Every word in the public static void main statement has got a meaning to the JVM. Public: It is an Access modifier, which specifies from where and who can access the method. Making the main() method public makes it globally available. ... As main() method doesn't return anything, its return type is void.
hope it helps you please mark it as brainlist
Answered by
3
Answer:
Every word in the public static void main statement has got a meaning to the JVM. Public: It is an Access modifier, which specifies from where and who can access the method. Making the main() method public makes it globally available. ... As main() method doesn't return anything, its return type is void.
Similar questions