1.2.3/4 - Units & Data Storage Flashcards

1
Q

How do you calculate data capacity?

A

Text file:
- Bits per character x Number of characters
Image file:
- Colour Depth x Image Height (pixels) x Image Width (pixels)
Sound file:
- Sample rate x Duration (s) x Bit Depth

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

What are the units of data storage?

A
  • Bits
  • Nibble (4 bits)
  • Byte (8 bits)
  • Kilobyte (1000 bytes)
  • Megabyte (1000KB)
  • Gigabyte (1000MB)
  • Terabyte (1000GB)
  • Petabyte (1000TB)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why must data be stored in binary format?

A
  • Computers use on/off signals
  • Binary has two states : 0 and 1
  • These states can represent the on/off signals
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

List the Hexadecimal characters 10-15

A

10 - A
11 - B
12 - C
13 - C
14 - E
15 - F

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

How do you convert Denary to Binary?

A

Use a binary number line

eg. 89 to Binary
128 64 32 16 8 4 2 1
0 1 0 1 1 0 0 1

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

How do you convert Denary to Hexadecimal?

A
  • Convert denary number to binary
  • Group into 2 nibbles (groups of 4)
  • Add up the nibbles then convert into the hex characters

eg. 230 to Hexadecimal
1 1 1 0 | 0 1 1 0
8 4 2 1 | 8 4 2 1
E 6

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

How do you convert Hexadecimal to Denary?

A
  • Turn each character into a nibble
  • Binary -> Denary convert

eg. A6 to Denary
A = 10 | 6 = 6
1 0 1 0 | 0 1 1 0
128 + 32 + 4 + 2 = 166

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

How do you add two Binary Integers together?

A

1 + 0 = 1
1 + 1 = 0 carry 1
1 + 1 + 1 = 1 carry 1

eg.
n | 0 0 1 1 1 0 1 1
n | 0 1 1 1 1 1 0 0
a | 1 0 1 1 0 1 1 1
c | 1 1 1 1

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

How do you do a Binary Shift?

A
  • Move the numbers to the left or right
  • Denary number doubles when shifted left, halved when shifted right

eg. Left shift
0 0 1 1 0 1 0
0 1 1 0 1 0 0

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

What are the Most/Least Significant Bits?

A

MSB : 128, represents biggest value
LSB : 1, represents the smallest value

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

What is an Overflow Error?

A
  • A binary 1 goes beyond the capacity of the storage line
  • Max denary number - 255
  • Have to add extra column to store numbers >255
How well did you know this?
1
Not at all
2
3
4
5
Perfectly