Quiz-1
Q 1. What will strcmp() function do? / strcmp () फ़ंक्शन क्या करेगा?
- compares the first n characters
- compares the string
- undefined function
- copies the string
Q 2. Which function will you choose to join two strings? / दो स्ट्रिंग्स को जोड़ने के लिए आप कौन सा फंक्शन चुनेंगे?
- strcpy()
- strcat()
- strncon()
- memcon()
Q 3. In the C language 'a’ represents / सी भाषा में 'a' का प्रतिनिधित्व करता है
- a digit
- an integer
- a character
- a word
Q 4. Which header file is essential for using strcmp() function? / strcmp () फ़ंक्शन का उपयोग करने के लिए कौन सी हेडर फ़ाइल आवश्यक है?
- string.h
- strings.h
- text.h
- strcmp.h
Q 5. Null character is represented by / शून्य वर्ण का प्रतिनिधित्व द्वारा किया जाता है
- \n
- \0
- \o
- \e
Q 6. C string function “strcmpi”? / सी स्ट्रिंग फ़ंक्शन "strcmpi"? (RPSC ACP programmer 2011)
- Compare two strings
- Compare two strings with case sensitivity
- Compare two strings without case sensitivity
- All of these
Q 7. In which header file are the string related functions./स्ट्रिंग से सम्बंधित फंक्शन किस हेडर फाइल में होते हैं?
- stdio.h
- string.h
- conio.h
- iostream.h
Q 8. Which function is used to copy one string to another./एक स्ट्रिंग को दूसरी स्ट्रिंग में कॉपी करने के लिए किस फक्शन का प्रयोग किया जाता है?
- strlen()
- strcmp()
- strrev()
- strcpy()
Q 9.
What result will be printed as per the given code दिए गए कोड के अनुसार क्या परिणाम प्रिंट होगा?
main()
{
int i=strlen(“white”)+strlen(“Purple”)/strlen(“Red”)-strlen(“Green”);
printf (“\n%d”,i);
}
- 3
- 2
- 1
Q 10. Which character is used to end a string in C language./C भाषा में स्ट्रिंग की समाप्ति किस करेक्टर द्वारा होती है?
- Null
- ‘\0’
- ‘O’
- ‘0\’