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

Bitwise math/Operators/XOR/rules

From NetSec
Revision as of 03:14, 19 July 2012 by GertieUbpgdd (Talk | contribs) (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''XOR determines which bits differ in the two binary numbers used as operands.'' ::* 1 xor 1 = 0 ::* 1 xor 0 = 1 ::* 0 xor 0 = 0")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
back to Bitwise math


XOR determines which bits differ in the two binary numbers used as operands.
  • 1 xor 1 = 0
  • 1 xor 0 = 1
  • 0 xor 0 = 0