Practice Library
All MCQs
Browse exam-wise, subject-wise, and country-wise MCQs with explanations.
Choose an option to check your answer.
Correct Answer: A. Compact, roughly spherical clusters of similar scale
Explanation:
Nearest-centroid partitions create convex Voronoi regions.
Elongated, unequal-density, or nonconvex clusters can be poorly represented.
Choose an option to check your answer.
Correct Answer: D. Large-scale variables otherwise dominate Euclidean distance
Explanation:
K-means depends directly on geometric distances.
Scaling ensures units do not determine feature importance unintentionally.
Choose an option to check your answer.
Correct Answer: C. Choose well-separated initial centroids probabilistically
Explanation:
K-means++ spreads initial centers across the data.
It usually improves convergence and solution quality over naive random starts.
Choose an option to check your answer.
Correct Answer: B. K-means can converge to different local optima
Explanation:
The objective is not jointly convex over assignments and centers.
Multiple starts improve the chance of finding a better solution.
Choose an option to check your answer.
Correct Answer: A. Each centroid is recalculated as the mean of its assigned points
Explanation:
Updated means minimize squared error within each fixed cluster assignment.
Assignment and update repeat until convergence.
Choose an option to check your answer.
Correct Answer: D. Each point is assigned to its nearest centroid
Explanation:
Distance to current centroids determines cluster membership.
This step reduces or preserves the objective for fixed centroids.
Easy
Choose an option to check your answer.
Correct Answer: C. The arithmetic mean vector of a cluster
Explanation:
Each centroid summarizes the current center of its assigned observations.
The algorithm alternates assignment and centroid updates.
Choose an option to check your answer.
Correct Answer: B. The number of clusters k
Explanation:
K-means creates exactly the requested number of clusters.
Validation methods can help choose a reasonable k.
Choose an option to check your answer.
Correct Answer: A. The sum of squared distances from points to their assigned centroids
Explanation:
K-means seeks compact clusters around arithmetic means.
Its standard objective is within-cluster sum of squared errors.
Choose an option to check your answer.
Correct Answer: D. Early prediction errors can reinforce themselves during retraining
Explanation:
Incorrect pseudo-labels become training targets and may amplify bias.
Confidence thresholds and iterative monitoring reduce the risk.
Choose an option to check your answer.
Correct Answer: C. Using high-confidence model predictions as temporary labels for unlabeled data
Explanation:
A supervised model first predicts unlabeled examples.
Selected predictions are added to training as if they were labels.
Choose an option to check your answer.
Correct Answer: B. Nearby points or points on the same data manifold tend to share labels
Explanation:
Unlabeled observations reveal the geometry and density of the input space.
Labels can then be extended along that structure.