Abstract


  • Also known as Logical Product, intersection

Logic Gate Implementation

AND Bitmasking

     1 1 1 0 1 1 0 1     input
(&)  0 0 1 1 1 1 0 0      mask
------------------------------
     0 0 1 0 1 1 0 0    output
  • The position of mask that is set to 1 extracts the bits of the given input

References