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

Difference between revisions of "Bitwise math/Operators/XOR/rules"

From NetSec
Jump to: navigation, search
(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")
 
 
(No difference)

Latest revision as of 07:12, 19 July 2012

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