Questions about this topic? Sign up to ask in the talk tab.

Bitwise math/Operators/AND/rules

From NetSec
Jump to: navigation, search
back to Bitwise math


AND compares each bit and if both bits per placeholder are true, then it returns a true for that placeholder, all else gets turned into 0.
  • 1 and 1 = 1
  • 1 and 0 = 0
  • 0 and 0 = 0