Python में 2^5 का output क्या होगा
What is the output of 2^5 in Python
A
32
B
10
C
7
D
25
Explanation
The caret (^) is the Bitwise XOR operator. It compares the binary representations of the numbers:2 in binary is 0105 in binary is 101010 XOR 101 = 111, which is 7 in decimal.
Correct Answer: C) 7