Midterm 2: Ch. 5, 6, 8, labs 3-6 Flashcards

(237 cards)

1
Q

(not a question) Cards formatted as:

A

[Chapter #] | [Flashcard first side]

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

5| What is a database? (icon represented as a cylinder DB)

A

An organized connection of data; a collection of integrated records. (a collection of tables + relationships among the rows + special data (metadata)).

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

5| What is the purpose of databases?

A

To organize and keep track of multiple themes, such as grades or emails.

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

5| When should data be stored in a spreadsheet versus a database?

A

Single theme - store in a spreadsheet; Multiple themes - store in a database.

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

5| Why is it important to learn about databases?

A

Databases are ubiquitous in commerce and essential for turning data into useful information.

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

5| What are the components of a database?

A

Hierarchy of data elements and relationships among rows.

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

5| What is a Database Management System (DBMS)? - do business, make shit… what lol

A

A system that creates, processes, and administers databases. Many don’t develop their own DBMS (liks os), and use licensed products.

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

Database administration (DBA)

A

person or department that develops procedures and practices to ensure efficient/orderly multiuser processing of the database, to control changes to the database structure, and to protect the database.

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

Database Administration tasks

A

Development, Operation, backup and recovery adaptation

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

5| What are the functions of a DBMS?

A
  1. Creating the Database and its structures 2. Processing the database 3. Administering the database.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

5| What are some licensed DBMS vendors?

A

IBM, Microsoft, Oracle, and others.

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

5| What is an example of an open-source DBMS?

A

MySQL: License-free for most applications.

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

5| What are the DBMS process operations?

A
  1. Read 2. Insert 3. Modify 4. Delete data.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

DB2
Access
SQL Server
Oracle Database

A

Popular DBMS products.
Db2 - IBM (enterprise class)
Access - Microsoft (personal and small workgroup)
SQL Server - Microsoft (enterprise class)
Oracle db - Oracle (enterprise class)

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

MySQL

A

Popular open source DBMS product, license-free for most applications

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

5| What is SQL?

A

Structured Query Language, an international standard language for creating and processing databases.

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

5| What is an example SQL command?

A

INSERT INTO Student ([Student Number], [Student Name], H W1, H W2, MidTerm) VALUES (1000, ‘Franklin, Benjamin’, 90, 95, 100);

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

DATABASE APPLICATION

A

Collection of forms, reports, queries, and application programs that facilitates users’ processing of a database. A database can be processed by many different database applications.

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

5| What are the four elements of a database application?

A

Purposes, Forms, Reports, Queries, and Application programs.

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

5| What do FORMS in a database application do?

A

Data entry forms used to view data, insert new, modify, and delete existing data. (collection of forms, reports, queries)

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

5| What do REPORTS in a database application do?

A

Presentation of data in a structured, meaningful context

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

5| What do QUERIES in a database application do?

A

Request for data from a database

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

Graphical Queries

A

Queries, criteria in which user clicks on graphic (sharepoint.. more advanced onedrive)

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

5| What are reports in a database application?

A

Structured presentation of data using sorting, grouping, filtering, and other operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
5| What are queries in a database application?
Search using values provided by the user.
26
Thin-client applications
dont need to be preinstalled (browser application)
27
5| What are application programs in a database application?
Provide security, data consistency, and special purpose processing.
28
5| What are nontraditional DBMS products?
DBMS that store new data differently, focusing on ACID transactions.
29
5| What does ACID stand for?
Atomic, Consistent, Isolated, Durable transactions. (ignore; this is for me: radio, fixed, alone, strong)
30
Atomic
all of transaction is processed OR none of it is
31
Consistent
transaction processed in same manner
32
Isolated
whether processed alone or in presence of million other transactions
33
Durable
Once transaction is stored, it never goes away--even in presence of failure
34
5 | What is Dynamo?
Amazon-developed nonrelational data store.
35
5| What is Bigtable?
Google-developed nonrelational data store.
36
5| What is Cassandra?
Facebook-developed nonrelational data store using concepts from both Dynamo and Bigtable.
37
5| What is a Top-Level Project (TLP)?
Open-source Cassandra by Apache.
38
5| What is New SQL DBMS?
Processes very high levels of transactions like NoSQL DBMS but provides ACID support.
39
NoSQL DBMS
Refers to new DBMS products that support very high transaction rates (misleading, should be nonrelational DBMS) NO ACID
40
5| What are in-memory DBMS using SQL extension?
DBMS products that process databases in main memory. Examples include SAP HANA and Tableau.
41
Foreign Keys
Column/set of columns in the table that is the key of a different table. to establish a link between the data in two tables. Ex. email table communicates with student table for student number.
42
Key
a specific field or combination of fields within a table that uniquely identifies each row (record), acting as a unique identifier to access and retrieve specific data within a database
43
Primary Key
is a column or group of columns that identifies a unique row in a table.
44
5| What is Slick Analytics?
A strategy for merging storage and analysis of cloud-based data.
45
5| What was Laredo Petroleum's old approach?
Used numerous spreadsheets and manual calculations, diminishing the value of data.
46
5| What is Laredo Petroleum's new approach?
Uses cloud storage and cloud analytics.
47
Columns (aka. fields/groups/bytes)
Represent features of an entry: ex. PartNumber, EmployeeName, Sales Date. (horizontal)
48
Rows (aka. records, groups)
(vertical) collection of data for columns. Ex for the column student number a row could be 1325
49
Metadata
Data that describes data.. (Special data, describes structure of database). Ex. column says field name.. meta data in rows below say EmailNum, Date, message, StudentNum... which is metadata.
50
Characters (aka bytes)
Group of characters: ex. [B A K E R] could be numbers letters etc
51
Table (aka files)
groups of similar rows/records in a database
52
Multiuser processing
Situation exists when multiple users process database at same time (ex. multiple people buying tickets online, someone check out last 2, others think there are still some left but are then disappointed)
53
Lost-update Problem
Problem that exists in database applications where two users update same data item, but only one of changes is recorded in the data. Can be resolved using locking.
54
MongoDB
Open source, document-oriented, nonrelational DBMS. Can store stuff like customer images in same database as metadata
55
More Known vs Less Known SQL
ex. MongoDB is unknown in that they don't know how robust or how it works for the query facility. However, mircosoft SQL server database is known and the may already be using it in which they can integrate.
56
Relational Model
Old method of processing databases (not used anymore, never a natural fit). The standard for more than 30 years. They were fixed sized tables, the theory of normalization came about because of limited storage, processing speeds back in 1960s to early 1970s.
57
6| What is the Cloud?
Elastic leasing of pooled computer resources over the internet.
58
6| What does 'Elastic' mean in cloud computing?
Automatically adjusts for unpredictable demand and limits financial risks.
59
6| What does 'Pooled' refer to in cloud computing?
Same physical hardware, allowing for economies of scale.
60
6| What is Cloud Computing?
Applications, data, and processing power can be used remotely.
61
6| Why do organizations prefer the Cloud?
Lower costs, ubiquitous access, improved scalability, elasticity, and virtualization technology.
62
6| What is Infrastructure as a Service (IaaS)?
Offers virtual and physical IT infrastructure and networking. -the most basic offering
63
6| What is Platform as a Service (PaaS)?
has vendors provide hosted computers, an operating system, and a DBMS.
64
6| What is Software as a Service (SaaS)?
A cloud-based service that can be built on top of IaaS.
65
6| What are the positive aspects of Cloud over in-house housing?
Small capital requirements, speedy development, superior scalability, known cost structure, and focus on core business.
66
6| What are the negative aspects of Cloud compared to in-house housing?
Dependency on vendor, loss of control over data location, significant development effort, and ongoing support costs.
67
6| When does using the Cloud not make sense?
When law or standard industry practice requires physical control or possession of the data.
68
6| What is an example of resource elasticity in the Cloud?
A car manufacturer runs an ad during the Academy Awards and the cloud vendor increases server capacity based on site visits.
69
6| What are the types of Cloud offerings?
SaaS, PaaS, and IaaS.
70
6| What is a Public Cloud?
A computing service offered over the internet, available to multiple organizations and users, typically managed by third-party providers.
71
6| What is a Private Cloud?
A dedicated computing environment used exclusively by one organization, offering greater control and security.
72
6| What is a Hybrid Cloud?
Combines public and private clouds, allowing data and applications to be shared between them.
73
6| What is a Content Delivery Network (CDN)?
Stores user data in many different geographical locations and makes data available on demand.
74
6| What are the benefits of a CDN?
Decreased load time, reduced load on origin server, increased reliability, protection from DOS, and reduced delivery costs for mobile users.
75
VPN
a network that uses the Internet to create the appearance of private, secure connections.
76
Amazon EC2 Microsoft Azure Apple iCloud Office 365
Amazon EC2 is an example of IaaS (infrastructure as a service). Microsoft Azure is an example of PaaS (platform as a service). Apple iCloud is an example of SaaS (software as a service). Office 365 is an example of SaaS (software as a service).
77
What is a primary benefit from the cloud's RESOURCE ELASTICITY?
the cloud vendor will programmatically increase its servers to keep response time below the 0.5-second threshold goal
78
79
8| What are the three interconnected activities in a business process?
Check inventory, Check customer credit, Approve special terms.
80
8| What does the arrow labeled 'Order in stock' indicate?
It indicates the connection between 'Check inventory' and 'Check customer credit'.
81
8| What does the arrow labeled 'Order in stock and credit approved' indicate?
It indicates the connection between 'Check customer credit' and 'Approve special terms'.
82
8| What happens if the inventory is out of stock?
The customer is informed.
83
8| What occurs if customer credit does not meet requirements?
The credit is rejected.
84
8| What can happen after special terms are approved?
They may be rejected by the customer, or the order is confirmed.
85
8| What are structured processes?
Formally defined, standardized processes that involve day-to-day operations.
86
8| What are dynamic processes?
Flexible, informal, and adaptive processes that involve strategic and less structured managerial decisions.
87
8 | What is an example of a structured process?
Accepting a return, placing an order.
88
8| What is an example of a dynamic process?
Deciding where to open a new store location.
89
8| What characterizes workgroup processes?
Support one or more workgroup processes, often formalized, and can duplicate data.
90
8| What is an example of a workgroup process in sales and marketing?
Lead generation.
91
8| What is the scope of an enterprise process?
Supports one or more enterprise processes with 100–1,000+ users.
92
8| What is a characteristic of inter-enterprise processes?
Support one or more inter-enterprise processes with 1,000+ users.
93
8| What is process efficiency?
The ratio of outputs to inputs.
94
8| What is process effectiveness?
How well a process achieves the organizational strategy.
95
8| How can processes be improved?
By changing process structure, resources, or both.
96
8| What is an information silo?
A condition that exists when data are isolated in separate information systems.
97
8| What are some problems caused by information silos?
Duplicated data, data inconsistency, disjointed processes, increased costs.
98
8| What is one solution to eliminate information silos?
Integrate into a single database.
99
8| What is Business Process Reengineering (BPR)?
Integrated data and enterprise systems create stronger linkages in value chains.
100
8| What is the primary purpose of ERP systems?
Integration of business operations into a single, consistent computing platform.
101
8| What are the elements of ERP systems?
Hardware, software, data, procedures, and people.
102
8| What is the purpose of Customer Relationship Management (CRM)?
Manage all interactions with customers through the customer life cycle.
103
8| What does Enterprise Application Integration (EAI) do?
Connects system 'islands' and enables sharing of data.
104
8| What is the difference between ERP and EAI?
ERP has a central database and requires replacing old software, while EAI adds a layer without removing existing software.
105
106
Lab| What is a Relative Cell Reference?
Changes when copied to another location (e.g., A1 → B1).
107
Lab| What is an Absolute Cell Reference?
Stays the same when copied ($A$1).
108
Lab| What is a Mixed Cell Reference?
Partially locked, either row or column stays fixed ($A1 or A$1).
109
Lab| What is a Named Range?
A descriptive name for a range of cells (e.g., 'SalesData').
110
Lab| How do you create a Named Range?
Select cells → Click Formulas → Define Name → Enter name.
111
Lab| How do you use a Named Range in a formula?
Instead of A1:A10, use SalesData in functions like =SUM(SalesData).
112
Lab| What is the formula for the LOOKUP function?
LOOKUP(lookup_value, lookup_vector, result_vector)
113
Lab| Give an example of the LOOKUP function.
=LOOKUP(5, A2:A10, B2:B10) ## Footnote Finds 5 in A2:A10 and returns corresponding value from B2:B10.
114
Lab| What does the TODAY() function do?
Returns the current date.
115
Lab| What does the NOW() function do?
Returns the current date and time.
116
Lab| What do YEAR(A1), MONTH(A1), and DAY(A1) do?
Extracts year, month, or day from a date.
117
Lab| What is the DATEDIF function?
Calculates difference between two dates ('Y', 'M', 'D').
118
Lab| What does the SUMIF function do?
Adds numbers that meet a condition.
119
Lab| What does the COUNTIF function do?
Counts cells that meet a condition.
120
Lab| What does the AVERAGEIF function do?
Averages values that meet a condition.
121
Lab| What does the AVERAGEIFS function do?
Averages values that meet multiple conditions.
122
Lab| What does the UPPER function do?
Converts text to uppercase.
123
Lab| What does the LOWER function do?
Converts text to lowercase.
124
Lab| What does the PROPER function do?
Capitalizes the first letter of each word.
125
Lab| What does the TRIM function do?
Removes extra spaces.
126
Lab| What does the CONCATENATE function do?
Joins text together (Modern alternative: TEXTJOIN(' ', TRUE, 'Hello', 'World')).
127
Lab| What is a Column Chart?
Compares values using vertical bars.
128
Lab| What is a Bar Chart?
Horizontal version of a column chart.
129
Lab| What is a Line Chart?
Shows trends over time.
130
Lab| What is a Pie Chart?
Displays proportions.
131
Lab| What is a Scatter Plot?
Shows relationships between two variables.
132
Lab| How do you change a chart layout?
Click Chart → Chart Tools → Design → Quick Layout.
133
Lab| How do you apply a style to a chart?
Click Chart → Chart Tools → Design → Chart Styles.
134
Lab| How do you change chart data?
Click Chart → Chart Tools → Design → Select Data.
135
Lab| How do you update a chart automatically?
Edit the original table; the chart updates automatically.
136
Lab| What are Sparklines?
Tiny charts inside a single cell.
137
Lab| What are Data Bars?
Conditional formatting that visually represents values.
138
Lab| What is the IF function formula?
=IF(logical_test, value_if_true, value_if_false)
139
Lab| Give an example of the IF function.
=IF(B2>=C2, 'Met Target', 'Did Not Meet Target')
140
Lab| What is a Nested IF function?
Checks multiple conditions in sequence.
141
Lab| What is the formula for a Nested IF function?
=IF(condition1, result1, IF(condition2, result2, result3))
142
Lab| Give an example of a Nested IF function.
=IF(B2>=8000, 'Excellent', IF(B2>=6000, 'Good', IF(B2>=4000, 'Average', 'Needs Improvement')))
143
Lab| What is the IFS function formula?
=IFS(condition1, result1, condition2, result2, ..., TRUE, default_result)
144
Lab| Give an example of the IFS function.
=IFS(B2>=8000, 'Excellent', B2>=6000, 'Good', B2>=4000, 'Average', TRUE, 'Needs Improvement')
145
Lab| What is the SWITCH function formula?
=SWITCH(expression, value1, result1, value2, result2, ..., default_result)
146
Lab| Give an example of the SWITCH function.
=SWITCH(D2, 'HR', 'Support', 'IT', 'Tech', 'Finance', 'Accounts', 'Marketing', 'Sales', 'Unknown')
147
Lab| What does the AND function do?
=AND(condition1, condition2, ...)
148
Lab| What does the OR function do?
=OR(condition1, condition2, ...)
149
Lab| What does the NOT function do?
=NOT(condition)
150
Lab| What does the YEAR function do?
=YEAR(E2) - Extracts year from a date.
151
Lab| What does the MONTH function do?
=MONTH(E2) - Extracts month from a date.
152
Lab| What does the DAY function do?
=DAY(E2) - Extracts day from a date.
153
Lab| What does the TODAY function do?
=TODAY() - Returns the current date.
154
Lab| How do you check if an employee joined before 2020?
=IF(YEAR(E2)<2020, 'Joined Before 2020', 'Joined in 2020 or later')
155
Lab| What is the IFERROR function formula?
=IFERROR(expression, alternative_value)
156
Lab| Give an example of the IFERROR function.
=IFERROR(B2/C2, 'Error - Check Data')
157
Lab| What are the steps to create a Table?
Select data → Insert → Table → Check 'My table has headers.' OR press Ctrl + T.
158
Lab| What are the steps to create a PivotTable?
Click inside the table → Insert → PivotTable. Choose New Worksheet or Existing Worksheet.
159
Lab| How do you summarize data with PivotTables?
Right-click a value → Value Field Settings → Choose Sum, Count, Average.
160
Lab| How do you apply filters in PivotTables?
Click the dropdown arrow on a field → Select categories.
161
Lab| How do you sort data in PivotTables?
Click a column → Sort & Filter → Sort by Highest to Lowest.
162
Lab| How do you refresh data in a PivotTable?
Right-click the PivotTable → Refresh.
163
Lab| How do you change the data source of a PivotTable?
PivotTable Analyze → Change Data Source.
164
Lab| How do you add a PivotChart?
Select the PivotTable → Insert → PivotChart → Choose a chart type.
165
Lab| How do you customize a PivotChart?
Add Titles → Chart Tools → Chart Title. Add Data Labels → Chart Tools → Data Labels.
166
Lab| How do you apply filters to a PivotChart?
Click the Filter button.
167
Lab| How do you insert a Slicer?
Click the PivotTable → PivotTable Analyze → Insert Slicer → Select a field.
168
Lab| What is the first step in the practice exercise?
Load Student_Data.xlsx.
169
Lab| What is the second step in the practice exercise?
Create a PivotTable showing Total Marks for each Course.
170
Lab| What is the third step in the practice exercise?
Add a PivotChart for Average Marks per Course.
171
Lab| What is the fourth step in the practice exercise?
Add a new student and Refresh the PivotTable.
172
173
What is client-server architecture?
A computing model where multiple clients (devices) request and receive services from a centralized server.
174
What is cloud?
A system of computing resources (servers, storage, databases) available over the Internet.
175
What is cloud computing architecture?
The framework that allows on-demand computing services via the cloud, eliminating the need for on-premises hardware.
176
What is cloud interoperability?
The ability of different cloud services and platforms to work together seamlessly.
177
What is a computer terminal?
A device used to interact with a computer system, typically without local processing power.
178
What is a content delivery network (CDN)?
A network of distributed servers that deliver web content faster by caching data closer to users.
179
What is data fabric?
A unified data management architecture that enhances access, integration, and security across cloud and on-premises systems.
180
What does elastic mean in cloud computing?
The ability of cloud computing resources to expand or shrink dynamically based on demand.
181
What is a hybrid cloud?
A computing environment combining private and public cloud resources for flexibility and efficiency.
182
What is infrastructure as a service (IaaS)?
A cloud computing model that provides virtualized computing resources, such as storage and networking, on demand.
183
What is mainframe architecture?
A traditional computing model that relies on large, centralized computers (mainframes) to process data.
184
What are mainframes?
Powerful, high-capacity computers used for large-scale data processing and critical business operations.
185
What is a multicloud strategy?
The use of multiple cloud service providers to avoid reliance on a single vendor and enhance resilience.
186
What are on-premises systems?
IT infrastructure physically located within an organization's facilities rather than in the cloud.
187
What does 'over the Internet' mean?
A method of delivering services or accessing resources via an Internet connection.
188
What is platform as a service (PaaS)?
A cloud computing model that provides development and deployment tools for building applications.
189
What does pooled mean in cloud computing?
A cloud computing concept where resources are shared among multiple users for efficiency.
190
What is a private cloud?
A cloud infrastructure used exclusively by one organization for enhanced security and control.
191
What is a virtual private cloud?
A subset of a public cloud that has highly restricted, secure access.
192
What is a public cloud?
A cloud environment where services are provided to multiple organizations or individuals over the Internet.
193
What is a remote action system?
Technology that enables users to control devices or perform tasks remotely.
194
What does scalable mean?
The ability of a system to handle increased workloads by adding resources.
195
What is software as a service (SaaS)?
A cloud computing model where software applications are delivered over the Internet on a subscription basis.
196
What is telemedicine?
The use of telecommunications technology to provide medical services remotely.
197
What is telelaw enforcement?
The use of remote technologies for law enforcement activities, such as surveillance or automated ticketing.
198
What is telesurgery?
A surgical procedure performed remotely using robotic systems and communication technologies.
199
What is a thin client?
A lightweight computing device that relies on a central server for processing and storage.
200
What is a tunnel in networking?
A secure communication channel used to transmit data over a network.
201
What is a virtual private network (VPN)?
A secure, encrypted connection that allows users to access a private network remotely over the Internet.
202
What is virtualization?
A process that allows a computer to share its hardware resources with multiple digitally separated environments.
203
What is the significance of pooled cloud resources?
Cloud resources are pooled because many different organizations use the same physical hardware; they share that hardware through virtualization.
204
How do companies use web services internally?
By building internal information systems that use the same standards as cloud-based web services.
205
What are activities in process management?
Subparts of processes that receive inputs and produce outputs.
206
What are the three activity processes?
Check inventory, check customer credit, approve special terms.
207
What are structured processes?
Formally defined, standardized processes that involve day-to-day operations.
208
What are dynamic processes?
Flexible, informal, adaptive processes that normally involve strategic and less specific managerial decisions and activities.
209
What are the three levels of organizational scope?
Workgroup, enterprise, inter-enterprise.
210
What is a workgroup process?
Exists to enable workgroups to fulfill the charter, purpose, and goals of a particular group or department.
211
What is a workgroup information system?
IS that supports a particular department/workgroup.
212
What are functional information systems?
Workgroup information systems that support a particular business function.
213
What is an enterprise process?
Span an organization and support activities in multiple departments.
214
What are enterprise information systems?
IS that support cross-functional processes and activities in multiple departments.
215
What are the characteristics of enterprise information systems?
Eliminate workgroup data duplication.
216
What are inter-enterprise information systems?
An information system that supports one or more inter-enterprise processes.
217
What is process efficiency?
Measure of the ratio of process outputs to inputs.
218
What is process effectiveness?
Measure of how well a process achieves organizational strategy.
219
How can processes be improved?
Change the process structure, change the process resources, or change both.
220
How can information systems improve process quality?
By performing activity, augmenting a human who is performing an activity, and controlling data quality and process flow.
221
What is an information silo?
Condition that exists when data are isolated in separate information systems, usually leading to data integrity problems.
222
What is data integrity?
Condition that exists when data values are consistent and in agreement with one another.
223
How can silos be fixed?
Integrate data into a single database and revise applications to use the database.
224
What is business process reengineering?
Altering existing and designing new business processes to utilize new information systems technology.
225
What are inherent processes?
Procedures that must be followed to effectively use licensed software.
226
What is CRM?
Customer relationship management system that manages all interactions with the customer, from lead generation to customer service.
227
What is the customer life cycle?
Process of marketing customer acquisition, relationship management, and loss/churn.
228
What are the steps in the customer life cycle?
Marketing, customer acquisition, relationship management, loss/churn.
229
What is the primary task of CRM?
Determine features you need, find a package that meets that set of needs.
230
What is ERP?
A suite of applications called modules, a database, and a set of inherent processes for consolidating business operations into a single, consistent computing platform.
231
What does ERP forecast?
Sales and create manufacturing plans/schedules to meet them.
232
Who is the worldwide leader of ERP vendors?
SAP.
233
What is EAI?
A suite of software applications that integrates existing systems by providing layers of software and metadata that connect applications together.
234
What is self-efficacy?
A person's belief that they can successfully perform tasks required on the job.
235
What are distributed systems?
Systems in which application processing is distributed across multiple computing devices.
236
What is a requirements gap?
Specified when an organization knows both what it needs and what a new product does.
237
What is isolated data?
Created by information systems at the enterprise level, being integrated into inter-enterprise systems using distributed applications.