What will be the output of the following expression?
a = 2 b = 8 print(a|b ) print(a >> 1)
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?
A. 10 0
B. 10 2
C. 2 2
D. 10 1
binary of 2 is (10)
Binary of 8 is (1000)
Bitwise OR => (0010)|(1000) =>1010 => which is 10
and bitwise shift (01) which is 1 so the answer is 10 1