go to previous page   go to home page   go to next page hear noise highlighting

Answer:

FEED      1111 1110 1110 1101
BECA      1011 1110 1100 1010
————      ———— ———— ———— ————
4027      0100 0000 0010 0111

NOR Instruction


nor  d,s,t    # $d gets bitwise NOR 
              # between $s with $t.
NOR Operation on Bits
first operand 0011
second operand 0101
 
result 1000

There is a bitwise NOR instruction. There is no immediate operand NOR instruction. NOR is equivalent to performing the OR operation, then complementing the bits (change 0 to 1 and 1 to 0).


QUESTION 10:

What is the bitwise NOR of the following?

 FEED
 BECA
——————

go to previous page   go to home page   go to next page