Chapter 18 Boolean Algebra and Logic Circuits Flashcards

1
Q

Which is the sign in boolean algebra for AND?

A

. for example: A.B is A AND B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which is the sign in boolean algebra for OR?

A

+ for example: A+B is A OR B

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which is the sign in boolean algebra for NOT?

A

̅ for example: ̅A is NOT A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you write the Identity/Law identity in both forms?

A

AND form: 1.A = 1

OR form: 0+A = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you write the Identity/Law Null in both forms?

A

AND form: 0.A = 0

OR form: 1+A = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you write the Identity/Law Idempotent in both forms?

A

AND form: A.A = A

OR form: A+A = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you write the Identity/Law Inverse in both forms?

A

AND form: A.A ̅ = 0

OR form: A+A ̅ = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How do you write the Identity/Law Commutative in both forms?

A

AND form: B.A = A.B

OR form: A+B = B+A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you write the Identity/Law Associative in both forms?

A

AND form: (A.B).C = A.(B.C)

OR form: (A+B)+C = A+(B+C)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you write the Identity/Law Distributive in both forms?

A

AND form: A+B.C = (A+B) (A+C)

OR form: A.B+C = (A+B) (A+C)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you write the Identity/Law Absorption in both forms?

A

AND form:A.(A+B) = A

OR form:A+A.B = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you write the Identity/Law De Morgan’s law in both forms?

A

AND form:(A.B) ((A.B)) ̅= A ̅+B ̅

OR form:((A+B)) ̅ = A ̅.B ̅

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you write the Identity/Law Double complement in both forms?

A

In both forms: TWO LINES OVER A = A or NOT NOT A = A

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What needs to happen for a carry bit to be 1 in a half adder?

A

Both inputs have to be TRUE or 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What happens in a half adder if only one of the inputs is 1?

A

The output will be 1 and 0.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What happens in a half adder neither of the inputs is 1?

A

The output will be 0 and 0.

17
Q

How does a half adder circuit constructed from NAND gates look like?

A

https://www.tutorialspoint.dev/computer-science/digital-electronics-and-logic-design/half-adder-half-subtractor-using-nand-nor-gates -> the site on which the Logic circuit can be seen

18
Q

How does a half adder circuit constructed from NAND gates look like?

A

https://www.tutorialspoint.dev/computer-science/digital-electronics-and-logic-design/half-adder-half-subtractor-using-nand-nor-gates -> the site on which the Logic circuit can be seen

19
Q

How many inputs are in a full adder?

A

3

20
Q

What happens in a full adder if none of the inputs is 1?

A

The output will be 0 0

21
Q

What happens in a full adder if one of the inputs is 1?

A

The output will be 1 0

22
Q

What happens in a full adder if two of the inputs is 1?

A

The output will be 0 1

23
Q

What happens in a full adder if all three of the inputs is 1?

A

The output will be 1 1

24
Q

What does combinational circuit mean?

A

A combinational circuit is a circuit in which the output is only dependent on the input

25
Q

What does sequential input mean?

A

A sequential circuit means a circuit in wich the output depends on the input values and the previous output.

26
Q

Which are the three stages in a truth table when calculating the final output?

A

Input values, Initial state and final output.

27
Q

How does a SR flip-flop circuit made of NOR gates look like?

A

https://electronics.stackexchange.com/questions/163164/sr-flip-flop-nor-or-nand -> the site

28
Q

How does a SR flip-flop circuit made of NOR gates look like?

A

https://www.electronicshub.org/sr-flip-flop-design-with-nor-and-nand-logic-gates/ -> the site

29
Q

Why does a JK flip flop have a clock?

A

To synchronize the inputs.

30
Q

What can be the outputs in a JK flip flop?

A
00 = Q unchanged
10 = 1
01 = 0
11 = Q toggles
31
Q

How to make a boolean algebra representation of a circuit by sum-of-product method?

A

First make a truth table and write down the rows that have a true output.
example: W = A.B + A ̅.B ̅

32
Q

How is each cell in a karnaugh map structured?

A

Each cell in a Karnaugh map shows the value of the output X for a combination of input values for A and B or of the other inputs.