Tag: programming languages

Questions Related to programming languages

Look at the code below and select the correct answer:#include main(){printf ("hello world");}

  1. Will not compile

  2. Will compile without error but not run

  3. Will compile with warnings but run ok

  4. Will compile with warnings, but not run


Correct Option: C

The output of the above code is 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

  1. True

  2. False


Correct Option: A

Note the code below and select the correct answer: #include main() { printf ("hello world"); }

  1. Will not compile

  2. Will compile without error or warning and run ok

  3. Will compile without error or warning but not run

  4. Will compile with warning but run ok


Correct Option: D