Multiple choice technology programming languages

#include int main () { ;;;;;; " Please Execute Me " ;;;;; // Line 6 printf(" Executing... ") // Line 7 ;;;;;; "Executed" ;;;;;;; // Line 8 }

  1. Executing...

  2. Please Execute Me Executing... Executed

  3. Error at line 6

  4. Error Semicolon missing

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

The code has empty statements (multiple semicolons) and string literals without statements. String literals not followed by anything are valid expressions that do nothing. Line 6 and 8 are valid no-op expressions. Line 7 printf executes, printing 'Executing...'. No errors occur.