Quiz-1

Q 1. What will strcmp() function do? / strcmp () फ़ंक्शन क्या करेगा?

  1. compares the first n characters
  2. compares the string
  3. undefined function
  4. copies the string

Q 2. Which function will you choose to join two strings? / दो स्ट्रिंग्स को जोड़ने के लिए आप कौन सा फंक्शन चुनेंगे?

  1. strcpy()
  2. strcat()
  3. strncon()
  4. memcon()

Q 3. In the C language 'a’ represents / सी भाषा में 'a' का प्रतिनिधित्व करता है

  1. a digit
  2. an integer
  3. a character
  4. a word

Q 4. Which header file is essential for using strcmp() function? / strcmp () फ़ंक्शन का उपयोग करने के लिए कौन सी हेडर फ़ाइल आवश्यक है?

  1. string.h
  2. strings.h
  3. text.h
  4. strcmp.h

Q 5. Null character is represented by / शून्य वर्ण का प्रतिनिधित्व द्वारा किया जाता है

  1. \n
  2. \0
  3. \o
  4. \e

Q 6. C string function “strcmpi”? / सी स्ट्रिंग फ़ंक्शन "strcmpi"? (RPSC ACP programmer 2011)

  1. Compare two strings
  2. Compare two strings with case sensitivity
  3. Compare two strings without case sensitivity
  4. All of these

Q 7. In which header file are the string related functions./स्ट्रिंग से सम्बंधित फंक्शन किस हेडर फाइल में होते हैं?

  1. stdio.h
  2. string.h
  3. conio.h
  4. iostream.h

Q 8. Which function is used to copy one string to another./एक स्ट्रिंग को दूसरी स्ट्रिंग में कॉपी करने के लिए किस फक्शन का प्रयोग किया जाता है?

  1. strlen()
  2. strcmp()
  3. strrev()
  4. 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);
}

  1. 3
  2. 2
  3. 1

Q 10. Which character is used to end a string in C language./C भाषा में स्ट्रिंग की समाप्ति किस करेक्टर द्वारा होती है?

  1. Null
  2. ‘\0’
  3. ‘O’
  4. ‘0\’