The Apriori principle states that every subset of a frequent itemset must also be frequent.
Incorrect! Try again.
19How can clustering help a robot interpret sensor data?
Unsupervised Learning application in Robotics and Sensor data
Easy
A.By replacing every physical sensor
B.By guaranteeing collision avoidance
C.By assigning human-written labels
D.By grouping similar sensor readings
Correct Answer: By grouping similar sensor readings
Explanation:
Clustering helps a robot identify natural groups or patterns in unlabeled sensor readings.
Incorrect! Try again.
20Which task is a common unsupervised learning application for sensor data?
Unsupervised Learning application in Robotics and Sensor data
Easy
A.Replacing missing hardware parts
B.Programming fixed motor commands
C.Entering labels for each reading
D.Detecting unusual sensor patterns
Correct Answer: Detecting unusual sensor patterns
Explanation:
Unsupervised methods can identify sensor readings that differ strongly from normal patterns.
Incorrect! Try again.
21A data analyst applies K-Means clustering with to customer data. After assigning points to clusters, which step occurs next during a standard iteration?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Medium
A.Recalculate each centroid as the mean of its assigned points
B.Randomly remove one cluster
C.Convert every feature into a binary value
D.Add a new centroid for each outlier
Correct Answer: Recalculate each centroid as the mean of its assigned points
Explanation:
After assigning points to the nearest centroid, K-Means updates each centroid by calculating the mean of the points currently assigned to that cluster.
Incorrect! Try again.
22Why is feature scaling usually important before applying K-Means to variables such as income and age?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Medium
A.It prevents distance from being dominated by large-scale features
B.It guarantees that all clusters contain equal points
C.It makes the number of clusters automatic
D.It removes the need to select initial centroids
Correct Answer: It prevents distance from being dominated by large-scale features
Explanation:
K-Means commonly uses distance calculations. A feature with much larger numerical values can dominate those distances unless the features are scaled.
Incorrect! Try again.
23A hierarchical clustering dendrogram shows that two groups merge only at a very large distance. What does this most likely indicate?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Medium
A.The algorithm used no distance measure
B.The groups are relatively dissimilar
C.The groups are highly similar
D.The groups contain identical observations
Correct Answer: The groups are relatively dissimilar
Explanation:
In a dendrogram, a merge at a large linkage distance indicates that the two groups are comparatively far apart or dissimilar.
Incorrect! Try again.
24Which situation is most suitable for DBSCAN rather than K-Means?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Medium
A.All observations must belong to a cluster
B.Clusters are spherical and their number is known
C.Clusters have irregular shapes and contain noise
D.Every cluster must have exactly the same size
Correct Answer: Clusters have irregular shapes and contain noise
Explanation:
DBSCAN groups dense regions, can identify irregularly shaped clusters, and labels isolated points as noise. It does not require the number of clusters in advance.
Incorrect! Try again.
25In DBSCAN, a point has at least the required number of neighbors within the radius . How is this point generally classified?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Medium
A.As a principal component
B.As a core point
C.As a terminal point
D.As a random centroid
Correct Answer: As a core point
Explanation:
A point with at least the minimum number of neighbors within its -neighborhood is a core point in DBSCAN.
Incorrect! Try again.
26A dataset contains 50 correlated sensor measurements. What is a primary reason to apply PCA before visualization?
Dimensionality Reduction and Principal Component Analysis
Medium
A.To replace missing values with labels
B.To create fewer uncorrelated features
C.To force every feature to have equal variance
D.To guarantee perfect classification accuracy
Correct Answer: To create fewer uncorrelated features
Explanation:
PCA transforms correlated variables into a smaller set of orthogonal principal components that preserve as much variance as possible.
Incorrect! Try again.
27What does the first principal component represent in PCA?
Dimensionality Reduction and Principal Component Analysis
Medium
A.The direction with the greatest data variance
B.The average value of every original feature
C.The feature with the smallest numerical range
D.The direction containing only categorical variables
Correct Answer: The direction with the greatest data variance
Explanation:
The first principal component is the linear direction that captures the maximum variance in the data.
Incorrect! Try again.
28Why are features commonly standardized before PCA when they use different units?
Dimensionality Reduction and Principal Component Analysis
Medium
A.To increase the original number of dimensions
B.To prevent high-scale features from dominating variance
C.To make every observation identical
D.To ensure the covariance matrix is diagonal initially
Correct Answer: To prevent high-scale features from dominating variance
Explanation:
PCA is variance-sensitive. Standardization gives features comparable scales so that units with larger numerical ranges do not dominate the components.
Incorrect! Try again.
29A PCA model retains three components explaining 72%, 18%, and 5% of the total variance. What percentage of variance is discarded if only these components are retained?
Dimensionality Reduction and Principal Component Analysis
Medium
A.8%
B.15%
C.5%
D.95%
Correct Answer: 5%
Explanation:
The retained variance is . Therefore, is discarded.
Incorrect! Try again.
30Which trade-off is most directly associated with reducing 100 features to 10 principal components?
Dimensionality Reduction and Principal Component Analysis
Medium
A.Higher dimensionality with no computational benefit
B.Guaranteed preservation of every original relationship
C.Lower storage with possible information loss
D.More original variables with less interpretability
Correct Answer: Lower storage with possible information loss
Explanation:
Dimensionality reduction can lower storage and computation, but discarded components may contain information relevant to a later analysis.
Incorrect! Try again.
31In association rule mining, a rule has support 0.30 and confidence 0.75. What does the confidence value indicate?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Medium
A.The rule contains seventy-five different items
B.Thirty percent of all transactions contain and
C.Seventy-five percent of transactions containing also contain
D.The rule occurs in seventy-five percent of all possible itemsets
Correct Answer: Seventy-five percent of transactions containing also contain
Explanation:
Confidence measures . A confidence of 0.75 means that 75% of transactions containing also contain .
Incorrect! Try again.
32A rule has support 0.20 and confidence 0.80. If the support of its antecedent is 0.25, which calculation gives the support of the rule's consequent relationship?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
Confidence is defined as . Thus, .
Incorrect! Try again.
33What is the main purpose of the Apriori property in frequent itemset mining?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Medium
A.Every subset of a frequent itemset must also be frequent
B.Every itemset must contain at least three products
C.Every rule must have confidence greater than support
D.Every transaction must contain the same number of items
Correct Answer: Every subset of a frequent itemset must also be frequent
Explanation:
The Apriori property states that all nonempty subsets of a frequent itemset must also be frequent. This allows infrequent candidates to be pruned.
Incorrect! Try again.
34If the itemset is below the minimum support threshold, what should Apriori do with any larger candidate containing both and ?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Medium
A.Prune it because its support cannot exceed that of
B.Evaluate it only after removing the support threshold
C.Replace it with a random two-itemset
D.Retain it because larger itemsets are always stronger
Correct Answer: Prune it because its support cannot exceed that of
Explanation:
Adding items cannot increase support. Therefore, any larger itemset containing an infrequent subset such as must also be infrequent.
Incorrect! Try again.
35A store discovers the rule {bread, butter} {jam}. Which action best uses this pattern?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Medium
A.Remove jam from all store inventories
B.Treat the rule as proof that bread causes jam purchases
C.Place the three products near one another
D.Reduce the minimum support to zero for every product
Correct Answer: Place the three products near one another
Explanation:
A frequent association can support product placement or recommendation strategies. It does not establish that one product causes another to be purchased.
Incorrect! Try again.
36A robot receives unlabeled readings from temperature, vibration, and motor-current sensors. How can clustering support predictive maintenance?
Unsupervised Learning application in Robotics and Sensor data
Medium
A.Group operating states and flag unusual sensor patterns
B.Convert all sensor readings into supervised class labels automatically
C.Guarantee the exact date of every future failure
D.Eliminate the need to collect data during normal operation
Correct Answer: Group operating states and flag unusual sensor patterns
Explanation:
Clustering can identify common operating conditions. New readings that do not fit these patterns may indicate unusual behavior or a developing fault.
Incorrect! Try again.
37A mobile robot uses unsupervised learning to group range-sensor readings. What is a reasonable use of the resulting groups?
Unsupervised Learning application in Robotics and Sensor data
Medium
A.Guarantee obstacle motion is physically impossible
B.Replace all sensors with a single fixed measurement
C.Determine the correct action without considering robot position
Unsupervised grouping can reveal recurring patterns such as open spaces, walls, or obstacle configurations, which may support mapping and navigation.
Incorrect! Try again.
38A robot's accelerometer data is reduced from six dimensions to two using PCA. What is the most likely benefit?
Unsupervised Learning application in Robotics and Sensor data
Medium
A.Automatic assignment of human-readable activity labels
B.Preservation of every detail from all six dimensions
C.Simpler visualization of movement patterns
D.Guaranteed removal of all sensor noise
Correct Answer: Simpler visualization of movement patterns
Explanation:
Projecting sensor data onto two principal components makes patterns easier to visualize, although some information and noise may remain or be discarded.
Incorrect! Try again.
39A robot records sensor readings during normal operation but has no fault labels. Which unsupervised method is appropriate for detecting possible anomalies?
Unsupervised Learning application in Robotics and Sensor data
Medium
A.Train a classifier using randomly invented fault labels
B.Cluster normal readings and identify distant observations
C.Discard all readings that differ from the first reading
D.Use association rules to prove the cause of every anomaly
Correct Answer: Cluster normal readings and identify distant observations
Explanation:
When labels are unavailable, normal operating patterns can be modeled with clustering. Readings far from these patterns can be investigated as possible anomalies.
Incorrect! Try again.
40Several robot sensors measure related aspects of the same movement, producing highly correlated features. Why might PCA be useful before clustering?
Unsupervised Learning application in Robotics and Sensor data
Medium
A.It converts unsupervised learning into a labeled task
B.It can reduce redundancy and improve distance calculations
C.It ensures that every cluster has identical sensor readings
D.It guarantees that clusters represent physical objects
Correct Answer: It can reduce redundancy and improve distance calculations
Explanation:
PCA can combine correlated measurements into fewer components, reducing redundancy and potentially making distance-based clustering more efficient.
Incorrect! Try again.
41A dataset contains two features: annual income ranging from to and age ranging from to . A k-means model using Euclidean distance is trained without preprocessing. Which outcome is most likely?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Hard
A.Age will dominate because it has fewer unique values
B.Income will dominate because it has a larger numerical scale
C.The initialization will eliminate all scale-related effects
D.Both features will contribute equally after centroid updates
Correct Answer: Income will dominate because it has a larger numerical scale
Explanation:
Euclidean distance is sensitive to feature scale. Without normalization, the income differences contribute much larger squared distances than age differences, so clustering is driven primarily by income.
Incorrect! Try again.
42In k-means clustering, two clusters become empty after an assignment step. Which response preserves the basic optimization objective most appropriately?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Hard
A.Assign every point randomly to an empty cluster
B.Reinitialize empty centroids using poorly represented points
C.Replace k-means with hierarchical clustering automatically
D.Delete the empty clusters and continue with fewer centroids
Correct Answer: Reinitialize empty centroids using poorly represented points
Explanation:
Reinitializing an empty centroid near a point with a large current reconstruction error can restore the requested number of clusters and potentially reduce the within-cluster sum of squares.
Incorrect! Try again.
43A k-means algorithm repeatedly converges to different solutions when its initial centroids change. Which interpretation is most accurate?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Hard
A.The centroid update is no longer an arithmetic mean
B.The objective function has multiple local minima
C.The number of observations changes between iterations
D.The distance metric has become non-Euclidean
Correct Answer: The objective function has multiple local minima
Explanation:
K-means optimizes a non-convex objective over assignments and centroids. Different initializations can converge to different local minima, so multiple runs are commonly compared using their final within-cluster sum of squares.
Incorrect! Try again.
44In agglomerative hierarchical clustering, four points form two compact groups that are far apart. Which linkage is most likely to merge the groups prematurely because of a single pair of close points?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Hard
A.Complete linkage
B.Ward linkage
C.Average linkage
D.Single linkage
Correct Answer: Single linkage
Explanation:
Single linkage defines cluster distance by the closest pair of observations. One unusually close cross-group pair can therefore create a chaining effect and merge otherwise separate groups.
Incorrect! Try again.
45For DBSCAN, a point is within the neighborhood radius of two core points belonging to different clusters, but it is not itself a core point. What can happen?
Clustering (K-Means Clustering, Hierarchical Clustering, Concept of DBSCAN)
Hard
A.It must create a third cluster
B.It may be assigned to either neighboring cluster
C.It automatically becomes a core point
D.It must be classified as noise
Correct Answer: It may be assigned to either neighboring cluster
Explanation:
A non-core border point reachable from multiple clusters can be assigned according to implementation and traversal order. DBSCAN does not uniquely resolve this border ambiguity.
Incorrect! Try again.
46The centered covariance matrix of a two-dimensional dataset is . If one principal component is retained, which proportion of total variance is preserved?
Dimensionality Reduction and Principal Component Analysis
Hard
A.
B.
C.
D.
Correct Answer: $80$%
Explanation:
The eigenvalues are and , so the total variance is . The first component preserves of the variance.
Incorrect! Try again.
47Two features have covariance matrix . Which direction is the first principal component most likely to follow?
Dimensionality Reduction and Principal Component Analysis
Hard
A.The direction
B.The direction
C.The direction
D.The direction
Correct Answer: The direction
Explanation:
The matrix has eigenvectors and , with eigenvalues and . The direction therefore captures almost all of the variance.
Incorrect! Try again.
48A PCA model is fit using all available data before splitting observations into training and test sets. Why can this produce an overly optimistic downstream evaluation?
Dimensionality Reduction and Principal Component Analysis
Hard
A.PCA converts unsupervised features into supervised labels
B.The test distribution is removed from the training labels
C.PCA always increases the number of features
D.Test-set variance influences the learned projection
Correct Answer: Test-set variance influences the learned projection
Explanation:
PCA estimates means, covariances, and principal directions. Fitting it on the full dataset allows information from the test set to influence the representation used by the downstream model.
Incorrect! Try again.
49A dataset contains one feature measured in millimeters and another measured in kilograms. Their raw variances differ by a factor of , but both physical quantities are considered equally important. Which preprocessing is most defensible before PCA?
Dimensionality Reduction and Principal Component Analysis
Hard
A.Duplicate the feature with the larger variance
B.Use the raw covariance matrix without changes
C.Replace every feature by its rank only
D.Standardize features before computing PCA
Correct Answer: Standardize features before computing PCA
Explanation:
Standardization places features on comparable scales, preventing units with larger numerical variance from determining the principal directions solely because of their measurement units.
Incorrect! Try again.
50A two-dimensional dataset lies close to a curved one-dimensional manifold. PCA retains one component, but the reconstruction error remains high. Which conclusion is most justified?
Dimensionality Reduction and Principal Component Analysis
Hard
A.PCA cannot represent nonlinear curvature with one line
B.Adding more PCA iterations will recover the curvature
C.The covariance matrix must have been singular
D.The dataset necessarily contains no meaningful structure
Correct Answer: PCA cannot represent nonlinear curvature with one line
Explanation:
PCA finds a linear subspace. A curved manifold may have low intrinsic dimension but still require multiple linear components for accurate global reconstruction.
Incorrect! Try again.
51In a transaction database, of transactions contain bread, contain butter, and contain both. What are the confidence and lift of the rule ?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Hard
A.Confidence , lift
B.Confidence , lift
C.Confidence , lift
D.Confidence , lift
Correct Answer: Confidence , lift
Explanation:
Confidence is . Lift is , indicating that butter is twice as likely when bread is present compared with its overall frequency.
Incorrect! Try again.
52Apriori uses the downward-closure property. If the itemset is below the minimum support threshold, which statement must be true?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Hard
A.The individual items , , and are mutually exclusive
B.Every subset of size two is infrequent
C.At least one subset of size two is infrequent
D.Every superset containing is frequent
Correct Answer: At least one subset of size two is infrequent
Explanation:
If all size-two subsets were frequent, Apriori's monotonicity property would not guarantee the triple is frequent, but an infrequent triple must have at least one infrequent subset because support cannot increase when items are added.
Incorrect! Try again.
53Suppose the frequent 2-itemsets are , , , , and , but is infrequent. Which candidate 3-itemset is eliminated by Apriori before database scanning?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The candidate has the 2-item subset , which is already infrequent. Apriori therefore prunes the candidate without counting its support.
Incorrect! Try again.
54A rule has high confidence because its consequent occurs in of all transactions. Which metric is most useful for checking whether the rule provides meaningful association beyond the consequent's baseline frequency?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Hard
A.Transaction count
B.Number of generated candidates
C.Support of the antecedent alone
D.Lift
Correct Answer: Lift
Explanation:
Lift compares rule confidence with the consequent's baseline support. A confidence near may be uninformative if the consequent already appears in nearly all transactions.
Incorrect! Try again.
55An itemset has support , and every proper subset with the same items removed has support greater than . Which description best fits this itemset under standard terminology?
Pattern Discovery (Association Rule Mining, Apriori Algorithm)
Hard
A.It is necessarily an infrequent itemset
B.It is necessarily a maximal frequent itemset
C.It is necessarily a redundant association rule
D.It is necessarily a closed frequent itemset
Correct Answer: It is necessarily a closed frequent itemset
Explanation:
A frequent itemset is closed when no proper superset has the same support. However, the stated condition concerns proper subsets, so the terminology is actually insufficient to establish closedness; therefore none of the listed claims is guaranteed.
Incorrect! Try again.
56A mobile robot clusters 2D lidar endpoints using DBSCAN. Increasing the radius substantially causes nearby walls and separate obstacles to merge. Which change most directly reduces this failure while preserving density-based clustering?
Unsupervised Learning application in Robotics and Sensor data
Hard
A.Decrease the radius while validating noise levels
B.Increase the minimum-points threshold only
C.Replace all distances with feature ranks
D.Set every point as a core point
Correct Answer: Decrease the radius while validating noise levels
Explanation:
A smaller reduces unintended connections between nearby structures. It should be selected together with an appropriate minimum-points value because an overly small radius can label valid returns as noise.
Incorrect! Try again.
57A robot uses PCA to compress a 100-dimensional sensor vector. A rare collision signal lies in a low-variance direction and disappears after retaining only the first five components. What is the main risk?
Unsupervised Learning application in Robotics and Sensor data
Hard
A.PCA will create supervised collision labels
B.The sensor vector will become higher dimensional
C.The retained components may discard safety-critical information
D.The covariance matrix will contain no eigenvectors
Correct Answer: The retained components may discard safety-critical information
Explanation:
PCA prioritizes global variance, not task relevance. A rare but important collision signature can have low variance and be removed during dimensionality reduction.
Incorrect! Try again.
58A robot clusters temperature and vibration readings collected over several months. A new operating regime gradually changes both distributions, causing old clusters to absorb new observations poorly. Which issue is most directly involved?
Unsupervised Learning application in Robotics and Sensor data
Hard
A.Incorrect use of class labels during training
B.Guaranteed failure of centroid averaging
C.Violation of the Euclidean triangle inequality
D.Concept drift in the sensor-generating process
Correct Answer: Concept drift in the sensor-generating process
Explanation:
The underlying data distribution has changed over time. Static clusters learned from historical observations may become unsuitable, so monitoring, recalibration, or online clustering may be required.
Incorrect! Try again.
59A robot combines range, camera color, and inertial features in k-means. The inertial variables have much larger numerical variance than the others. Which remedy is most appropriate before clustering?
Unsupervised Learning application in Robotics and Sensor data
Hard
A.Normalize or weight modalities using domain-informed scales
B.Increase k until inertial clusters disappear
C.Remove the centroid update from every iteration
D.Duplicate the camera measurements several times
Correct Answer: Normalize or weight modalities using domain-informed scales
Explanation:
Without scaling or weighting, high-variance inertial features dominate the distance calculation. Modality-aware normalization makes the clustering objective reflect the intended sensor contributions.
Incorrect! Try again.
60A robot uses unsupervised clustering to group spatial lidar points before tracking objects. Two objects temporarily overlap from the sensor's viewpoint and form one dense cluster. What limitation does this illustrate?
Unsupervised Learning application in Robotics and Sensor data
Hard
A.PCA guarantees separation of overlapping objects
D.A geometric cluster need not equal a physical object
Correct Answer: A geometric cluster need not equal a physical object
Explanation:
Unsupervised clusters reflect similarity under the chosen representation and metric. Occlusion or spatial overlap can make multiple physical objects appear as one geometric density structure.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →