AS2 Flashcards

1
Q

What is a character set

A
All of the characters that a specific computer system can represent.
It includes 
- Letters
- Digits
- Symbols (#@£)
- Special e.g. return, end of file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How are characters represented

A

Unique binary code used to represent each character

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

Explain what ASCII is

A

American Standard Code for Information Interchange
It has 7 bits for data +1 for error checking
ASCII extended uses 8 bit of data
Max of 128 257 characters 0-127
Not enough for all world language because it is based in American English

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

Explain what Unicode is

A
Stands for unified coding system
It uses 8,16,32 but versions
256 or 16. 4 l or 4.3 billion characters
First 256 are same as ASCII
More unique code
...Lot more characters
... All world languages and more
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define Data

A

Data is raw facts and figures without context or meaning

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

Define Information

A

Information is data which has been processed in order to give context and meaning

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

Define Knowledge

A

Is the application of information

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

What are the six factors that affect the quality of information and explain them

A

Accuracy - The information is precise, correct i.e. it is the true value that it is meant to be.
Relevance - Is the data applicable our use in the given situation
Up-to-Date - Information can change quickly, so if it is not up to date you can trust or rely on it
Completeness - Are there any types of missing facts from the information
Presentation - The way the info is displayed can be difficult to use or understanding
Reliability - Is the information trustworthy? Lots of data comes from other sources. May not know how it was collected or quality controls used.

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

What is Validation

A

It helps ensure correctness of data, it is done by computer when data is entered
It doesn’t guarantee accuracy.
Correctness : Sensible, meets rules, within limits.

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

What is Presence Check

A

Cannot be left blank, data must be input. E.g. Persons name of form

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

What is Length Check

A

Right number of characters

e.g. phone number, stock code

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

What is Range Check

A

Number/Data within set limits. It mat only have 1 limit
e.g. exam score 0-100
Bank account £0 or bigger

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

What is Type Check

A

Data must be of a set type

e.g. Currency, date, letters, number

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

What is Format Check

A

Where input data is in a specified format

E.g. LLNNLLN for stock code

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

What is Format Check

A

Where input data is in a specified format

E.g. LLNNLLN for stock code

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

What is Look up check

A

Checks input value against a list of allowed values eg user name

17
Q

What is Check Digit and how does it work

A

The original data is used to calculate a value.
This check digit is then applied to the original data.
When input: (How it works)
Computer will use original data minus check digit to perform same calculation.
Compare its calculated value to the input check digit
If they match, the input is accepted. If they don’t match, the input is rejected

18
Q

Describe how a check digit would detect an input error

A

Calculation uses weights based on each digits position.
If wrong digit is in any position
Different result will be calculated.
….Error detected

19
Q

What is Modulus 11 and how does it work

A

Like all check digits, a value is calculated from original data based on weights applied to position of digits in original data.

  • Start on Right
  • Weight each digit starting with 2, 3,4 etc.
  • Multiply weight x digit
  • Add up all of the product
  • Divide the sum by 11 int and remainder
20
Q

What happens when importing a batch of data

A

The inputs are grouped together into batches e.g. 100 meter reading
Calculate values from each batch manually.
Values are then input into system before the data
When all data input
-Computer recognises values from input
-Compares against original check values
- If match accept, else rejects all batch

21
Q

What is the Hash Total

A

It has no significant meaning/importance

e.g. house numbers or readings

22
Q

What is the Control Total

A

They have significance important

e.g. All the units of electricity used, Total value of all the orders

23
Q

What is Verification

A

It is done by humans when importing data

It helps ensure accuracy

24
Q

What are the different types of verification techniques

A
  • Proof Reading
  • Double Entry
  • Computer compares 2 inputs which it rejects if don’t match
25
Q

What are the limitations of Validation

A

Cannot ensure accuracy (only correctness)

e.g. a valid dob is not necessary the right DOB is

26
Q

What are the limitations of Verification

A

Human error

27
Q

explain the terms bit, byte, kilobyte, megabyte, gigabyte and terabyte

A
Bit = 1 or 0 
Nibble = 4 bits
Byte = 8 bits
KB = 1024 bytes
GB = 1024 kilobytes
MB = 1024 gigabytes
TB = 1024 megabytes