Computer Science, asked by raghavchandel2003, 5 months ago

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 mahawadiabhishek
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