Information Coding Systems Flashcards

1
Q

What is an Information Coding System?

A

A system used to match characters to character codes

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

What is a character code

A

A decimal digit used to represent a character

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

What does ASCII stand for

A

American Standard Code for Information Interchange

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

What is Unicode

A

An information coding system that uses anywhere from 8 bits to 48 bits per character

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

What is ASCII

A

A 7 bit information coding system

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

How many bits can ASCII represent

A

128 (2^7)

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

Advantages of Unicode to ASCII

A

Representation of a much wider range of different characters

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

What is a Parity Bit

A

A single bit added to a transmission that can be used to check for errors

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

How is the value of a parity bit determined

A

It is based on the transmitted data itself

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

What are the two types of parity bit

A

Even Parity and Odd Parity

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

How does Majority Voting work

A

Each bit of the data is transmitted multiple times - the most commonly occurring value from the received data is taken to be correct

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

Disadvantage to Majority Voting

A

Much larger volume of data is being transmitted which means it takes longer

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

What is a Checksum

A

Adding a value determine by the data to transmitted data

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

What is a check digit

A

A type of checksum in which only a single digit is added to the transmitted data

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

How do to a check digit

A

Calculate positional multiples and sum
Use MOD 11 to calculate remainder
Deduct remainder from 11 to produce check digit

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

How does Checksum work

A

Divide the total number of bytes per packet by 256
Round down the result if needed, multiply this number by 256
Deduct this from the number of total bytes being sent
Resultant value is checksum value