Encyclopedia > Binary and

  Article Content

Binary and

If two conditions are combined by and, they must both be true for the compound condition to be true as well.

Likeliwise, two bits may be combined with and:

 x  y  x AND y
 0  0  0
 0  1  0
 1  0  0
 1  1  1

I.e. the result is 1, if both x and y are 1, and 0 otherwise. If 0 is equated with true, and 1 with false the bit and operation works like our logical and.

Binary and can work on binary numbers of any size, the numbers are simply anded digit by digit. For example:

       x:  10001101
       y:  01010111
 x AND y:  00000101

(Only in the first, and third column from the left, both operands had 1 digits.)

and is often called masking, because y can be seen as a mask which is transparent (1) in some places (x will shine through), and black (0) in others (x will be blocked).



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
U.S. presidential election, 1804

... (W) 162 Democratic-Republican George Clinton (162) Charles C. Pinckney[?] 14 Federalist Rufus King (14) Other elections: 1792, 1796, 1800, 1804, 1808, 1812, ...

 
 
 
This page was created in 36.5 ms