

InterviewSolution
Saved Bookmarks
1. |
Bitwise _________ gives 1 if either of the bits is 1 and 0 when both of the bits are 1.(a) OR(b) AND(c) XOR(d) NOT |
Answer» The correct option is (c) XOR The explanation: Bitwise XOR gives 1 if either of the bits is 1 and 0 when both of the bits are 1. |
|