Choose the option that shows correct output of the
following code snippet?
a = 2
b = 12
print(a | b)
print(a >> 2)
Answers
Answered by
1
Answer:
First will give 14 output
Second will give 0 as a answer if taken int and 0.5 as a answer if taken double or float
Similar questions