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

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

From NetSec
Jump to: navigation, search
(Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''OR determines if any bits are true from the given binary operands'' ::* 1 or 1 = 1 ::* 1 or 0 = 1 ::* 0 or 0 = 0")
 
 
(No difference)

Latest revision as of 07:14, 19 July 2012

back to Bitwise math


OR determines if any bits are true from the given binary operands
  • 1 or 1 = 1
  • 1 or 0 = 1
  • 0 or 0 = 0