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

A

“and”

20
Q

the addition symbol in binary algebra represents

A

“or”

21
Q

AND gate code

A

7408

22
Q

AND gate formula

A

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

23
Q

OR gate code

A

7432

24
Q

OR gate formula

A

F = X + Y

25
Q

NAND gate code

A

7400

26
Q

NAND gate formula

A

F = ( XY )’

27
Q

NOR gate code

A

7402

28
Q

NOR gate formula

A

F = ( X + Y )’

29
Q

NOT gate code

A

7404

30
Q

NOT gate formula

A

F = X’

31
Q

The NOT gate does what

A

inverts

32
Q

NAND gate has the

A

lowest numbered code

33
Q

All TTL chips are numbered

A

74XX or 74XXX ; 54… represents same chip but designed for the military

34
Q

all other gates can be built using only

A

NAND gates

35
Q

binary circuit

A

0 or 1 inputs, 0 or 1 output

36
Q

binary circuits can be built using only

A

NAND gates

37
Q

a digital computer may be built using only

A

NAND gates

38
Q

NOT gate is an

A

inverter

39
Q

EXCLUSIVE OR gates mean

A

they do not include both like traditional OR gates do

40
Q

EXCLUSIVE OR gate code

A

7486

41
Q

EXCLUSIVE NOR gate code

A

74266

42
Q

EXCLUSIVE OR gate formula

A

F = X’Y + XY’
F = X (+) Y

43
Q

EXCLUSIVE NOR gate formula

A

F = XY + X’Y’