19. What will be the output produced ?
(a) X, Y, Z = True, False, False
a = x or (y and z)
b = (x or y) and z
print(a, b)
(b) X, y = '5', 2
z = x + y
print(z)
(c) S = 'Sipo'
$1 = 5 + '2'
S2 = 5 * 2
print(51)
print(52)
(d) W, X, Y, Z = True , 4, -6, 2
result = -(x + 2) < y or x ** z < 10
print (result)
Answers
Answered by
2
Answer:
Q19. What will be the output produced?
(a)
x, y, z =
(b)
x, y = '5', 2
z = x + y
(c)
s = ''
s1 = s + '2'
s2 = s * 2
pr
(d)
w,x, y, z = True , 4, -6, 2
result = -
Explanation:
plz mark as brainlist
Similar questions