IS 201 Flashcards

IS 201 1st Big Quiz (27 cards)

1
Q

GIGO

A

Garbage in, garbage out

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

What makes good data? (list)

A

Accuracy
Completeness
Consistency
Timeliness
Validity
Uniqueness
Relevance
Reliability
Accessibility

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

Accuracy

A

Is it correct information?
Double-check information using controls
Limit what can be input to a reasonable range (0<age<140)
Send a verification email when someone signs up with an email

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

Completeness

A

Is all the information there?
Controls:
Require certain fields
Can be harder than accuracy since some people may not respond

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

Consistency

A

Does are data the same everywhere?
E.g. Utah, utah, UT, ut, Ut, UTAH, Uth(typo)
Controls:
Database Design
Dropdowns, radio buttons, checkboxes instead of free text fields

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

Timeliness

A

Do we have our data when we need to have it and does it represent the time period we need to make a decision?

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

Validity

A

Related to accuracy. Does our data represent what we think it does?
E.g. fake@fakeemail.com is a valid email (has @, .com, and other text) but not (probably) and accurate one
8-867-5309 is not a valid US phone number
Controls:
User Input

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

Uniqueness

A

Are we storing the data once and only once per piece of data?
Controls:
Database Normalization (will talk about later)

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

Relevance

A

Can we use this data to make the decision we are making?
Controls:
Asking the right questions
Asking only one question at a time
Using a good measuring scale
Measure what you want to measure and not something else

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

Reliability

A

Can we rely on this data for our decision?
Controls:
Controlling for the other aspects of data quality will help with this one

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

Accessibility

A

Can the right people access the data when they need to? (More discussion on this in security section)
Controls:
User Permissions
UI design
UX design
Correct data format for the user

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

Fine to Coarse scale

A

Aggregate=>Summary=>Detail

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

Databases (Ordered by Quality)

A

Paper
Text Document
Excel
Database Management System (DBMS)

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

Transactional VS Analytical

A

Transactional
Day-to-day operations generate and consume this type of data
Used in operation so stored in an |Operational| database

Analytical
Insight used to gain strategic advantage
Used in analytics so stored in an Analytical database

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

Satisficing meaning?

A

Good Enough info, worth the cost idea

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

ERD

A

Entity Relationship Diagramming

17
Q

vocabulary table

18
Q

Views

A

simple, expanded, full

19
Q

Where do Foreign Keys go?

A

1:M
the primary key of the 1 side becomes a foreign key on the M side
1:0
the primary key of the required side becomes a foreign key on the optional side
1:1
Doesn’t matter, pick either one to receive the FK

Many > Optional > 1

20
Q

Serializable vs. non-serializable

A

Serializable - has own ID number, transferable
Cars, guns, etc.
When you need to keep track of specific products

Non-serializable (General/Virtual) - no ID, don’t care if transferred
Toilet paper, food, most items at grocery store

Serialized item: can belong to at most, a single order
Non-serializable (General/Virtual item): can belong to at most, many orders

21
Q

Order of SQL statements

A

SELECT - REQUIRED
FROM – REQUIRED
JOIN
WHERE
GROUP BY
HAVING
ORDER BY

22
Q

Semantic Key

A

Also known as a “natural” key, a semantic key is a key for which the values have an obvious meaning to the user of the data (e.g., ‘USA’ for a country code).

23
Q

Artificial Key

A

A key that has no obvious or inherent meaning to the user. It serves the purpose of uniquely defining each row (e.g., ORDER_ID, INVOICE_ID).

24
Q

Composite Key

A

A key that contains more than one attribute.

25
workbook
worksheet or table, row, column
26
database
table, record, field
27
re