3.3 Flashcards

1
Q

What are the different units for bytes?(5)

A

Kilo, 1kB is 1,000 bytes.
Mega, 1 MB is 1,000 kB
Giga, 1 GB is 1,000 MB
Terra, 1 TB is 1,000 GB
Peta, 1 PT is 1,000 TB

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

What are some uses of hexadecimal?(2)

A

Hexadecimal numbers are expressed more compactly than binary numbers and are much easier to understand and remember.
Therefore they are often used in picking colours for a graphic, instead of binary.

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

How many different values does ASCII and extended ASCII have?

A

ASCII has 128 different values while extended ASCII uses 8 bits rather than 7, and therefore has 256 unique characters.

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

What is the advantage of Unicode over ASCII?

A

Unicode has many more unique characters than ASCII because of the larger number of bits available to store a character code, therefore it allows for multilingual text in any language.

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

What is a pixel?

A

A pixel(picture element) is a single point in an image which can have its colour set independently.

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

Describe the different features of a bitmap image?(3)

A

The size of the image is expressed directly as the width in pixels by the height in pixels, e.g 600 x 400. Increasing the size of the image will increase the number of pixels to be stored and therefore increase the image file.
The number of bits used to store each pixel dictates how many colours an image can contain.
For example, an image using 4 colours will require 2 bits to record the colour of each pixel(4 different values in 2 bits).

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

What is colour depth?

A

The number of bits per pixel is known as colour depth. If the colour depth is increased, more bits are used to represent each pixel and the overall size of the file will increase.

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

What is pixel density?

A

Pixel density is measured in pixels per inch(PPI) and is used to describe the resolution of a computer screen, camera, or scanner.

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

How do you calculate the file size of an image?

A

Size in bits = image width x image height x colour depth.
To find this in bytes, just divide the final answer by 8.

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

Why do sound waves have to be converted to be stored on a computer?(2)

A

Sound waves are analogue, but anything stored on a computer has to be stored in a digital formate as a series of binary numbers.
To device used to convert real-world analogue signals into digital representation is an Analogue-to-Digital Converter or ADC.

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

Define sample.

A

A sample is a measure of amplitude at a specific point in time. A sound wave will be stored on a computer as a group of samples across a period of time.

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

Define sample rate and sample resolution.(4)

A

Sample resolution is the number of bits used to store each sample.
The more bits used, the greater variety of values that the amplitude can be and therefore a more accurate representation; it also increases the range in frequency’s.
Sample rate is the frequency at which the amplitude is recorded. This is usually measured in hertz, where 1 hertz = 1 sample per second.
The more frequently the sound is sampled, the better the quality and smoother the playback will sound

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

How do you calculate the size of a sound file?

A

Sample rate x sample resolution x number of seconds.

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

Why do we use data compression?(2)

A

One way of speeding up the rate at which files can be transmitted across the Internet is to compress them to make them smaller.
Therefore we compress files, to allow them to be transmitted quicker, take up less storage space, and allow large files to be sent via email attachment.

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

What is Lossy Compression?(2)

A

Lossy compression is a data encoding method(or algorithm) where files are compressed by removing some of the detail. For example, photographs can be stored using less colours and so less bits are needed per pixel. This is used in images, audio files and video files.

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

What is Lossless Compression?(2)

A

This is a data encoding method where no data is lost. This is therefore very important and used in files and important images.
It is often done by zipping files using a utility program such as WinZip before attaching to an email.

17
Q

What is run length encoding or RLE?(2)

A

RLE is a simple form of lossless data compression in which runs of data are stored using frequency data pairs.
RLE basically turns rows of pixels into much smaller values of representation. It works best on simpler images that contain lots of pixels of the same colour.

18
Q

Explain Huffman Coding?

A

Huffman coding is a compression technique used to reduce the number of bits representing each letter. The more frequently a letter appears in the text the fewer bits are used to store it.