Quiz-1
Q 1. which functions receives value from the keyboard? / कीबोर्ड से कौन से फंक्शन वैल्यू प्राप्त करते हैं? (RPSC ACP programmer 2011)
- printf()
- scanf()
- both A & B
- none of these
Q 2. What is the default return type of printf() and scanf() function in C language? / सी भाषा में प्रिंटफ () और स्कैनफ () फ़ंक्शन का डिफ़ॉल्ट रिटर्न प्रकार क्या है?
- char
- integer
- header file
- All of the above
Q 3. What is return type of scanf() library function in C ? / C में scanf() लाइब्रेरी फ़ंक्शन का रिटर्न प्रकार क्या है?
- int
- char
- float
- class
Q 4.
What will be the output of following C CODE? / निम्नलिखित सी कोड का आउटपुट क्या होगा
int r=scanf("%d");
printf("%d",r);
- Takes one input & display garbage value
- Compiler error
- Nothing
- Takes one input & display one character
Q 5.
What will be the output of following C code / निम्नलिखित सी कोड का आउटपुट क्या होगा
scanf("%d");
- o
- compiler error
- Garbage
- Nothing
Q 6.
What will be the output of following C code / निम्नलिखित सी कोड का आउटपुट क्या होगा
int p = printf(“123”+1);
printf(“%d”,p)
- 123
- compiler error
- 232
- 124
Q 7.
What will be the output of following C code / निम्नलिखित सी कोड का आउटपुट क्या होगा
int r = printf(“Hi”,”Hello”);
printf(“%d”,r);
- HiHello
- Hi5
- Hi,Hello
- Hi2
Q 8.
What will be the output of following C code / निम्नलिखित सी कोड का आउटपुट क्या होगा
printf(“123”,”Hello”);
- 123
- compiler error
- nothing
- 123Hello
Q 9. The printf ( ) function is used for./printf ( ) फंक्शन का उपयोग होता है।
- data input
- data output
- both a and b
- none
Q 10.
What is the output of this C code? / इस C कोड का आउटपुट क्या है?
int main()
{
int x;
printf("Hello World! %d \n", x);
return 0;
}
- Hello World! x;
- Hello World! followed by a junk value
- Compile time error
- garbage