Quiz-1

Q 1. What will be the output of the following Python code snippet? / निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
print('my_string'.isidentifier())

  1. True
  2. False
  3. None
  4. Error

Q 2. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print('ab12'.isalnum())

  1. True
  2. False
  3. None
  4. Error

Q 3. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print('{0:.2%}'.format(1/3))

  1. 0.33
  2. 0.33%
  3. 33.33%
  4. 33%

Q 4. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print('{0:.2}'.format(1/3))

  1. 0.333333
  2. 0.33
  3. 0.333333:.2
  4. Error

Q 5. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print("Hello {name1} and {name2}".format(name1='foo', name2='bin'))

  1. Hello foo and bin
  2. Hello {name1} and {name2}
  3. Error
  4. Hello and

Q 6. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print("abcdef".find("cd"))

  1. True
  2. 2
  3. 3
  4. None of the mentioned

Q 7. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print("xyyzxyzxzxyy".endswith("xyy"))

  1. 1
  2. True
  3. 3
  4. 2

Q 8. What is the default value of encoding in encode()? / encode() में एन्कोडिंग का डिफ़ॉल्ट मान क्या है?

  1. ascii
  2. qwerty
  3. utf-8
  4. utf-16

Q 9. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print('abc'.encode())

  1. abc
  2. ‘abc’
  3. b’abc’
  4. h’abc’

Q 10. What will be the output of the following Python code? / निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
print("xyyzxyzxzxyy".count('yy', 1))

  1. 2
  2. 1
  3. none of the mentioned