Fundamentals of data representation Flashcards

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

What is a bit?

A

A Binary Digit. The smallest digit in the binary system. 0 or 1

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

What is a nibble?

A

Four bits

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

What is a byte?

A

Eight bits

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

What is a kiloByte?

A

1000X bytes

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

What is a megaByte?

A

1000X kiloBytes

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

What is a gigaByte?

A

1000X megaBytes

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

What is a TeraByte?

A

1000X gigaBytes

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

What is a binary shift left?

A

Multiplies a binary number by 2 for each shift left

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

What is a binary shift right?

A

Divides a binary number by 2 for each shift right

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

What is ASCII?

A

A 7-bit set of codes that allows 128 different characters. That is enough for every upper-case letter,
lower-case letter, digit and punctuation mark on most keyboards

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

What does Unicode use?

A

Between 8 and 32 bits per character, which can
contain many millions of characters. It is commonly used across the internet. The first 128 characters in UNICODE are the same as the 128 characters in ASCII

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

What are the cons of unicode?

A

As it is larger than ASCII, it takes up more storage space and network bandwidth

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

What is an analogue?

A

Sound waves that are continuous waves that must be converted for a
computer to process

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

What is a sample?

A

A measurement taken from an analogue sound wave at a point in time

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

What is sample rate?

A

The total number of samples taken in 1 second, measured in the unit of Hertz (Hz)

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

What is sample resolution?

A

The number of bits used to represent the value of a sample

17
Q

What is a pixel?

A

Smallest, most addressable part of an image

18
Q

What is bitmap?

A

A two dimensional array of binary data representing the values of pixels in an image

19
Q

What is image resolution?

A

The total pixels in an image which is expressed as a calculation of the pixels in the format of width x height

20
Q

What is colour depth?

A

The number of bits used to store each pixel. The more bits used to represent each pixel, the greater the total colour combinations will exist for the image

21
Q

What is data compression?

A

The process of reducing the size of data so that
it takes up less storage space. Compression can use either lossless or lossy techniques

22
Q

What happens when using lossy compression?

A

We can often receive a very small version of the original, however we cannot get back to the original data exactly as some data is lost in the process

23
Q

What happens when using lossless compression?

A

We may receive a smaller piece of data than the original data, however we can always recover the original data – no data is lost

24
Q

What is run length encoding?

A

A lossless data compression algorithm that converts consecutive identical values into a code consisting of the character
and a number marking the length of the run of the character

25
Q

What is huffman encoding?

A

A lossless data compression algorithm which allows a computer to compress and decompress a string based
upon how often characters are used