Single Choice Moderate

QJava's main method signature is:

ID: #25833 MCQ Quiz - Class 8 - Programming 5 views
Question Info
#25833Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A public static void main(String[] args)
  • B void main()
  • C def main()
  • D start main()
Correct Answer

Explanation

Correct Answer Explanation:

Java's main method must be: public static void main(String[] args). JVM looks for this exact signature to start execution.

Why the other options are incorrect:

  • Option B: void main() is the C/C++ style, not Java.
  • Option C: def main() is Python's style.
  • Option D: start main() is not valid syntax anywhere.

Share This Question

Challenge a friend or share with your study group.