Logic Gates and Adders Flashcards

1
Q

What are gates?

A

a device that performs a basic operation on electrical signals

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

What are gates made of?

A

transistors

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

What are circuits?

A

Gates combined to perform more complicated tasks

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

What are Boolean expressions?

A

uses Boolean algebra, a mathematical notation for expressing two-valued logic

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

What are logic diagrams?

A

a graphical representation of a circuit; each gate has its own symbol

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

What are truth tables?

A

a table showing all possible input values and the associated output values

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

What is functional notation?

A

uses a function name followed by a list of arguments in place of the operands used in a boolean expression

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

What are the 2 main roles of a transistor?

A
  1. Amplifier
  2. Binary Switch
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the 6 types of gates?

A
  1. NOT
  2. AND
  3. OR
  4. XOR
  5. NAND
  6. NOR
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How many one-input operations do we consider?

A

4

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

How many two-input operations do we consider?

A

16

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

How do NOT gates work?

A

Takes 1 input (0,1)
Output: will be the opposite of the input

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

How do AND gates work?

A

Takes 2 inputs
Output: if both inputs are 1, then 1, if not then 0

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

How do OR gates work?

A

Takes 2 inputs
Output: if both are 0, output is 0, if not, then 1

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

How do NAND gates work?

A

Takes 2 inputs
Output: if both are 1, then 0; otherwise, output is 1

*exactly like the outputs of AND, but then the opposite

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

How do NOR gates work?

A

Takes 2 inputs
Output: if both are 0, then 1, otherwise 0

*exactly like the outputs of OR, but then the opposite

17
Q

How do XOR gates work?

A

Takes 2 inputs
Outputs: if both inputs are the same, then 0; otherwise, 1

18
Q

What is a half adder?

A

a circuit that computes the sum of two bits and produces the correct carry bit

19
Q

What is a full adder?

A

a circuit that computes the sum of two bits and a carry bit and produces the correct carry bit