Data And Information Flashcards

1
Q

Information

A

Information is a collection of processed data from a variety of sources.

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

Data

A

Data includes raw facts or observations.

Data is not useful until it has been processed and is presented in a usable form.

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

Wisdom

A

Knowing the right thing to do.

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

Knowledge

A

The key term associated with knowledge is context.

Knowledge is a dynamic combination of experience, contextual information, expert insight, and grounded intuition that provides a framework for evaluating and incorporating new experiences and information.

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

What are the 3 levels of Data Management Systems?

A

Infrastructure as a Service (IaaS) - Virtualize Computer Environment

Platform as a Service (PaaS) - Better for quicker development lifecycles. Online and available

Software as a Service (SaaS) - A platform (windows, Linux, etc.) with software (such as Gmail, YouTube, etc.)

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

Quality Data Attributes

A

Precise

Valid - meets requirements of the Dara collection process

Reliable

Timely

Complete

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

Database

A

A collection of tables.

Basically, there are a bunch of Excel spreadsheets in one file.

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

Flat-file Database

A

Stores data in plain text.

CSV file type

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

Hierarchical Database

A

Oldest system

Organized into a tree with nodes and segments

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

Relational Databases

A

Most common you’ll see

Contains tables that RELATE to one another

Primary key - unique identifier, each record has one, no two records have the same value in the Primary Key

Foreign Key field relates to the Primary key field in another table, defines the relationship

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

Structured query language (SQL) code

A

Includes queries to identify what data should be retrieved or how the data should be manipulated

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

What does the selection operation do (SQL)?

A

The selection operation takes rows from one table and creates a new table.

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

Explain this syntax.

SELECT * FROM Patient
WHERE PatientID = ‘223344’ ;

A

SELECT - identifies the records that are being requested

Asterisk (*) - means everything from that table

FROM - identifies the table name (Patient)

WHERE - the condition the query is requesting

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