Computer Science topic test - images, sound, compression

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards

Pixel

'picture element' - a tiny square in a large grid of squares on a computer screen

2
New cards

Bitmap

a method for storing images using pixels - it is a map of where the bits of information are stored (stored as a sequence of numbers for each pixel's colour)

3
New cards

Resolution

how tightly packed the pixels are; affects image quality - a higher resolution means the image has more pixels closer together, which results in a larger file size (pixels per inch)

4
New cards

Colour depth

the number of bits used for each pixel to define a colour - the larger colour depth, the larger the file size

5
New cards

Metadata

additional data about the file itself e.g. file type, data created, author, height/width, resolution, colour depth

6
New cards

Image size =

width x height (number of pixels)

7
New cards

Width (in pixels) =

width (inches) x resolution (pixels per inch)

8
New cards

File size (image)=

width (pixels) x height (pixels) x colour depth (bits) + metadata

9
New cards

Amplitude

the value of the wave (y-axis) at a given point in time (x-axis)

10
New cards

Bit depth

the number of bits needed to represent the range of values on the y-axis

11
New cards

X-axis

time values

12
New cards

Y-axis

binary values

13
New cards

Sampling

taking a snapshot of the analogue signal at one single point in time

14
New cards

Quantisation

mapping that snapshot to a binary value

15
New cards

Sample interval

the time between samples (seconds)

16
New cards

Sample rate

the number of sound samples taken per second (Hz)

17
New cards

Bit rate =

bit depth x sample rate x number of channels

18
New cards

File size (sound, simple) =

Bit rate x duration

19
New cards

File size (sound, full) =

bit depth x sample rate x number of channels x duration

20
New cards

CD quality

sample rate 44.1kHz, bit depth 16, 2 channels

21
New cards

ADC

Analogue-to-Digital conversion

22
New cards

DAC

Digital-to-Analogue conversion

23
New cards

Compression

algorithms which reduce file sizes

24
New cards

Decompression

the process by which compressed data is restored to its original format

25
New cards

Lossy compression

permanently loses some data, mostly used with images, audio and video as it is harder for humans to notice the loss in quality, can result in digital artefacts in images/video

26
New cards

Lossless compression

no data is lost and the original file can be restored, used with computer programs and with text files where data loss would be unacceptable

27
New cards

RLE (Run-Length Encoding)

lossless - used to reduce repeating strings in lossless compression, splits the repeating string into two bytes where the first is the number of occurrences, and the second is the item of information

28
New cards

Dictionaries

lossless - creates a dictionary where a part of a string is assigned a key, and the text can then be made up of those keys, taking up overall less storage space if those parts of strings are repeated within the text