A good answer might be:

FEED      1111 1110 1110 1101
BECA      1011 1110 1100 1010
----      ---- ---- ---- ----
0110      0000 0001 0001 0000

Summary

The table shows the register/register bitwise logic operations. Register d is the destination (where the result goes); the other two registers s and t contain the operands.

AND OR XORNOR
and d,s,t or d,s,txor d,s,tnor d,s,t
$d <— $s and $t $d <— $s or $t $d <— $s xor $t $d <— $s nor $t


Here is a summary of the operations:

operand 0011
operand 0101
AND 0001
OR 0111
XOR 0110
NOR 1000


QUESTION 11:

Fill in the following:

0 NOR 0 = ____   NOT 0 = ____
1 NOR 0 = ____   NOT 1 = ____

Now answer the question: NOT X  =  X ____ 0