memory and storage - data storage and compression

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 40

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

41 Terms

1

what is a bit

a binary digit that can take the value of 0 or 1

New cards
2

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

New cards
3

what is data capacity

maximum amount of information that a storage device can hold

New cards
4

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

New cards
5

how to convert from denary to binary

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

New cards
6

how do you add binary numbers

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

New cards
7

what is an overflow error

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

New cards
8

why is hexadecimal used

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

New cards
9

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

New cards
10

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)

New cards
11

what do binary shifts do

left - multiply by powers of 2

right - divide by powers of 2

New cards
12

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

New cards
13

what is a character set

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

New cards
14

what is ascii

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

New cards
15

what is extended ascii

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

New cards
16

what is unicode

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

New cards
17

disadvantage of unicode

takes up more storage space

New cards
18

what is a bitmap image

an image made up of pixels

New cards
19

what is a pixel

the smallest possible element of an image

New cards
20

what is a vector image

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

New cards
21

what is resolution

the total amount of pixels that make up a bitmap image

New cards
22

how do you calculate resolution

multiply height and width of the image in pixels

New cards
23

what is colour depth

number of bits stored per pixel in an image

New cards
24

how many colours would a 4 bit image have

24 = 16 colours

New cards
25

what happens when you increase bit depth

file size increases as number of bits per pixel increases

New cards
26

what happens when you increase resolution

file size increases as number of pixels increase

New cards
27

what is metadata

data about data

New cards
28

what are five examples of metadata

author, location, time, resolution, colour depth

New cards
29

what does frequency and amplitude in a sound wave represent

frequency - pitch

amplitude - loudness

New cards
30

what is A2D

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

New cards
31

what is a sample

a measure of the amplitude of a wave

New cards
32

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

New cards
33

what is sample rate

the number of samples taken a second measured in hertz

New cards
34

what happens as you increase sample rate

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

New cards
35

what happens as you increase bit depth

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

New cards
36

what is compression

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

New cards
37

what is lossy compression

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

New cards
38

what are three features of lossy compression

irreversible, greatly reduces file size, loses quality

New cards
39

what is lossless compression

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

New cards
40

what are three features of lossless compression

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

New cards
41

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

New cards
robot