Write the result of the following bit operations:
Written "mathematically", where all numbers are written in the
binary system:
11101010 OR 10110001
11101010 AND 10110001
11101010 XOR 10110001
1) OR Truth table: 0 0 0 0 1 1 1 0 1 1 1 1 11101010 10110001 ------------- 11111011 ------------- Answer: 11111011 2) AND Truth table: 0 0 0 0 1 0 1 0 0 1 1 1 11101010 10110001 ------------- 10100000 ------------- Answer: 10100000 3) XOR Truth table: 0 0 0 0 1 1 1 0 1 1 1 0 11101010 10110001 ------------- 01011011 ------------- Answer: 01011011
Get Answers For Free
Most questions answered within 1 hours.