Topic 3 - Fundamentals of Data Representation

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/108

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.

109 Terms

1
New cards

Hexadecimal

Base 16

2
New cards

Denary

Base 10

3
New cards

Binary

Base 2 number system

4
New cards

In Hexadecimal what does A mean in denary?

10

5
New cards

In Hexadecimal what does B mean in denary?

11

6
New cards

In Hexadecimal what does C mean in denary?

12

7
New cards

In Hexadecimal what does D mean in denary?

13

8
New cards

In Hexadecimal what does E mean in denary?

14

9
New cards

In Hexadecimal what does F mean in denary?

15

10
New cards

What is hexadecimal commonly used in computing for? (There are 3 answers)

colour codes, memory addresses, data representation

11
New cards

How many bits does each digit in a hexadecimal number represent?

4 bits (1 nibble)

12
New cards

What do computers use binary for?

to represent all data and instructions

13
New cards

What could a bit pattern represent?

different types of data including text, image, sound and integer

14
New cards

Hexadecimal is preferred over binary or other bases because…?

large numbers can be represented using fewer digits and it is easier to understand than binary, also they are shorter

15
New cards

What is the name given to algorithms that reduce file sizes?

compression

16
New cards

What is the name of the process where compressed data is restored to its original format?

decompression

17
New cards

What are the two types of compression?

Lossy and lossless compression

18
New cards

Lossy compression

permanently loses some data

19
New cards

What can lossy compression result in?

small mistakes known as digital artefacts appearing in images + video

20
New cards

What is an example of a digital artefact?

noise can often be seen where there are contrasting colours

21
New cards

lossless image compression

won't lose any of the original data

22
New cards

how does lossless image compression work?

The algorithm finds groups of repeating data and records the data once along with the number of repetitions.

23
New cards

How does Run Length Encoding work?

uses frequency/data pairs to encode each run length of the same coloured pixel

24
New cards

Give an example of run length encoding to show 4 1's and 12 0's

41 120

25
New cards

Lossless text compression

uses repeated patterns in the original text and encodes each pattern in a dictionary

26
New cards

How does a Huffman tree work?

analyses the frequency with which characters in a body of text are used and then characters are placed in a binary tree structure where the most frequently occurring characters are placed nearest the top of the tree

27
New cards

when is compression used most?

for files and data that are sent via the internet

28
New cards

benefits of using compression are :

download times are reduced, data allowances go further, it's possible to transmit video and music data streams as fast as they are playing

29
New cards

What causes buffering?

if the download speed is slower than the playback speed

30
New cards

What file compression type is JPEG?

lossy

31
New cards

What file compression type is PNG?

lossless

32
New cards

What file compression type is ZIP?

lossless

33
New cards

What file compression type is GIF?

lossless

34
New cards

What file compression type is MP4?

lossy

35
New cards

What file compression type is MP3?

lossy

36
New cards

What file compression type is FLAC/ALAC?

lossless

37
New cards

What file type is JPEG?

photos

38
New cards

What file type is PNG?

images/photos, may include transparency

39
New cards

What file type is ZIP?

document compression

40
New cards

What file type is GIF?

simple images, may include animation

41
New cards

What file type is MP4?

video file format

42
New cards

What file type is MP3?

music format

43
New cards

What file type is FLAC/ALAC?

lossless music format (free/apple)

44
New cards

What two values can a bit be?

0 or 1

45
New cards

What is 8 bits called?

1 byte

46
New cards

What is 2 bits called?

1 crumb

47
New cards

What is 4 bits called?

1 nibble

48
New cards

How many bytes is 1 kB?

1000 bytes

49
New cards

How many kilobytes is 1 MB?

1000 kilobytes

50
New cards

How many megabytes is 1 GB?

1000 megabytes

51
New cards

How many gigabytes is 1 TB?

1000 gigabytes

52
New cards

What does b represent?

a bit

53
New cards

What does B represent?

byte

54
New cards

1+0

1

55
New cards

0+1=

1

56
New cards

1+1

10

57
New cards

1+1+1

11

58
New cards

1+1+1+1

100

59
New cards

What can a binary shift be used to do?

multiply/divide by powers of 2

60
New cards

What does a left binary shift do?

multiplies the number

61
New cards

What does a right binary shift do?

divides the number

62
New cards

If you add binary numbers and the total results in requiring more than 8 bits what occurs?

an overflow error

63
New cards

What is the disadvantage of logical binary shifts?

a loss of accuracy can occur if 1 bit is removed

64
New cards

What do you fill the gaps from a binary shift with?

0s

65
New cards

What type of signal is sound?

analogue

66
New cards

Why must sound be converted to a digital form?

for storage and processing in a computer

67
New cards

How do you digitise sound?

by repeatedly measuring and recording the sound wave

68
New cards

What is an ADC & what does it do?

an analogue to digital converter is used to convert inputs to digital signals

69
New cards

What is DAC and what does it do?

a digital to audio converter is used to convert digital signals to outputs

70
New cards

What does sound sampling mean?

a measurement of amplitude of a sound wave at a given time

71
New cards

The values received from DACs are then stored as a series of ….

binary numbers

72
New cards

What is the sample resolution?

the number of bits used to record each measurement (also known as bit depth) / the number of bits per sample

73
New cards

What does sample resolution determine?

how closely the wave is sampled on the y-axis

74
New cards

The more bits used per sample…

enables the height of the wave to be more accurately measured but increases the file size

75
New cards

What is sampling rate measured in?

Hertz (Hz)

76
New cards

What is sampling rate?

the number of samples taken in a second

77
New cards

How do you calculate sound file sizes?

File size = sampling rate x sample resolution x number of seconds

78
New cards

The greater the sampling rate…

the greater the accuracy, and file size

79
New cards

How does Lossy compression work with MP3?

Removes sounds we can't easily hear or that least affect the perceived playback quality

80
New cards

What is lossy compression useful for?

storing, downloading or streaming

81
New cards

How does lossless compression work?

able to reduce the file size when compressed but don't lose any information

82
New cards

Why are lossy file formats still very popular?

they still reduce the file size well

83
New cards

What is a character set?

A set of letters, symbols and digits that can be represented by a computer

84
New cards

What are the two major character sets in use today?

ASCII and Unicode

85
New cards

What was ASCII originally developed for?

For representing the English alphabet

86
New cards

How many characters does ASCII encode and into what length binary codes?

128 characters into 7-bit binary codes

87
New cards

Where is ASCII commonly used on?

PCs

88
New cards

Why did they create 8-bit ASCII?

So ASCII can be used for many more characters

89
New cards

How many characters can Extended ASCII - 8 bit ASCII encode?

has 256 different characters that can be encoded

90
New cards

How many bits does Unicode use?

16 bits but there is a 32 bit version

91
New cards

Why was Unicode created?

to represent other characters for different languages

92
New cards

How many characters can Unicode encode?

65 536 or >4 billion

93
New cards

TRUE OR FALSE?

94
New cards

Unicode uses different codes to ASCII up to 127?

FALSE : Unicode uses the same codes as ASCII up to 127

95
New cards

What is the term pixel short for?

picture element

96
New cards

What is a pixel?

a single point in an image

97
New cards

What are bitmap images made up of?

pixels

98
New cards

How can a pixel's colour be changed?

By changing the binary value representing the colour of it

99
New cards

How is the size of a bitmap image measured?

In pixels - Width x height

100
New cards

What is image resolution?

The concentration of pixels within a specific area.