Chapter 2: Combinational Logic Circuits Flashcards
What are the three basic logical operations?
AND, OR, and NOT
By what is AND represented in Boolean Algebra?
By a dot (or the absence of an operator between variables)
By what is OR represented in Boolean Algebra?
+
By what is NOT represented in Boolean Algebra?
By a bar over the variable
When is X AND Y true (or 1)?
Only when both, X = 1 and Y = 1
When is X OR Y true (or 1)?
When X = 1 or when Y = 1 or when both are 1
When is NOT X true (or 1)?
When X = 0
How much Volt does the Apple M2 chip represent as a bit of 1?
1.1V
What are logic gates?
Electronic circuits that operate on one or more input signals to produce an output signal
What’s the electronic symbol for an AND gate?
IMAGE
What’s the electronic symbol for an OR gate?
IMAGE
What’s the electronic symbol for a NOT gate?
IMAGE
What’s another name given to a NOT gate?
Inverter
What is a gate delay?
It is the length of time it takes for an input change to result in the corresponding output change
What does NAND represent?
The complement of the AND operation (NOT-AND)
What does NOR represent?
The complement of the OR operation (NOT-OR)
When is X NAND Y true (or 1)?
When any of the following cases are true:
1) X = 0 and Y = 0
2) X = 0 and Y = 1
3) X = 1 and Y = 0
When is X NOR Y true (or 1)?
Only when X = 0 and Y = 0
What is XOR?
The exclusive-OR, which excludes the combination with both X and Y equal to 1
What is XNOR?
The complement of the XOR
Why is the XOR also called the odd function?
Because the output of XOR is true (or 1) when the number of true (or 1) inputs is odd
What is Boolean algebra?
An algebra dealing with binary variables and logic operations
In Boolean algebra, what is X + 0?
X
In Boolean algebra, what is X * 1?
X
In Boolean algebra, what is X + 1?
1
In Boolean algebra, what is X * 0?
0
In Boolean algebra, what is X + X?
X
In Boolean algebra, what is X * X?
X
In Boolean algebra, what is X + NOT(X)?
1
In Boolean algebra, what is X * NOT(X)?
0
In Boolean algebra, what is NOT(NOT(X))?
X