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;
}
- hello world
- hello
- Compile Time Error
- Hellohello
Q 2. What is used to write multi line comment in c++? / c++ में मल्टी लाइन कमेंट लिखने के लिए किसका प्रयोग किया जाता है?
- /* …. */
- /$ …. $/
- //
- /$ …. */
Q 3. A Single C Program can have _______ Single Line and multiple line comments ? / एक सिंगल सी प्रोग्राम में _______ सिंगल लाइन और मल्टीपल लाइन कमेंट हो सकते हैं?
- Any Number of Comment
- Depends on the Number of Lines
- 1-10
- None of these
Q 4.
Guess the output of the following code - / निम्नलिखित कोड के आउटपुट का अनुमान लगाएं -
/* This is /*Print Hello */ */
printf(\"Hello\");
- Compile Error
- Hello
- Stack Overflow
- 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);
- None of these
- Multiple Line Comment
- Single Line Comment
- HTML Like comment
Q 6. Which of the following is appropriate position for writing comment in C Programming? / निम्नलिखित में से कौन C प्रोग्रामिंग में टिप्पणी लिखने के लिए उपयुक्त स्थिति है?
- before variable declaration section / वेरिएबल डिक्लेरेशन सेक्शन से पहले
- before header file section / हेडर फ़ाइल सेक्शन से पहले
- anywhere in the code / कोड में कहीं भी
- before calling the main function / मेन फंक्शन को कॉल करने से पहले
Q 7. Which of the following Comments are used in C Programming? / निम्नलिखित में से कौन सी टिप्पणियाँ C प्रोग्रामिंग में उपयोग की जाती हैं?
- Enhanced Comment
- Multiple Line Comment
- Single Line Comment
- 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 \");
}
- 2
- 1
- 3
Q 9. Comments in C Programming are ignored by:- / सी प्रोग्रामिंग में टिप्पणियों की अनदेखी की जाती है:-
- Interpreter
- Compiler
- Browser
- None of these
Q 10. Single line comments are denoted by:- / सिंगल लाइन कमेंट को निम्न द्वारा दर्शाया जाता है:-
- //
- */
- /*
- \\\\