Python - String Handling
Questions No: 1/50

Each individual character in a string can be accessed using a technique called _____ .
एक स्ट्रिंग में प्रत्येक इनडिविजुअल कैरेक्टर को ____ ...नामक तकनीक का उपयोग करके एक्सेस किया जा सकता है

Questions No: 2/50

What will be the output of the following Python code?

print('1Rn@'.lower())

Questions No: 3/50

What will be the output of the following Python code snippet?

print('abcdefcdghcd'.split('cd', 0))

Questions No: 4/50

What does the function re-search do?
फंक्शन re-search क्या करता है?

Questions No: 5/50

What will be the output of the following Python code?

string = "my name is x"
for i in string:
    print (i, end=", ")

Questions No: 6/50

What is the output of the following code? print(len("Python\nProgramming"))
निम्नलिखित कोड का आउटपुट क्या है? print(len("Python\nProgramming"))

Questions No: 7/50

What will be the output of the following Python code?

print('ab,12'.isalnum())

Questions No: 8/50

What will be the output of the following Python code snippet?

print('abcdefcdghcd'.split('cd', -1))

Questions No: 9/50

What will be the output of the following Python code snippet?

print('abc'.islower())

Questions No: 10/50

What will be the output of the following Python code?

print('abcdefcdgh'.partition('cd'))

Questions No: 11/50

What will be the output of the following Python code snippet?

print('abcefd'.replace('cd', '12'))

Questions No: 12/50

What will be the output of the following Python code?

print('Hello!2@#World'.istitle())

Questions No: 13/50

What will be the output of the following Python code snippet?

print('cd'.partition('cd'))

Questions No: 14/50

What will be the output of the following expression?

a = 2
b = 8
print(a|b )
print(a >> 1)

Questions No: 15/50

What will be the output of the following Python code?

string = "my name is x"
for i in string.split():
    print (i, end=", ")

Questions No: 16/50

Given a string s="Welcome", which of the following code is incorrect ?
एक स्ट्रिंग s="Welcome" में निम्नलिखित में से कौन सा कोड गलत है?

Questions No: 17/50

What will be the output of the following Python code?

example = "helle"
print(example.find("e"))

Questions No: 18/50

Which of the following is true about Python strings?
पायथन स्ट्रिंग्स के बारे में निम्नलिखित में से कौन सा सत्य है?

Questions No: 19/50

What will be the output of the following Python code?

print("abc DEF".capitalize())

Questions No: 20/50

What does the strip() method do in Python?
पायथन में स्ट्रिप() विधि क्या करती है?

Questions No: 21/50

What will be the output of the following Python code?

x = "abcdef"
i = "a"
while i in x:
    x = x[1:]
    print(i, end = " ")

Questions No: 22/50

What will be the output of the following Python code snippet?

print('abef'.replace('cd', '12'))

Questions No: 23/50

What will be the output of the following Python code snippet?

print('11'.isnumeric())

Questions No: 24/50

What will be the output of the following Python code?

print('abcd'.partition('cd'))

Questions No: 25/50

What will be the output of the following Python code snippet?

print('abcdefcdghcd'.split('cd', 2))

Questions No: 26/50

What will be the output of the following Python code snippet?

print('Ab!2'.swapcase())

Questions No: 27/50

"hello,world".[-6], what value print?
"hello,world".[-6], का आउटपुट क्या होगा?

Questions No: 28/50

Which of the following are valid string manipulation functions in python?
निम्नलिखित में से कौन से पायथन में वैध स्ट्रिंग मैनिपुलेशन फ़ंक्शन हैं?

Questions No: 29/50

What will be the output of the following Python code snippet?

print('1.1'.isnumeric())



Questions No: 30/50

What will be the output of the following Python code snippet?

print('ab cd-ef'.title())

Questions No: 31/50

Which of the following methods is used to check if a string starts with a specific prefix?
निम्नलिखित में से किस मेथड का यूज़ यह चेक करने के लिए किया जाता है कि कोई स्ट्रिंग किसी स्पेसिफ़िक प्रीफ़िक्स से स्टार्ट होती है या नहीं?

Questions No: 32/50

Python allows ____ operations on string data type .
पायथन स्ट्रिंग डेटा प्रकार पर ____ऑपरेशन की अनुमति देता है।

Questions No: 33/50

Which of the following will return reverse string str1?
निम्नलिखित में से कौन रिवर्स स्ट्रिंग str1 रिटर्न करेगा?

Questions No: 34/50

What will be the output of the following Python code?

>>>max("what are you")

Questions No: 35/50

What will be the output of the following Python code?

example = "snow world"
example[3] = 's'
print (example)

Questions No: 36/50

split( ) function returns the _____ of words delimited by the specified substring.
स्प्लिट() फंक्शन निर्दिष्ट सबस्ट्रिंग द्वारा सीमांकित शब्दों का ____ देता है।

Questions No: 37/50

What will be the output of the following Python code?

x = "abcdef"
i = "a"
while i in x:
    x = x[:-1]
    print(i, end = " ")

Questions No: 38/50

What will be the output of the following Python code?

x = 'abcd'
for i in x:
    print(i)
    x.upper()

Questions No: 39/50

What will be the output of the following Python code?

print("abcdef".find("cd"))

Questions No: 40/50

What will be the output of the following Python code?

print(max("what are you"))

Questions No: 41/50

Which of the following function returns True if the string is non empty and has all uppercase alphabets.
यदि स्ट्रिंग नॉन-इम्पटी है और सभी अपरकेस अक्षर हैं, तो निम्न में से कौन सा फंक्शन सही है।

Questions No: 42/50

What will be the output of the following Python code?

print("xyyzxyzxzxyy".count('yy', 1))

Questions No: 43/50

What will be the output of the following Python code?

print("xyyzxyzxzxyy".endswith("xyy", 0, 2))

Questions No: 44/50

Which function returns the exact copy of the string with the first letter in uppercase.
कौन सा फंक्शन अपरकेस में पहले अक्षर के साथ स्ट्रिंग की सटीक प्रतिलिपि देता है।

Questions No: 45/50

Which predefined Python function is used to find length of String()
किस पूर्वनिर्धारित पायथन फंक्शन का उपयोग लंबाई को फाइन्ड के लिए किया जाता है।

Questions No: 46/50

What will be the output of the following Python code?

example = "NITIN"
print(example.rfind("N"))

Questions No: 47/50

What does the function re.match do?
फंक्शन re-match क्या करता है?

Questions No: 48/50

What will be the output of the following Python code?

print('xyxxyyzxxy'.lstrip('xyy'))

Questions No: 49/50

If no delimiter is given in split() function then words are separated by
यदि split () फंक्शन में कोई डेलीमीटर नहीं दिया गया है तो शब्दों को ____द्वारा अलग किया जाता है

Questions No: 50/50

What will be the output of the following Python code?

print("xyyzxyzxzxyy".endswith("xyy"))