InterviewSolution
Saved Bookmarks
| 1. |
Find the bitwise complement of A=00001001, exclusive ORing of A=00101010 and B=10101100. |
|
Answer» Bitwise complement of A=00001001 is 11110110 and exclusive OR of 00101010 and 10101100 is 10000110. |
|