Chapter 1 - Information Representation And Multimedia Flashcards

1
Q

What are natural numbers?

A

Any whole number, starting at 0.

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

What are integers?

A

Whole numbers that can be negative.

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

What are rational numbers?

A

Any number that can be expressed as a fraction or ratio.

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

What are irrational numbers?

A

Numbers that can’t be expressed exactly as a fraction.

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

What is a real number?

A

A number that is rational or irrational.

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

What is an ordinal number?

A

A number used to describe the position in which values appear.

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

Why is hexadecimal used?

A

A hexadecimal value is much easier to read and remember than a string of binary digits. It is quicker to write or type, since a hex digit takes up only one character, not four. There is less chance of making an error when typing hex characters than a string of 1s and 0s. It is used to define colours, in MAC addresses, in assembly languages and machine code. It is very easy to convert to and from binary.

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

What is a character?

A

A character or symbol that is present on the keyboard. It has a specific character code that consists of numbers.

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

What is a character set?

A

A list of characters that have been defined by computer hardware and software. It is necessary to have a method of coding, so that the computer can understand human characters.

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

How many bits does an ASCII character use?

A

7.

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

How many bits does Extended ASCII use?

A

8.

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

How many bits does unicode use?

A

8 to 32.

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

What is a bitmap image?

A

Bitmapped graphics are created using a grid of pixels. Each pixel is given a colour value.

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

What are vector graphics?

A

Vector images are made up of geometric shapes or objects rather than by manipulating individual pixels. The properties of each shape are stored and retrieved in order to mathematically redraw the shape on the screen to display it.

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

How does analogue to digital conversion work?

A

Analogue sound samples are recorded via an amplifier. Each sample is quantised to measure its wave height and translate this into an integer value. The integer value is then converted and stored digitally as a binary value. To output a sound, the reverse happens.

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

What is the sample resolution?

A

The number of bits (audio bit depth) used to record each measurement is known as the resolution.

17
Q

What effect does sampling rate have?

A

The frequency or sample rate per second affects the level of detail in the digital representation.

18
Q

What is the file size of a sound file?

A

File size = sample rate × resolution × length in seconds.

19
Q

What is the Nyquist Theorem?

A

There is a limit on the lowest sampling rate (f_s) that can be used for an accurate recording. Because sound is made up of many components each at different frequencies, samples must be twice the highest frequency in order to replicate the original sound wave. f_s ≥ 2f_max.

20
Q

What is image compression?

A

Image compression is the reduction in file size to reduce download times and storage requirements.

21
Q

What is lossless compression?

A

When the file is compressed, the quality of the image remains the same. The image can be reconstructed into its original form. In this case, information is very important and cannot be lost.

22
Q

What is lossy compression?

A

When a file is compressed, the unnecessary bits of information are removed permanently. This information is less likely to be noticed by humans. This type of compression is used for photographs where the information to be compressed cannot be predicted.

23
Q

What is run-length encoding?

A

Run-length encoding (RLE) is an example of a compression algorithm that converts consecutive similar values into code. This code consists of the identical value and the number of times this value is repeated. This is a lossless type of compression.

24
Q

What is binary?

A

A base two number system based on the values 0 and 1 only.

25
What is a memory dump?
The contents of a computer memory output to screen or printer.
26
What is a bit?
An abbreviation for binary digit.
27
What is binary-coded decimal?
A number system that uses 4 bits to represent each denary digit.
28
What is one's complement?
Each binary digit in a number is reversed to allow both negative and positive numbers to be represented.
29
What is ASCII?
A coding system for all the characters on a keyboard and control codes.
30
What is two's complement?
Each binary digit is reversed and 1 is added in right-most position to produce another method of representing positive and negative numbers.
31
What is sign and magnitude?
A binary number system where left-most bit is used to represent the sign (0 is positive and 1 is negative); the remaining bits represent the binary value.
32
What is unicode?
A coding system which represents all the languages of the world (first 128 characters are the same as ASCII code).
33
What is hexadecimal?
A number system based on the value 16 (uses the denary digits 0 to 9 and the letters A to F).
34
What are methods of compressing image files?
Crop the image, decrease the color/bit depth, reduce the image resolution.
35
How to compress video files?
Reduce the sampling rate used, reduce the sampling resolution, reduce the frame rate.
36
What are applications of BCD (binary coded decimal)?
Calculator display, Clock Display.