Paper 2 - Data Representation Flashcards

1
Q

Logic Gates:

A

Special Circuits built into computer chips, receive binary data and perform a Boolean Operation.

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

Not Gate:

A

Outputs opposite input

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

And Gate:

A

If both inputs are 1 the output is 1 otherwise it is always 0

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

Or Gate:

A

if one or more inputs are 1 then the output is 1 otherwise the output is 0

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

Parity Bits

A

The check digit used for binary data; The check digit is added to make the binary either have an even or odd number of 1’s, if one bit is read incorrectly the computer will pick out the error. If two bits are read incorrectly then no error will be detected.

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

What is Denary?

A

A number system with ten digits (1-9)

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

What is Binary?

A

Only uses two different digits- also known as base-2.

Right to Left values go up by powers of 2.

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

What is left shift?

A

Multiplying Binary by 2 to the a the power of spaces moved.

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

What is right shift?

A

Dividing Binary by 2 to the power of spaces moved.

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

What are Alphanumeric characters?

A

Used to make words and strings; Computers are unable to process them and-so they are represented by binary in character sets.

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

ASCII:

A

7- bit binary code representing 128 different code; each character fits into 1 byte.

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

Extended ASCII:

A

8-bit binary code representing up to 256 characters the first 128 being the original ASCII. Useful for European languages with unique accents.

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

Unicode:

A

Covers every possible character that could be written; 16-bit and 32-bit codes. Unicode covers all major languages, suchas Greek, Russian and Chinese.

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

Bitmap Images are made of _____?

A

Pixels- colours represented by binary code, the larger the range of colours the larger the bit count of a pixel.

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

Number of bits per pixel is called _____.

A

colour depth

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

Total number of colours = _______

A

2^ colour depth

17
Q

What is the resolution?

A

The density of pixels in an area, commonly measured in dots per inch (dpi)

18
Q

Increasing resolution or colour depth increases ______.

A

File size and image quality.

19
Q

What is Metadata?

A

Information stored to the file including the image’s file format, height, width, colour depth and resolution.

20
Q

What is an Analogue signal?

A

A continually changing piece of audible data.

21
Q

Analogue data needs to be converted into _____

A

Digital Data, does this by the process of sampling.

22
Q

How is sampling used for audio?

A

Amplitude is measured at regular intervals, only taking values dependent on bit rate. The data loses data in the sampling process, however this can be mitigated by more regularly taking samples.

23
Q

Sampling Frequency is _____

A

Samples taken per second.

24
Q

Sample size is _____

A

Bits available for each sample.

25
Q

Bit rate is _____

A

Number of Bits per second of audio.

26
Q

Equation for Bit Rate?

A

Bit Rate = Sampling frequency x Sample Size.

27
Q

Uses of compressing data?

A

Less storage space used; Quicker to stream or download; allows web pages to more quickly load and abiding data restrictions set by emails.

28
Q

Lossy Compression:

A

Pros: Greatly reduced file size. Takes up less bandwidth. Commonly used. Loss in quality usually unnoticeable.

Cons: Loses data; can’t be used on text or software files.

29
Q

Lossless Compression:

A

Pros: No reduction in quality, can be decompressed; can be used on files and text.

Cons: Only slight reduction in file size.

30
Q

what is a Character Set:

A

A collection of characters a computer recognises from their binary representation.