What is the output of the following code ?
5 ^ 2
7
8
9
25
^ is XOR opertor. Both 5 and 2 will be converted to binary format and then the operator being applied on it.
Comment here: