CARDS 2026/2027 | VERIFIED ACTUAL EXAM
QUESTIONS & DETAILED ANSWERS | GRADED A+
COMPLETE EXAM REVIEW
• This study card set covers verified exam questions for DTSA 5505 Data Mining
Methods (2026/2027), graded A+ and designed for complete exam mastery with
detailed EXPERT RATIONALE for every answer.
• Use this material by reading each question carefully, selecting your answer before
checking the highlighted correct option and EXPERT RATIONALE below it — ideal
for active recall and spaced repetition study sessions.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
DTSA 5505 — DATA MINING METHODS VERIFIED EXAM QUESTIONS & DETAILED
ANSWERS | GRADED A+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. What is the primary goal of data mining?
A. To store large amounts of data in relational databases
B. To create visual dashboards for business users
C. To discover previously unknown and useful patterns from large datasets
D. To manage and administer database servers
E. To design ETL pipelines for data warehouses
CORRECT ANSWER: C. To discover previously unknown and useful patterns
from large datasets
EXPERT RATIONALE: Data mining is defined as the process of extracting
hidden, previously unknown, and potentially useful patterns or knowledge from
large amounts of data. It goes beyond simple data storage or visualization.
2. Which of the following best describes the KDD process?
A. Knowledge Discovery in Databases — a multi-step process ending in pattern
evaluation
,B. Key Data Distribution — a method of distributing data across clusters
C. Kernel Density Decomposition — a statistical smoothing technique
D. Knowledge Driven Development — an agile software methodology
E. K-means Data Detection — a clustering initialization strategy
CORRECT ANSWER: A. Knowledge Discovery in Databases — a multi-step
process ending in pattern evaluation
EXPERT RATIONALE: KDD stands for Knowledge Discovery in Databases and
involves selection, preprocessing, transformation, data mining, and
interpretation/evaluation of patterns. It is the broader process in which data mining
is one step.
3. In the KDD process, what step directly precedes data mining?
A. Pattern evaluation
B. Data selection
C. Data transformation
D. Knowledge presentation
E. Database design
CORRECT ANSWER: C. Data transformation
EXPERT RATIONALE: The KDD process flows as: Selection → Preprocessing →
Transformation → Data Mining → Interpretation/Evaluation. Data transformation
(normalizing, encoding, aggregating) comes right before the mining step.
4. Which of the following is NOT a major task of data mining?
A. Classification
B. Clustering
C. Association rule mining
,D. Database normalization
E. Regression
CORRECT ANSWER: D. Database normalization
EXPERT RATIONALE: Database normalization is a database design technique,
not a data mining task. The core data mining tasks include classification, clustering,
regression, association rule mining, anomaly detection, and summarization.
5. What type of data mining task is used to predict a continuous numerical
value?
A. Classification
B. Clustering
C. Summarization
D. Regression
E. Association
CORRECT ANSWER: D. Regression
EXPERT RATIONALE: Regression is a predictive data mining task that models
the relationship between input features and a continuous output variable, such as
predicting house prices or stock values.
6. Which data mining task groups similar data points together without
predefined labels?
A. Classification
B. Regression
C. Clustering
D. Association rule mining
E. Sequence mining
, CORRECT ANSWER: C. Clustering
EXPERT RATIONALE: Clustering is an unsupervised learning task that partitions
data into groups (clusters) where objects within a cluster are more similar to each
other than to those in other clusters, without using predefined class labels.
7. Support in association rule mining is defined as:
A. The ratio of rules that are correct to total rules generated
B. The fraction of transactions that contain all items in the itemset
C. The conditional probability that consequent occurs given antecedent
D. The improvement over the baseline prediction rate
E. The number of clusters formed in the dataset
CORRECT ANSWER: B. The fraction of transactions that contain all items in
the itemset
EXPERT RATIONALE: Support(A→B) = (Number of transactions containing both
A and B) / (Total transactions). It measures how frequently the itemset appears in
the dataset.
8. Confidence in association rule mining A→B is calculated as:
A. Support(A∪B) / Total transactions
B. Support(A∪B) / Support(A)
C. Support(A) / Support(B)
D. Support(B) / Support(A∪B)
E. Support(A) × Support(B)
CORRECT ANSWER: B. Support(A∪B) / Support(A)