Binary AND Operation

If you're given the following 4 bits:

0010

What are all the possible AND combinations the product could be for this sequence? (Given all other combinations are also 4 bits)

1111, 0010, 1010, 0101 1101, 1100 0010 0010, 0000

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Garry Geaslin
Oct 9, 2017

AND combinations require both bits to be 1 for their product to be 1. For example,

1111 and 1101

1 and 1 = 1

1 and 1 = 1

1 and 0 = 0

1 and 1 = 1

So your final product will be 1101

If you only have one 1, then only 2 combinations are possible. Either than 1 stays a 1 in the product, or it becomes a 0. Therefore, 0010 could only possibly be 0000 or 0010.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...