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)
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.
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.