Multiple choice technology programming languages

What is Void In Public Static Void main()

  1. Access modifier

  2. Nothing

  3. Return Type

  4. None Of Above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Void is a return type that indicates a method returns no value. In the main method signature, void specifies that main does not return any data to the JVM when it completes.