Module 1 Flashcards

1
Q

What is Information Management?

A

Information Management is collecting and managing information from 1 or more sources and distributing that information to one or more audiences.

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

What is a Table

A

A list of rows and columns that store information about a particular subject

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

What is a field

A

field refers to an individual piece of data within a table

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

What is a record

A

A record can be considered a set of fields put together to form a complete data statement.

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

What is a Database?

A

A database is a collection of data you want to manage, rearrange, and later add to/edit. It is a collection of structured data that is organized so that its content can be easily accessed, managed, and updated.

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

What is a DBMS

A

A database management system is a software or collection of programmes that enables a person to store, modify, and extract information from a database in an organized way.

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

What is the traditional file process and the Database approach to file processing?

A

Traditional file processing involves carrying out a task such as transaction handling or record keeping manually, usually for a particular functional area.

Database approach to file processing involves an integrated structure of database and information flow that optimizes the collection, transfer, and presentation of information throughout a multi-level organisation.

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

What are the advantages of the Database approach compared to the Traditional approach?

A

Speed, Efficency, Data Quality, Completeness, Consistency, Accuracy, Data handling, Data processing, Validity.

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

What the frick is a master file and transaction file?

A

A master file is a file that is used as a reference for a particular application. This can be updated.

A transaction file is a temporary file of data that is being used to update the master file.

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

What are the types of file organization?

A

Sequential- Allows you to store data in a specific order. This order determines how it is accessed.

Index Sequential- Stored in ‘some order’ and is accessed using an index or primary key value.

Direct Access- Literally accessing it directly.

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

What are the types of DATABASE organization? (Very different from FILE)

A

. Hierarchical Database
Data is arranged like a family tree (one parent, many children).
Fast but rigid—only one path to access data.

Relational Database
Data is stored in tables (like Excel sheets).
Uses keys to link tables (e.g., customer IDs connecting orders to customers).
Most common type (e.g., MySQL, SQL Server).

Network Database
Like hierarchical but more flexible—children can have multiple parents.
Rare today, but useful for complex connections.

Object-Oriented Database
Stores data like objects in programming (with attributes and methods).
Good for apps like games or design software.

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

How are files and databases used in organisations?

A

including store, organise, search, and retrieve;
eliminate redundancies; data mining, data marts
and data warehouses.

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

What is Data Mining?

A

Data mining is the searching of information that fits a specific criteria. It is the act of analyzing a database/data warehouse and searching for new information based on the required data.

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

What is a data warehouse?

A

A data warehouse is the place where scattered data from existing operational corporate files and databases is collected.

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

What is data warehousING?

A

Data warehousing refers to a storage location for a copy of transactional data/ operational files, and databases. It involves moving operational fields and databases from multiple applications.

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

What is a data mart?

A

A data mart is a subset of the data warehouse that is used to get data out to the users.

17
Q

What is data redundancy?

A

Refers to duplicate data, which takes up space and increases inconsistencies and errors.

18
Q

What is a DFD

A

A DFD (Data Flow Diagram) is a visual tool used to show how data moves throughout an organization

19
Q

How does the absence of data quality, accuracy, and timeliness impact organisations?

A

loss of revenue, sales, and competitive
advantage, loss of customers; poor decision-making due to poor data quality; missed opportunities; impact on problem solutions.

20
Q

What is Normalization?

A

Normalization is the process of organizing data efficiently in a database to minimize redundancies

21
Q

What are the benefits of Normalization

A

-Improves redundancy
-Creates data consistency
-Improves data integrity
-Saves space
-Improves Overall efficiency.

22
Q

What is an anomaly? insert Spider-Man theme

A

Anomalies are errors caused when there is too much redundancy in the database’s information

23
Q

What is the purpose of normalization?

A

Purpose of normalisation: (Including improving
performance, data consistency, data integrity);
attribute redundancy and anomalies.

24
Q

What is 1nf, 2nf and 3nf?

A

First normal form (1NF): removal of attribute
redundancy and anomalies.
Second normal form(2NF): repeating groups of data (or attributes).
Third normal form (3NF): partial and non-key
dependencies. (Columns not fully dependent on primary key are removed.)

25
What is a primary, composite, and foreign key?
Primary Key A unique identifier for each record in a table. Composite Key A combination of two or more columns that uniquely identify a record. . Foreign Key A field in one table that links to the primary key in another table.
26
What is SQL?
SQL (Structured Query Language) is the standard language used to manage and manipulate relational databases.
27
What are the SQL commands/statements?
Inserting: INSERT INTO table_name (column1, column2, column3, ...) VALUES (value1, value2, value3, ...); Example: INSERT INTO Customers (CustomerName, ContactName, Address, City, PostalCode, Country) VALUES ('Cardinal', 'Tom B. Erichsen', 'Skagen 21', 'Stavanger', '4006', 'Norway'); Deleting: Basic Syntax: DELETE FROM table_name WHERE condition; Specific: DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste'; All records: DELETE FROM Customers;