| 161. |
What will be the output of the following Python code snippet?
x = 2
for i in range(x):
x += 1
print (x)
|
||||||||
|
Answer:
Option (c) |
| 162. |
What will be the output of the following Python code snippet?
x = 2
for i in range(x):
x -= 2
print (x)
|
||||||||
|
Answer:
Option (b) |
| 163. |
What will be the output of the following Python code?
for i in range(10):
if i == 5:
break
else:
print(i)
else:
print(""Here"")
|
||||||||
|
Answer:
Option (c) |
| 164. |
What will be the output of the following Python code?
for i in range(5):
if i == 5:
break
else:
print(i)
else:
print(""Here"")
|
||||||||
|
Answer:
Option (a) |
| 165. |
What will be the output of the following Python code?
x = (i for i in range(3))
for i in x:
print(i)
|
||||||||
|
Answer:
Option (a) |
| 166. |
What will be the output of the following Python code?
x = (i for i in range(3))
for i in x:
print(i)
for i in x:
print(i)
|
||||||||
|
Answer:
Option (a) |
| 167. |
What will be the output of the following Python code?
string = ""my name is x""
for i in string:
print (i, end="", "")
|
||||||||
|
Answer:
Option (a) |
| 168. |
What will be the output of the following Python code snippet?
a = [0, 1, 2, 3]
for a[-1] in a:
print(a[-1])
|
||||||||
|
Answer:
Option (b) |
| 169. |
What will be the output of the following Python code snippet?
a = [0, 1, 2, 3]
for a[0] in a:
print(a[0])
|
||||||||
|
Answer:
Option (a) |
| 170. |
What will be the output of the following Python code snippet?
a = [0, 1, 2, 3]
i = -2
for i not in a:
print(i)
i += 1
|
||||||||
|
Answer:
Option (c) |