91. What will be the output of the following Python code snippet?
print(‘for’.isidentifier())
a) True
b) False
c) None
d) Error
92. What will be the output of the following Python code snippet?
print(‘abc’.islower())
a) True
b) False
c) None
d) Error
93. What will be the output of the following Python code snippet?
print(‘a@ 1,’.islower())
a) True
b) False
c) None
d) Error
94. What will be the output of the following Python code snippet?
print(’11’.isnumeric())
a) True
b) False
c) None
d) Error
95. What will be the output of the following Python code snippet?
print(‘1.1’.isnumeric())
a) True
b) False
c) None
d) Error
96. What will be the output of the following Python code snippet?
print(‘1@ a’.isprintable())
a) True
b) False
c) None
d) Error
97. What will be the output of the following Python code snippet?
print(”””.isspace())
a) True
b) False
c) None
d) Error
98. What will be the output of the following Python code snippet?
print(‘\t’.isspace())
a) True
b) False
c) None
d) Error
99. What will be the output of the following Python code snippet?
print(‘HelloWorld’.istitle())
a) True
b) False
c) None
d) Error
100. What will be the output of the following Python code snippet?
print(‘Hello World’.istitle())
a) True
b) False
c) None
d) Error
Pages 1 2 3 4 5 6 7 8 9 10 11 12 13