The Binary Number System, The Hexadecimal Number System, Character Sets, Images, Sound, Compression

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

1/42

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.

43 Terms

1
New cards

What is a bit in the binary system?

A binary digit that stores either 0 or 1

2
New cards

What is a nibble?

A group of 4 bits

3
New cards

What is a byte?

A group of 8 bits

4
New cards

How many numbers can a byte store?

256

5
New cards

How is binary addition similar to denary addition?

It uses the same column-based method

6
New cards

What is 1+1 in binary?

10

7
New cards

What is 1+1+1 in binary?

11

8
New cards

What happens if binary addition results in a carry at the end?

The carry is placed at the beginning, making a 9-bit answer

9
New cards

What happens when the sum of two bytes exceeds 255?

It causes an overflow error

10
New cards

How do modern CPUs handle overflow errors?

They can hold much larger numbers

11
New cards

What is a binary shift used for?

To multiply or divide a number by powers of two

12
New cards

What happens when a LEFT BINARY SHIFT occurs?

The number doubles in size

13
New cards

What happens when a RIGHT BINARY SHIFT occurs?

The number halves in size

14
New cards

What does ASCII require?

127 different codes

15
New cards

How many bits are used in the ASCII system?

7 bits

16
New cards

What does Extended ASCII use?

8 bits

17
New cards

Why was a new character set developed for 16-bit computers?

To accommodate other languages around the world

18
New cards

What is the name of the new character set for 16-bit computers?

UNICODE

19
New cards

How many bits does UNICODE use?

32 bits

20
New cards

What are bitmap images made of?

Rows of pixels

21
New cards

How is each pixel represented in an 8-bit image?

By a byte

22
New cards

How is each pixel represented in a 24-bit image?

By 3 bytes, with each byte representing a shade of red, green, or blue

23
New cards

Why do HD movies and images appear to have higher quality?

Because the pixels are smaller, giving more detail and reducing pixelation

24
New cards

What makes an image look more 'real'?

A greater range of colours

25
New cards

What does low colour depth mean?

Each pixel is represented by a short binary number, resulting in fewer colours

26
New cards

What does high colour depth mean?

Each pixel is represented by a long binary number, resulting in a larger file

27
New cards

How do you calculate the size of an image file?

Multiply the number of pixels by the colour depth

28
New cards

What is metadata in an image file?

Additional information such as the height, width, and colour depth of an image

29
New cards

What is analogue sound?

Sound waves that continuously vary and are of perfect quality

30
New cards

What is digital sound?

Sound that has been sampled at set intervals, not pure or perfect quality

31
New cards

What is sampling in digital sound?

Recording snippets of sound at set intervals

32
New cards

What is a sample in digital sound?

A measure of the amplitude of the sound wave at a specific moment in time

33
New cards

What does sample resolution (bit depth) refer to?

The number of bits used in each sample

34
New cards

How does a higher sample resolution affect sound quality?

It records more data per sample, resulting in higher quality sound

35
New cards

What is the formula to calculate the data of a sound file?

Sample rate per second x time x bit depth

36
New cards

What does metadata tell the computer in a sound file?

It tells the computer what type of file it is and how to split up and play back the binary values

37
New cards

Why might a file need to be reduced in size?

To require less storage space, faster download times, and faster streaming speeds

38
New cards

What is lossy compression?

When unrequired data is removed from a file to reduce its size

39
New cards

What is lossless compression?

When data is temporarily removed from a file but added back when the file is used again

40
New cards

How does lossy compression compare to lossless compression?

Lossy compression results in a much smaller file

41
New cards

What is run length encoding?

A simple form of lossless compression that looks for patterns to manipulate and remake

42
New cards

What is dictionary coding?

A form of lossless compression that replaces the file’s data with a reference to what the data is

43
New cards

What must accompany a compressed file when using dictionary coding?

The dictionary