memory and storage - data storage and compression

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/39

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.

40 Terms

1
New cards

units of data

bit - 1 bit

nibble - 4 bits

byte - 8 bits

kilobyte - 1000 bytes

megabyte - 1000 kilobytes

gigabyte - 1000 megabytes

terabyte - 1000 gigabytes

petabyte - 1000 terabytes

2
New cards

what is data capacity

maximum amount of information that a storage device can hold

3
New cards

how do you convert binary to denary

write out binary headings

put in the binary digits

add up the numbers with a 1 under it

4
New cards

how to convert from denary to binary

write out binary headings
put a 1 in columns which the heading fits into the denary number

5
New cards

how do you add binary numbers

add the binary numbers, 1+1 carries the 1 to the next column

6
New cards

what is an overflow error

when the result of a binary addition exceeds the number of bits available

7
New cards

why is hexadecimal used

it’s shorter than binary meaning its easier to understand and write with fewer errors (for humans)

8
New cards

how to convert to hexadecimal

convert to binary (if its denary)

split the byte into 2 nibbles and convert back to denary

convert it to hexadecimal

9
New cards

how to convert hexadecimal to binary/denary

convert the hexadecimal digits to denary

convert the denary into binary nibbles

put the nibbles together

convert from binary to denary (if converting to denary)

10
New cards

what do binary shifts do

left - multiply by powers of 2

right - divide by powers of 2

11
New cards

disadvantage of binary shifts (2)

if bits are discarded there could be a loss of precision

overflow errors occur when the value is too big to be stored within the number of bits available

12
New cards

what is a character set

a defined list of characters that can be understood by a computer

13
New cards

what is ascii

represents basic characters needed for english using 7 bits, representing a max of 128 characters

14
New cards

what is extended ascii

a character set using 8 bits that can represent a max of 256 characters including maths symbols

15
New cards

what is unicode

a character set using 16 bits that can represent all major languages and symbols.

16
New cards

disadvantage of unicode

takes up more storage space

17
New cards

what is a bitmap image

an image made up of pixels

18
New cards

what is a pixel

the smallest possible element of an image

19
New cards

what is a vector image

an image made from maths equations and points that are infinitely scalable

20
New cards

what is resolution

the total amount of pixels that make up a bitmap image

21
New cards

how do you calculate resolution

multiply height and width of the image in pixels

22
New cards

what is colour depth

number of bits stored per pixel in an image

23
New cards

how many colours would a 4 bit image have

24 = 16 colours

24
New cards

what happens when you increase bit depth

file size increases as number of bits per pixel increases

25
New cards

what happens when you increase resolution

file size increases as number of pixels increase

26
New cards

what is metadata

data about data

27
New cards

what are five examples of metadata

author, location, time, resolution, colour depth

28
New cards

what does frequency and amplitude in a sound wave represent

frequency - pitch

amplitude - loudness

29
New cards

what is A2D

when a computer converts an analogue sound wave to a digitial one

30
New cards

what is a sample

a measure of the amplitude of a wave

31
New cards

how do computers record sound waves

an anologue sound wave is sampled

amplitude is measured at set intervals

each sample is stored as a binary value

32
New cards

what is sample rate

the number of samples taken a second measured in hertz

33
New cards

what happens as you increase sample rate

the digital sound wave sounds more closer to the original and the file size increases

34
New cards

what happens as you increase bit depth

file size increases as the number of bits stored per sample increases

35
New cards

what is compression

reducing the the size of a file so that it takes up less space on secondary storage

36
New cards

what is lossy compression

when data is lost in order to reduce the size on secondary storage

37
New cards

what are three features of lossy compression

irreversible, greatly reduces file size, loses quality

38
New cards

what is lossless compression

when data is encoded in order to reduce the size on secondary storage

39
New cards

what are three features of lossless compression

reversible, reduces file size a bit, quality is not lost

40
New cards

what is a disadvantage of lossless compression (not about how much it can compress)

since the file has to be decompressed before being opened, it could increase file handling time