Introduction, gates, and binary stuff Flashcards

1
Q

4 Number types

A
  • Decimal/Base 10
  • Binary
  • Hexadecimal
  • octal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

num type that we use

A

decimal/base 10

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

everything is stored in

A

binary

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

binary base

A

2

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

octal base

A

8

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

hexadecimal base

A

16

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

stuff stored in binary

A
  • characters ( ascii )
  • sound ( digitized )
  • picture ( RGB )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Binary Coded Decimal notation

A

Binary encodings of decimal numbers where each digit is represented by a fixed number of digits, usually being 4 or 8.

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

convert binary to octal

A

group in 3s

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

convert binary to hexadecimal

A

group in 4s

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

convert from decimal

A

divide by specific base, keeping track of remainders, then write in reverse order

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

0 and 1 is represented by

A

voltage level depending on chip type

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

our family of chips

A

TTL chips

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

TTL chips low voltage ( 0 )

A

0-0.8 volts

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

TTL chips high voltage ( 1 )

A

2-5 volts

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

active high logic means

A

1 = true
0 = false

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

active low logic means

A

0 = true
1 = false

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

which logic do we usually use

A

active high logic ( true = 1 , false = 0 )

19
Q

the multiplication symbol in binary algebra represents

20
Q

the addition symbol in binary algebra represents

21
Q

AND gate code

22
Q

AND gate formula

A

F = XY ( f is true when x and y are high )

23
Q

OR gate code

24
Q

OR gate formula

25
NAND gate code
7400
26
NAND gate formula
F = ( XY )'
27
NOR gate code
7402
28
NOR gate formula
F = ( X + Y )'
29
NOT gate code
7404
30
NOT gate formula
F = X'
31
The NOT gate does what
inverts
32
NAND gate has the
lowest numbered code
33
All TTL chips are numbered
74XX or 74XXX ; 54... represents same chip but designed for the military
34
all other gates can be built using only
NAND gates
35
binary circuit
0 or 1 inputs, 0 or 1 output
36
binary circuits can be built using only
NAND gates
37
a digital computer may be built using only
NAND gates
38
NOT gate is an
inverter
39
EXCLUSIVE OR gates mean
they do not include both like traditional OR gates do
40
EXCLUSIVE OR gate code
7486
41
EXCLUSIVE NOR gate code
74266
42
EXCLUSIVE OR gate formula
F = X'Y + XY' F = X (+) Y
43
EXCLUSIVE NOR gate formula
F = XY + X'Y'