Multiple choice technology programming languages

C++ main() { cout << "Hello World!"; return 0; }

  1. C

  2. JAVA

  3. C#

  4. C++

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

The code uses 'cout <<' and 'return 0;' inside a main function, which is standard C++ syntax for console output. C, Java, and C# do not use the 'cout' stream operator.