quiz Flashcards

1
Q

Why is the role of the accountant chaning?

A

Technology has taken over many activities historically done by accountants

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

Which of the following is not a basic characteristic of a data warehouse?

  • Relational
  • Real-time
  • Time-variant
  • Nonvolatile
A

Real-time

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

Which of the following is not a category of SQL commands?

  • TCL
  • SCL
  • DCL
  • DDL
A

SCL

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

What does the robustness of a data mining method refer to?

A

Its ability to overcome noisy data to make somewhat accurate predictions

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

How is the precision calculated?

A

Precision is the ratio of correctly classified positive observations to the total predicted positive observations

TP / (TP+FP)

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

How is the recall calculated?

A

Recall, also known as sensitivity or true positive rate, is the ratio of correctly classified positive observations to all the observations in the actual class.

TP / (TP+FN)

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

How is the accuracy calculated?

A

Accuracy is the ratio of correctly classified observations (both positive and negative) to the total observations

(TP+TN) / total observations

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

What does it mean when a database is time-variant?

A

the ability to track and manage changes to the data over time. The data warehouse not only stores current data but also historical data.

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

What is nominal data?

A

Nominal data represents categories with no intrinsic ordering or ranking.

EG types of fruit

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

What is interval data?

A

Interval data is numerical data with meaningful intervals between values, but no true zero point.

EG celcius

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

What is ordinal data?

A

Ordinal data represents categories with a meaningful order, but the intervals between categories are not necessarily equal.

EG movie ratings

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

What is ratio data?

A

Ratio data is numerical data with a meaningful zero point, allowing for both differences and ratios to be calculated.

EG weight in kg

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

Would a K-means clustering algorithm always show the same results for a given set of input data if we keep k and all other parameters contsant?

A

No, because the initial selection of cluster center points is random.

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

In text mining, stemming is the process of

A

Reducing multiple words to their base or root

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

In text mining, what are 3 methods used to reduce the size of a sparse matrix?

A
  • Using a domain expert
  • Using singular value decomposition (SVD)
  • Eliminating rarely occurring terms.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The k in k-means clustering algorithms stands for the number of …

A

clusters

17
Q

In process mining, a metamodel provides information about

A

The model notation

18
Q

What is a sparse matrix?

A

a matrix whose rows and columns are predominantly filled with zeros.