Question:What is the output of 3 ^ 2?
A 1 B 5 C 0 D 6
+ AnswerA
+ ExplanationThe ^ operator performs a bitwise XOR operation; hence, 3 ^ 2 results in 1 (binary 11 ^ 10 = 01).
+ Report