Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Bitwise math/Operators/AND/rules"
From NetSec
GertieUbpgdd (Talk | contribs) (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''AND compares each bit and if both bits per placeholder are true, then it returns a true for that placeholder, all else gets tur...") |
GertieUbpgdd (Talk | contribs) |
(No difference)
|
Latest revision as of 06:17, 19 July 2012
- 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