Asked by Khush Bhullar on Jul 08, 2024

verifed

Verified

1 0 1 1 0 0 1 1 ____ 1 1 0 1 0 1 0 1 results in 0 1 1 0 0 1 1 0.

A) &
B) |
C) ^
D) ~

Exclusive OR Operator

A logical bitwise operator that returns true only when the inputs differ (one is true, the other is false).

  • Discern and delineate the use of bit manipulation in data masking and manipulation techniques.
verifed

Verified Answer

UW
Usman Waqar usManJul 11, 2024
Final Answer :
C
Explanation :
The correct operation is XOR (^), which outputs true only when the inputs differ. The given sequence results from applying XOR to each pair of bits in the sequence, matching the provided output.