Q. What will be the output of the following program on execution?
Code:
a=0
b=5
x=(a&b)|(a&a)|(a|b)
print("x")
β
Correct Answer: (D)
None of these
Explanation: print("x"), Here the x is string so the output of the given python code is x.