Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Bitwise math/Operators/OR/example"
From NetSec
GertieUbpgdd (Talk | contribs) (Created page with "<noinclude>{{subpage|Bitwise math}}</noinclude> :''Example: 5 OR C = D'' ::{| class="wikitable" width="40%" style="text-align:center" |- !Operation !Hexadecimal !Binary !commen...") |
GertieUbpgdd (Talk | contribs) |
(No difference)
|
Latest revision as of 06:13, 19 July 2012
- back to Bitwise math
- Example: 5 OR C = D
Operation Hexadecimal Binary comment
or 5
C
0101
1100
The second and fourth bits are true.
The first and second bits are true.
= D 1101 The first, second and fourth bits are true in at least one instance.