Report Bug
Qus : Which symbol is used for bitwise XOR operator
Qusबिटवाइज़ XOR ऑपरेटर के लिए कौन सा प्रतीक प्रयोग किया जाता है?

A. |
B. &
C. ^
D. !


Solution
C. ^



Explanation
In Python, the caret (^) symbol is used as the bitwise XOR operator.



Report Bug