Unit 1.2 - text, sound and images Flashcards

1
Q

What is ASCII code?

A

The American standard code for information interchange is the standard code used world-wide to represent characters in computer systems. Uses 7 bits to encode characters, meaning it can represent 128 characters including letters, numbers, punctuation symbols, etc.

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

What is Unicode?

A

Since ASCII can only represent 128 different characters and there are way more languages in the world, a new character set was developed called Unicode. Uses 16 bits, meaning it can represent 65,536 people.

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

What type of waves around sounds wave in the real world?

A

Analogue waves, which have to be converted into digital waves for the computer to be able to process them

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

What are digital waves made of?

A

Sequence of discrete signals; this is a complex series of on and off signals.

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

Name 5 types of sound files

A
  1. .MP3
  2. .ACC
  3. .FLAC
  4. .M4A
  5. MP4
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is sampling?

A

A task a computer performs to represent an analogue waves in a digital format.A computer takes regular measurements of the sound wave. Each measurment is saved as a binary number.

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

Which 2 things does a computer need to measure and record to perform sampling?

A

It needs to record how many bits used to record each measurement (sample resolution) and the number of measurements taken per second (sample rate).

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

What is the correlation between sample resolution and quality and file size?

A

The higher the sample resolution, the more accurate the sound is to the original recorded/better quality but the larger the file size.

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

What does the sample rate affect?

A

Otherwise called frequency, it affects the level of detail in digital sample/better quality. The more times the analogue wave is sampled, the more data is gathered. Greater frequency=greater file size.

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

What is sample rate/frequency measured in?

A

Hertz/kilohertz

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

How is an estimate for sound file size calculated?

A

Length (seconds) x sample rate (hertz) x sample resolution. Gives answer in bits.

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

Name 3 types of image files and the differences between them

A
  1. .GIF
  2. .JPG
  3. . PNG
    They all use different encoding methods
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the smallest identifiable piece on an image called?

A

Pixel. Each pixel has its own binary number which relates to a specific color.

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

What is image resolution?

A

The number of pixels within an image, normally described using the width and height of the image. For example : 1080 x 720
Higher resolution causes the image to be clearer but larger file size.

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

What is bit depth?

A

The number of bits per pixel. Increasing bit depth increases the amount of color combination. 1 bit per pixel - 2 colors; 2 bits per pixel - 4 colors, etc.

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

How is black and white written in hexadecimal?

A

White - #FFFFFF
Black - #000000

17
Q

What is the difference between Bitmap and Vector graphics?

A

Bitmap images are collections of pixels. They will pixilate if zoomed into too much but most complex images have bitmap graphics.
Vector graphics are instructions on how to draw each shape. Good for simple graphics/shapes because they have smaller file size and have smooth rescaling.

18
Q

How is an image file size calculated?

A

image resolution (image width x image height) x bit depth. Gives answer in bits.