Chapter 6 Quiz Guide - ITEC 2201

0.0(0)
Studied by 14 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/43

flashcard set

Earn XP

Description and Tags

ape together strong

Last updated 5:47 PM on 4/2/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

44 Terms

1
New cards

(REVIEW) Data

raw facts that are devoid of context or intent. can be qualitative (ex: the car is ruby red) or qualitative (there are 5 cars)

2
New cards

(REVIEW) Information

processed data that possess context, relevance, and purpose.

ex: monthly sales calculated from the collected daily sales data.

3
New cards

(REVIEW) Knowledge

produced by the consumption of information. can be explicit or tacit

ex: the conceived relationship between the quality of goods and the sales is knowledge

4
New cards

Explicit Knowledge

Knowledge that can be expressed into words or numbers

5
New cards

Tacit Knowledge

Insights and Intuitions. Difficult to transfer to another person by means of simple communications

6
New cards

(REVIEW) Wisdom

combined knowledge and experience to produce a deeper understanding of a topic. Often takes many years to develop

7
New cards

Database

an organized collection of data that can be used to aggregate and analyze data. Helps minimize redundancy and eliminate inconsistency/enforce data integrity

8
New cards

Issues with Data

  1. Redundancy

  2. Inconsistency

  3. Inaccuracy

  4. Corruption

  5. Lack of Integrity

9
New cards

Redundancy

when data is stored more than once

ex: “Student 4567 is Mary Brown, her major is Finance” is stored more than once. If Mary changes her major, all her majors stored in the system must be changed together.

10
New cards

Inconsistency

when the data system is huge, making changes to all redundant data is difficult if not impossible

11
New cards

Integrity

Consistency among stored data.

ex: this is violated when you cant find that Alex Wilson received a grade in MKT211 but cant find Alex in the student roster because the two rosters are not consistent.

12
New cards

Lack of integrity leads to ___________.

corrupted data

13
New cards

Flat Database

a single collection of data with no relation to any other collections of data

ex: spreadsheets

14
New cards

Relational Database

multiple collections of data that may be related to each other. a set of related tables.

15
New cards

Bit

stands for Binary Digit → “1” or “0”

16
New cards

Byte

8 bits → a single character

17
New cards

Field/column

one single data item

18
New cards

Record/Row

a set of related fields

19
New cards

Table

a set of related records

20
New cards

database management system (DBMS)

the software used to manage a database. Provide an interface to view and change the design of the database, create queries

ex: Access is Microsoft’s DBMS

21
New cards

Personal Use DBMS

Microsoft Access

22
New cards

Industrial/Enterprise Use DBMS

Oracle, MS SQL Server, MySQL

23
New cards

What do you put into a Database?

Entities, their attributes, and the relationships between those entities

24
New cards

Entity

A real or abstract object in the real world. becomes a table in the database

ex: customer, automobile, order (person, place, or thing - like a noun)

25
New cards

Attribute

Characteristic of an entity. becomes a column in the table.

ex: height, weight, name, address, age

26
New cards

Relationship

a connection or link between entities

ex: a customer “places” orders

27
New cards
<p>ERD</p>

ERD

Entity-Relationship Diagram

<p>Entity-Relationship Diagram</p>
28
New cards

Common Field

appears in both tables

<p>appears in both tables</p>
29
New cards

Primary Key

an identifier, a field that is unique for each record

<p>an identifier, a field that is unique for each record</p>
30
New cards

Foreign Key

a field in another table that matches one of the values of the primary key

<p>a field in another table that matches one of the values of the primary key</p>
31
New cards

Normalization

to normalize a database means to design it in a way that

  1. reduced data redundancy

  2. ensures data integrity

32
New cards

Business Intelligence

used to describe the process that organizations use to take data they are collecting and analyze to obtain a competitive advantage

33
New cards

Big Data

massively large data sets that conventional data processing technologies do not have the sufficient power to analyze

34
New cards

Data Visualization

graphical representation of information and data (charts, graphs, maps)

35
New cards

Data Warehouses

extract data from one or more of the organizations databases and load it into the data warehouse (another database) for storage and analysis

36
New cards

Bottom-Up Data Warehouse

starts by creating small data warehouses called data marts to solve specific business problems

37
New cards
<p>Top-Down Data Warehouse</p>

Top-Down Data Warehouse

start by creating an enterprise-wide data warehouse and then, as specific business needs are identified, create smaller data marts form the data warehouse.

38
New cards

Data Mining

the process of analyzing data to find previously unknown and interesting trend, patterns, and associations in order to make decisions. The Core of the Knowledge Discovery Process

39
New cards

Machine Learning

a data mining method that is used to analyze data and build models without explicitly being programmed to do so. Two branches: Supervised and Unsupervised.

40
New cards

Supervised Machine Learning

when an organization has data about past activity that has occurred and wants to replicate it

41
New cards

Unsupervised Machine Learning

when an organization has data and wants to understand the relationships between different data points.

42
New cards

You can combine data from two tables using ________

Queries

43
New cards

_______ are added to help with data consistency

Validation rules

44
New cards