1.3.2 capturing data Flashcards

1
Q

what are the capturing data methods?

A
  • form
  • OMR (optical mark recognition)
  • OCR (optical character recognition)
  • sensors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

forms

A
  • we collect the user inputs.
  • organise the data in structured format
  • commonly used in websites.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

OMR

A
  • detect marked areas on paper using special machines to read the marks.
  • used for exams, lottery tickets and surveys.
  • data is collected and entered automatically.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

OCR

A
  • convert printed or handwritten text into digital text.
  • useful for digesting documents.
  • assist in searching or editing text.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

sensors

A
  • sensors are devices that detect and respond to changes in the environment.
  • it converts physical signals into digital signals/data.
  • it automatically collects and transmit data, and real-time monitoring (provide up-to-the-minute information about a system or environment)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Selecting and managing data

A

between the database and the program/person using the program, there is a layer called a database management system. DBMS makes sure that a database is manipulated in a consistent way while ensuring accuracy and security.

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

methods of selecting and managing data:

A

SQL: SQL is a language used to select and update data using commands.
QBE: in QBE a user will have a graphical interface where required fields can be dropped, and also allowing the user to set up conditions to filter the result.

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

exchanging data

A

when exchanging data, it is preferable to use standard data format.
examples:
- SQL
- CVS
- XML
- JSON

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

SQL

A

SQL is used to transfer data from one system to another.
DTMS generate a sequence of SQL instructions that, when run on a DTMS receiver create relevant tables, relationship and insert data.

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

CVS

A

CVS is a simple way of exchanging data.
each field is separated by a comma which makes it easy to store and transfer.

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

XLM

A

XLM is a markup language that uses tags to designate (specify) what different things within the documents are. in the case of database, each record could be enclosed within tags, and inside those each field is enclosed within further tags.

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

JSON

A

JSON is a format that represent things as objects (within objects). in the case of database, each record is an object that can contain an array of objects that represent fields.
JSON is useful when sending data to a javascript program, as java script can read the data directly.

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