4.5 Data Representation - Calculations Flashcards

Get paper you numbnut

You may prefer our related Brainscape-certified flashcards:
1
Q

What is -9 in 8-bit binary?

A

1111 0111

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

What is -43 in 8-bit binary?

A

1101 0101

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

What is -65 in 8-bit binary?

A

1011 1111

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

What is -120 in 8-bit binary?

A

1000 1000

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

What is -1 in 8-bit binary?

A

1111 1111

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

What is 0011 0010 times by 2 in 8-bit binary?

A

0110 0100

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

What is 0100 0101 times by 2 in 8-bit binary?

A

1000 1010

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

What is 1010 1110 times by 2 in 8-bit binary?

A

0101 1100 with an overflow

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

What is 0011 0010 times by 4 in 8-bit binary?

A

1100 1000

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

What is 0100 0101 times by 4 in 8-bit binary?

A

0001 0100 with an overflow

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

What is 1010 1110 times by 4 in 8-bit binary?

A

1011 1000 with an overflow

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

What is 0011 0010 times by 101 in 8-bit binary?

A

1111 1010

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

What is 0100 0101 times by 101 in 8-bit binary?

A

0101 1001 with an overflow

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

What is 1010 1110 times by 101 in 8-bit binary?

A

0110 0110 with an overflow

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

What is 0001 1010 add 000 0101 in 8-bit binary?

A

0001 1111

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

What is 0000 1001 add 0000 0101 in 8-bit binary?

A

0000 1110

17
Q

What is 0001 0011 add 0000 1011 in 8-bit binary?

A

0000 1110

18
Q

What is 0110 1111 add 0101 1101 in 8-bit binary?

A

0100 0001

19
Q

Show how a computer would subtract 9 from 18 in binary

A

9 = 0000 0101
-9 = 0000 1011
18 = 0000 1010
18 + (-9) = (1) 0101 1100

20
Q

Show how a computer would subtract 14 from 51 in binary

A
14= 0000 1110
-14 =1111 0010
51 = 0011 0011
51 + (-14)	= (1) 0010 0101
 Carry Bits 1110 0100
21
Q

What is 4.5 in 8 bit binary with a fixed point after the 4th position

A

0100.1000

22
Q

What is 3.125 in 8 bit binary with a fixed point after the 4th position

A

0011.0010

23
Q

What is 9.3125 in 8 bit binary with a fixed point after the 4th position

A

1001.0101

24
Q

What is 15.0625 in 8 bit binary with a fixed point after the 4th position

A

1111.0001

25
Q

What is 5.0 in 8 bit binary with a fixed point after the 4th position

A

0101.0000

26
Q

What is 01000011.01000100 in decimal

A

67.26563

27
Q

What is 10111111.10010011 in decimal

A

191.5742