Fundamentals Of Data Representation Flashcards

1
Q

What are number bases?

A

Number bases are the number of unique digits available in a numbering system such as the decimal system having 10.

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

Binary to Hex

A

Binary split into nibbles (4 bits) which are individually converted into hex and then concatenated

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

What is a character set?

A

A list of all characters recognised by a computer system. Each character has a code and the same code is used by all computers with the same character set. ASCII and Unicode

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

Difference between ASCII and Unicode

A

ASCII uses 7 bits meaning 128 characters can be represented. Unicode uses 16 bits and so 65,536 characters giving access to more alphabets from more languages.

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

How do you calculate image size?

A

Bits = Width ** Height ** Colour Depth

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

What is colour depth?

A

A measure of how many colours are available; the more colours are stored by more pixels

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

How is sound represented?

A

Sound is an analogue signal and so needs to converted to digital form. This is done by taking regular samples of the sound’s amplitudes storing the data with bits. Thousands of samples are taken per second.

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

What is sampling rate?

A

A measure of how often a sample is take, measured in Hz. 1 Hz means once per second. A higher sampling frequency means better quality of sound.

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

What is sample resolution?

A

Sample resolution is a measure of how many bits are required to store each sample.

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

How do you calculate the size of a sound file?

A

Bits = Sample Rate ** Sample Resolution ** Seconds

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

What is data compression? What are the 2 most common types?

A

Compression is a technique to reduce the size of a file so that it takes up less storage space and can be transmitted across a network more quickly.

Run Length Encoding /// Huffman Encoding

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

What is Run Length Encoding?

A

A form of compression that is effective when dealing with repeating data. The data is stored once along with how many times it repeats

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

What is Huffman Encoding?

A

Huffman encoding is a form of compression that represents commonly-use characters with smaller bit patterns.

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