Question: 11 -
What is the output of the following Python codex = 10
y = 50
if x ** 2 > 100 and y < 100:
print(x, y)
-
10 50
-
None of these
-
100 500
-
Error
Answer:
None of these
Solution not available.
Question: 12 -
What is the output of the following codex = 6
y = 2
print(x ** y)
print(x // y)
-
66
0 -
36
0 -
66
3 -
36
3
Answer:
- The Exponent
(**)operator performs exponential (power) calculation. so here6 ** 2means6*6 = 36 - The
//is the Floor Division operator
36
3
Solution: