1.2.4 Data Storage (Numbers) Flashcards

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

convert 56 into binary numbers

A

00111000

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

convert 00111 into denary

A

7

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

Add the following 11100011 + 10001111 =

A

101110010

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

Explain overflow

A

When a value needs to go in more than 8 bit columns and won’t be stored.

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

What are the errors that might occur in overflow?

A

The value that overflows is lost and not stored

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

Convert this hexidecimal into denary:

EE

A

(16 x 14) + (1 x 14) = 238

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

Convert this denary into hexidecimal:

35

A
128  64  32  16  8  4  2  1
  0    0     1     0  0  0  1   1
8  4  2  1                   8  4  2  1
0  0  1  0                   0  0  1  1
2=2                            3=3
hexidecimal = 23
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Convert this binary into hexadecimal, 0 0 1 1 1 1 0 1

A
128  64  32  16  8  4  2  1
 0      0    1     1   1   1   0  1
8  4  2  1         8  4  2  1
0  0  1   1         1   1   0  1
3=3                 13=D
hexidecimal= 3D
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Convert this hexidecimal into binary:

6A

A

8 4 2 1 8 4 2 1
0 1 1 0 1 0 1 0
binary = 01101010

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

Shift this binary to the right to double

0010

A

8 4 2 1
0 0 1 0 = 2
0 1 0 0 = 4

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