Representing Data Flashcards

Text, Images and Sound (26 cards)

1
Q

How is data transmitted inside a computer?

A

All data is transmitted as electrical signals that are either on or off

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Why must data be converted into binary?

A

Computers can only process data in binary form (1s and 0s).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What happens when a key on the keyboard is pressed?

A

It is converted into a binary number so that the computer can process it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is ASCII?

A

A character encoding standard that assigns binary numbers to characters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a limitation of ASCII?

A

It can only store 128 characters, which is insufficient for languages with large alphabets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Why was Unicode developed?

A

To support multiple languages and characters beyond ASCII’s 128-character limit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do computers store images?

A

Images are made up of pixels, each represented by binary numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can black and white images be stored in binary?

A

Each pixel is either 1 (black) or 0 (white).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is metadata in images?

A

Data about the image, such as its size (e.g., 10x10 pixels)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How does color representation work in binary?

Give an example of the basic colors represented by binary - white, blue, green and red

A

00 = White
01 = Blue
10 = Green
11 = Red

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How does increasing bits per pixel affect colors?

State the colors per bits for the following bits - 1, 2, 3, 4, 8, and 16 bits

A

More bits allow more colors:

1 bit (0 or 1) = 2 colors
2 bits (00 to 11) = 4 colors
3 bits (000 to 111) = 8 colors
4 bits (0000 to 1111) = 16 colors
8 bits = 256 colors
16 bits = over 65000 colors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is color depth?

A

The number of bits used to store each pixel’s color.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How does resolution affect image quality?

A

Higher resolution means more pixels, leading to better image quality but larger file sizes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do computers process sound?

A

Sound is captured by a microphone and converted into digital signal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does an Analog-to-Digital Converter (ADC) do in terms of sound?

A

It samples an analog sound wave at regular time intervals and converts it to binary.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What happens when sound is sampled?

A

The wave is approximate, losing some quality between sample points

17
Q

How can sound quality be improved in digital format?

A

By increasing the sample rate (taking more samples per second).

18
Q

What is sample rate?

A

The number of samples taken per second, measured in Hertz (Hz).

19
Q

Why is compression used?

A

To reduce file size, saving storage space and improving transfer speed.

20
Q

What are the two main types of compression?

A

Lossy and Lossless compression.

21
Q

What is lossy compression?

A

A method that removes some data to reduce file size, leading to some quality loss.

22
Q

Give examples of lossy compression formats.

A

JPEG (images)
MP3 (audio)

23
Q

What is a disadvantage of lossy compression?

A

Lost data cannot be recovered.

24
Q

What is lossless compression?

A

A compression method that reduces file size without losing data.

25
Give an example of lossless compression.
ZIP files.
26
What is the main drawback of lossless compression?
It does not reduce file sizes as much as lossy compression.