126k views
4 votes
Compute the bitwise XOR between 10010100 and 11101010.

1 Answer

4 votes

Answer:

The resultants bits for two strings are 0111 1110

Step-by-step explanation:

Given details:

two pair of strings are

10010100

11101010

comparing two pair of strings, then perform XOR operation

Rules to follow for XOR

If both the bits are same then resultant is zero 0 and if bits are different resultant is one

XOR operation:

10010100

11 1 01010

-------------

01111110

The resultants bits for two strings are 0111 1110

User Carrick
by
5.4k points