Preview

09 - Boolean Expressions and Diagrams

 1. Read the definition of a LOGIC CIRCUIT and decide whether it is true or false
A logic circuit is a combination of logic gates. 
 

  TRUE

  FALSE

 2. In a statement like this: (A+B) . (C + D) - what do the brackets mean?
booleanstatement_AND.png

  The brackets mean that the expression inside them is processed LAST

  That the brackets are done first (just like BODMAS rules in maths)

  The brackets are there for aesthetic and artistic effect

  It doesn't mean anything

 3. What is the boolean expression for this circuit? ….
Note: that the '.' is an AND gate and a + refers to an OR gate
booleanexpressions1.png

  (A+B) . (C + D)

  (A+B)+(C.D)

  A AND B

  NOT Y = AB

 4. What is the boolean expression for this circuit? …..
booleanexpressions2.png

  (A + B) AND (NOT C)

  (A+B) . NOT C

  None of the above

  NOT C (A+B+C)

 5. The boolean expression for this circuit is: (AB + C)D
booleanexpressions3.png

  True

  False

 6. What is the boolean expression for this circuit? …….
booleanexpressions4.png

  None of the above

  (A.B).C.D

  (AB + C)D

  (A + B) AND (NOT C)

 7. Look at the image below and the output shown for this circuit. Is it correct? (Yes: True or No: False)
booleanexpressions5.png

  FALSE

  TRUE

 8. Which output of the two shown outputs is INCORRECT?
booleanexpressions6.png

  They are both incorrect

  The second one (near the bottom)

  The first one (the one at the top) is incorrect

  Actually, they are both correct

 9. What would the boolean expression be for the output C?
booleanstatement_twooutputs.png

  C = A AND C

  C = S AND B

  C = A AND B

  A = A AND B

 10. Write the boolean expression for this particular logic diagram (note that you can use brackets to denote an 'AND')
Don't forget that a + is an OR gate and a . (or brackets) is an AND gate. 
booleanstatement_question10.png

  A(BD) + C

  (AB + C)D

  C(D) + A

  A + C (D)