1 - Information representation and multimedia Flashcards

1
Q

What is binary?

A

Base 2 number system

Only 0 and 1

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

What is denary?

A

Base 10 number system

Digits 0 to 9

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

How is binary converted into denary?

A

128 64 32 16 8 4 2 1

Add numbers which correspond to 1’s

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

How is denary converted into binary?

A

Divide the denary value by 2 until denary value becomes 0

Position the remainders of each division from left to right

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

What is one’s complement?

A

Digits in a binary number are inverted

0 to 1 and 1 to 0

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

What is two’s complement?

A

Digits in a binary number are inverted

1 is added to the right-most bit

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

What happens when binary digits 1 and 1 are added?

A

1 + 1 = 10

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

What is hexadecimal?

A

Base 16 number system

0 to 9
A to F (10 to 15)

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

How is binary converted to hex?

A

Separate the binary number into sections of 4 bits from right to left

Calculate denary value of each of the sectioned bits

Use corresponding values A to F if denary value is 10 to 15

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

How is hex converted to binary?

A

Work out binary value of each of the hex digits

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

What is a memory dump?

A

Output of memory contents to a printer or monitor

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

What is BCD system?

A

Binary-coded decimal

4-bit binary code used to represent each denary digit

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

What is ASCII?

A

American Standard Code for Information Interchange

128 unique characters represented by numbers 0-127

7-bit binary to represent numbers 0 to 127

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

What is bit-map?

A

A system that forms images with pixels

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

What is a pixel?

A

The smallest picture element in an image

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

What is color depth?

A

Number of bits used in the colors of a pixel

17
Q

What is bit depth?

A

Number of bits per smallest unit in a file

18
Q

What is image resolution?

A

Number of pixels that make up an image

19
Q

What is screen resolution?

A

Number of pixels that make up a screen display

20
Q

What is resolution?

A

Number of pixels per column and row on a screen

21
Q

What is pixel density?

A

Number of pixels per cm^2

22
Q

What is vector graphics?

A

Images that are defined by connected points on a Cartesian plane

23
Q

What is sampling resolution?

A

Number of bits used to represent sound amplitude

24
Q

What is sampling rate?

A

Number of sound samples per second

25
Q

What is frame rate?

A

Number of frames in a video per second

26
Q

How is pixel density calculated?

A

1) Add the squares of the vertical and horizontal pixels
2) Square root the sum
3) Divide the square root by the screen size

pixel density = pixels per unit^2

27
Q

How is bit-map image file size calculated?

A

Vertical pixels x horizontal pixels x bit depth

= Number of bits

28
Q

What is lossless file compression?

A

Original file can be restored when decompressed

29
Q

What is lossy file compression?

A

Parts of the original file cannot be restored when decompressed

30
Q

What is JPEG?

A

Join photographic Expert Group

Lossy compression

31
Q

What is MP3?

A

Compresses sound files into MP3 format with audio compression

Lossy compression

32
Q

What is MP4?

A

Compresses multimedia files

Lossy compression

33
Q

What is RLE?

A

Run-length encoding

Reduces size of a string of adjacent and identical data

Lossless file compression