Which is the output of the following code ?
print("welcome\nto\\npythoneasy")
In python operators with same precedence are evaluated as ?
What is the output of the following code ?
print(9 ^ 10)
What is the output of the following code ?
print(7 * 3 // 4)
What is the output of the following code ?
print (4 ** 2 ** 4, 4 ** (2 ** 4), (4 ** 2) ** 4)
What is the output of the following code ?
print(6+19*((4*16)-9)/15)
What is the output of the following code ?
print(3 << 2)
What is the output of the following code ?
a = 23
b = 26
print(a & b)
What is the output of the following code ?
x = 30
y = 40
x ^= y
y = x ^ y
x ^= y
print(x, y)
What is the output of the following code ?
print("" or {}, {} or [])