Name: __________________________

PRACTICE QUIZ – BOOLEAN LOGIC REVIEW & BITWISE OPERATIONS

 

QUESTION 1

What is the circuit diagram symbol for NOR?

 

QUESTION 2
What is the truth table for the XOR gate?

QUESTION 3
Draw the circuit diagram for (A AND B) OR C = Q.

QUESTION 4

Give the truth table for NOT(A XOR B) = Q.

QUESTION 5

Are the following two circuits equivalent?  Show some work.

 

               NOT(A OR B) = Q

               NOT(A) AND NOT(B) = Q

 

QUESTION 6

Apply a Bitwise AND to 1011 1000 and 1101 0011.

QUESTION 7

Apply a Bitwise NOT to 1001 0010.

 

QUESTION 8

Evaluate 73 >> 2 using logical shifting.

 

QUESTION 9

Evaluate -34 >> 2 using arithmetic shifting

 

QUESTION 10

Evaluate 17 >> 3 using circular shifting. 

 

BONUS

Which logic gate makes noise when it sleeps?