Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Here’s some examples:
  2. 00111010 & 10100011 = 00100010
  3. 00111010 | 10100011 = 10111011
  4. !00111010 = 11000101
  5. !10100011 = 01011100
  6. 00111010 ^ 10100011 = 10011001
  7.  
  8. 01101111 & 10000111 = 00000111
  9. 01101111 | 10000111 = 11101111
  10. !01101111 = 10010000
  11. !10000111 = 01111000
  12. 01101111 ^ 10000111 = 11101000
  13.  
  14. 10101000 << 00000010 = 10100000
  15. 01011110 << 00000010 = 01111000
  16. 10111010 << 00000010 = 11101000
  17. 10111000 << 00000010 = 11100000
  18.  
  19. 10101000 >> 00000010 = 00101010
  20. 01011110 >> 00000010 = 00010111
  21. 10111010 >> 00000010 = 00101110
  22. 10111000 >> 00000010 = 00101110
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement