Multiple choice technology programming languages

JAVA class myfirstprog { public static void main(String args[]) { System.out.println("Hello World!"); } }

  1. JAVA

  2. Visual BASIC

  3. C++

  4. C#

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

The code shows Java's class-based structure: 'class myfirstprog', 'public static void main(String args[])' as the entry point, and 'System.out.println' for output. The curly braces {} and String array parameter are distinctly Java.