Multiple choice If a = 0x6db7 and b = 0xa726, what is the value of a ^ b? 0x58d9 0xca91 0xceb7 0x2526 Reveal answer Fill a bubble to check yourself B Correct answer Explanation Performing a bitwise XOR (^) on 0x6db7 and 0xa726: 0110 1101 1011 0111 XOR 1010 0111 0010 0110 equals 1100 1010 1001 0001, which is 0xca91.