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. Spreading labels through a similarity graph from labeled to unlabeled points
Explanation:
Nearby or strongly connected observations are assumed likely to share labels.
The graph structure helps exploit unlabeled data.
Choose an option to check your answer.
Correct Answer: D. The native SVM output is a margin score rather than a posterior probability
Explanation:
Methods such as Platt scaling map decision scores to probabilities.
Calibration should use separate or cross-validated data.
Choose an option to check your answer.
Correct Answer: C. One classifier per class against all remaining classes
Explanation:
Each classifier separates one target class from the rest.
The class with the strongest decision score is often selected.
Choose an option to check your answer.
Correct Answer: B. Using one-vs-rest or one-vs-one strategies
Explanation:
Multiple binary classifiers are trained and their outputs combined.
Libraries typically implement one of these strategies automatically.
Choose an option to check your answer.
Correct Answer: A. Feature magnitude affects dot products, distances, and regularization
Explanation:
Large-scale features can dominate the geometry of the optimization.
Consistent scaling also makes C and gamma tuning more meaningful.
Choose an option to check your answer.
Correct Answer: D. The model may create highly irregular regions around training points
Explanation:
Very localized kernels can memorize training details.
Validation is needed to balance flexibility and generalization.
Choose an option to check your answer.
Correct Answer: C. How far the influence of each training point extends
Explanation:
Large gamma gives narrow local influence and complex boundaries.
Small gamma creates smoother, broader effects.
Choose an option to check your answer.
Correct Answer: B. A flexible nonlinear boundary
Explanation:
The radial basis kernel measures localized similarity between points.
Combining support-vector influences yields curved decision regions.
Choose an option to check your answer.
Correct Answer: A. The linear kernel
Explanation:
The linear kernel uses the ordinary dot product.
It is effective for many high-dimensional sparse problems.
Choose an option to check your answer.
Correct Answer: D. Computing inner products in an implicit higher-dimensional feature space
Explanation:
A kernel enables nonlinear boundaries without explicitly constructing all transformed features.
The SVM optimization uses pairwise kernel values.
Choose an option to check your answer.
Correct Answer: C. A narrower margin and increased risk of overfitting
Explanation:
A large penalty forces the model to avoid training violations aggressively.
This can make the boundary sensitive to noise.
Choose an option to check your answer.
Correct Answer: B. The penalty for margin violations
Explanation:
Large C emphasizes fitting training data, while small C permits more violations for a wider margin.
It controls regularization strength inversely.