Quiz-1

Q 1. What will be the output of the following code? / निम्नलिखित कोड का आउटपुट क्या होगा?
    #include <stdio.h>
    int main()
    {
        /* this is comment*
        cout << "hello world";
        return 0;
    }

  1. hello world
  2. hello
  3. Compile Time Error
  4. Hellohello

Q 2. What is used to write multi line comment in c++? / c++ में मल्टी लाइन कमेंट लिखने के लिए किसका प्रयोग किया जाता है?

  1. /* …. */
  2. /$ …. $/
  3. //
  4. /$ …. */

Q 3. A Single C Program can have _______ Single Line and multiple line comments ? / एक सिंगल सी प्रोग्राम में _______ सिंगल लाइन और मल्टीपल लाइन कमेंट हो सकते हैं?

  1. Any Number of Comment
  2. Depends on the Number of Lines
  3. 1-10
  4. None of these

Q 4. Guess the output of the following code - / निम्नलिखित कोड के आउटपुट का अनुमान लगाएं -
/* This is /*Print Hello */ */
printf(\"Hello\");

  1. Compile Error
  2. Hello
  3. Stack Overflow
  4. Garbage Value

Q 5. Identify the comment used in the following c program? / निम्नलिखित c प्रोग्राम में प्रयुक्त टिप्पणी को पहचानिए?
/* following line is used to get -
1.Count of the Customer 
2.It is going to Return Integer
*/
int var = getCount(str);

  1. None of these
  2. Multiple Line Comment
  3. Single Line Comment
  4. HTML Like comment

Q 6. Which of the following is appropriate position for writing comment in C Programming? / निम्नलिखित में से कौन C प्रोग्रामिंग में टिप्पणी लिखने के लिए उपयुक्त स्थिति है?

  1. before variable declaration section / वेरिएबल डिक्लेरेशन सेक्शन से पहले
  2. before header file section / हेडर फ़ाइल सेक्शन से पहले
  3. anywhere in the code / कोड में कहीं भी
  4. before calling the main function / मेन फंक्शन को कॉल करने से पहले

Q 7. Which of the following Comments are used in C Programming? / निम्नलिखित में से कौन सी टिप्पणियाँ C प्रोग्रामिंग में उपयोग की जाती हैं?

  1. Enhanced Comment
  2. Multiple Line Comment
  3. Single Line Comment
  4. Both b and c

Q 8. How many comment lines are present in the below program:- / नीचे दिए गए कार्यक्रम में कितनी टिप्पणी पंक्तियाँ मौजूद हैं:-
#include<stdio.h>
int main()
{
printf("//Hello World in C //Comment ");
printf("Hello World in C //"); //Comment
//Comment printf(\"Hello World in C \");
}

  1. 2
  2. 1
  3. 3

Q 9. Comments in C Programming are ignored by:- / सी प्रोग्रामिंग में टिप्पणियों की अनदेखी की जाती है:-

  1. Interpreter
  2. Compiler
  3. Browser
  4. None of these

Q 10. Single line comments are denoted by:- / सिंगल लाइन कमेंट को निम्न द्वारा दर्शाया जाता है:-

  1. //
  2. */
  3. /*
  4. \\\\