Report Bug
Qus : Give the output of: print(2^5)
Qusइसका आउटपुट क्या होगा : print(2^5)

A. 32
B. 7
C. 10
D. 3


Solution
B. 7



Explanation

here ^ is known as bitwise XOR operator which perform the XOR option on bits

in this question 2^5 :

2=> 010 binary of 2

5=> 101 binary of 5

2^5=> 111 which is 7 in decimal 


so the answer is 7

(in XOR if bits are same the it gives 0 and if bits are deferent the it give 1)




Report Bug