Methods of capturing data Flashcards

1
Q

What is one method of capturing data and describe it.

A

Paper data capture form

  • Dedicated sheet with all the fields you want to collect, clearly labelled
  • Only complete with black pen in capital letters
  • May have boxes to clearly tick and squares you can enter each letter
  • Ensures person entering the data is less likely to make a mistake.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How could you speed up capturing data?

A

Using OCR or OMR. Automatically read text from the form.

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

What can be used for selecting data?

A

SQL - Structured Query Language
Allows data to be extracted from the database.
An interface could be presented to the user containing drop down and text boxes allowing data to be searched and filtered.

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

How could you manage the data?

A

DBMS - Provides layer of abstraction for user and programmer hiding underlying structure of data storage.

Ensures data is kept integral by preventing duplicate primary keys, enforcing validation rules, providing secure access, encryption and program/data independence. Manages many connections to the data source and prevents to users changing the same record at the same time.

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

What is SQL?

A

Both a data definition language and a manipulation language.

Can change the data set, adding tables and records etc

Don’t need interface to make changes.

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

What are the methods of exchanging data?

A

XML, JSON (human readable, open standard format of structured data). CSV (each record on separate line and fields separated by commas). Makes it easy to program routines because it is an open standard.

Interface two database together so they can read and write to each others tables, through import/export routines or a live connection. EDI (electronic data interchange) a protocol between two systems to facilitate the exchange of data.

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