Notes 2 Flashcards

1
Q

Von Neumann Architecture

A

CPU <-> Memory
<-> IO Devices

The CPU contains a control unit, an ALU (arithmetic and logic unit), and a register file

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

Digital

A

has discrete values separated by gaps

ex. digital clocl

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

Analog

A

continuous
no gaps

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

High is also known as

A

power
5V
Vhigh
ON
True
Vcc
1

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

Low is known as

A

GND
ground
0V
OFF
False
0

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

_’s and _’s are literally the presence or absence of voltage on a wire (the digital part of a digital system)

A

1’s and 0’s

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

AND truth table

A

A B | AB
0 0 0
0 1 0
1 0 0
1 1 1

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

OR truth table

A

A B | A+B
0 0 0
0 1 1
1 0 1
1 1 1

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

NOT truth table

A

A | A’
0 1
1 0

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

XOR Truth Table

A

A B | A⊕B
0 0 0
0 1 1
1 0 1
1 1 0

A’B+B’A

exclusive or

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

NAND truth table

A

A B | AB
0 0 1
0 1 1
1 0 1
1 1 0
Not A and B

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

NOR truth table

A

A B | A+B
0 0 1
0 1 0
1 0 0
1 1 0

negating results of or

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

And Gate

A

Draw it

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

Or gate

A

Draw it

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

Not gate

A

draw it

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

XOR gate

A

draw it

17
Q

NAND gate

A

draw it

18
Q

NOR gate

A

draw it

19
Q

practice analyzing circuit diagrams

A
20
Q

draw a diagram from the equation : A + AB

A
21
Q

draw a diagram from the equation : (A+B)(B+C)

A
22
Q

A’B’ + AB

A
23
Q

Boolean Identities Part 1:
X+0 =
X+1 =
X1 =
X+X =
X
X =
X*0=

A

X+0 = X
X+1 =1
X1 = X
X+X = X
X
X = X
X*0=0

24
Q

Boolean Identities part 2:
X +X’ =
X * X’ =
(X’)’ =
X+Y =
X*Y =
X +(Y+Z) =

A

X +X’ = 1
X * X’ = 0
(X’)’ =X
X+Y = Y+X
XY = YX
X +(Y+Z) =(X+Y)+Z

25
Q

Boolean identities part 3:
X(YZ) =
X(Y+Z) =
(X+Y)(X+Z)=
(X+Y)’=
(XY)’=

A

X(YZ) = (XY)Z
X(Y+Z) = XY +XZ
(X+Y)(X+Z)=X+YZ
(X+Y)’=X’ n Y’
(XY)’= X’ + Y ‘