Midterm Flashcards

1
Q

Binary base/radix

A

2

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

binary possible values

A

0 and 1

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

binary digits

A

bit

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

Nibble

A

4 bits

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

Byte

A

8 bits

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

Word

A

16 bits

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

B01101101

A

Binary (don’t count first 0)

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

number of possible values for binary

A

2^8

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

octal base/radix

A

8

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

octal possible values

A

0-7

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

012364

A

octal (don’t count first 0)

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

octal number of possible values

A

8^5

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

3 bit direct correlation of octal and binary

A

0=000;1=001;2=010;3=011;4=100;5=101

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

hexidecimal base/radix

A

16

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

hexidecimal possible values

A

0-F

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

0xC5SF

A

hexidecimal

17
Q

hex vs binary relations (4 bits)

A

0=0000;1=0001;2=0010;3=0011;4=0100;5=0101

18
Q

how to convert decimal into binary

A

divide by 2, have quotient table and remainder

19
Q

convert decimal into octal

A

divide by 8, have quotient table and remainder

20
Q

convert decimal into hex

A

divide by 16, have quotient table and remainder

21
Q

How do you add binary

A

convert numbers into binary and then put them on top like beginner multiplication