Chap 10 - Boolean logic Flashcards

1
Q

what does NOT gate do

A

opposite of the input

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

how many inputs in
-NOT
-AND
-OR
-XOR

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

what makes 1 in NOT gate

A

0

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

what makes 1 in AND gate

A

1 + 1

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

what makes 1 in OR gate

A

1 + 0
0 + 1
1 + 1

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

what makes 1 in XOR gate

A

1 + 0
0 + 1

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

what makes 1 in NAND gate

A

0 + 0
1 + 0
0 + 1

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

what makes 1 in NOR gate

A

0 + 0

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

what makes 1 in NXOR gate

A

0 + 0
1 + 1

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

what can NOT be replaced by in a logic expression

A
  • ( - ) on top of input
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what can AND be replaced by in a logic expression

A
  • ( . ) between inputs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what can OR be replaced by in a logic expression

A
  • ( + ) between inputs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is the equation for truth table

A

-2 to the power of n
-n is no. inputs

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

rules for truth table

A

-use 2^n
-always start from right most input
-always start with 0

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

order of evaluation

A

-brackets
-left to right
-AND before OR

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

truth table to logic expression

A

-find row with 1 as output
-change the inputs in that row that are 0 as NOT
-write expression for that row using AND
-join the expressions using OR