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. An unseen feature-class combination makes the estimated likelihood zero
Explanation:
Multiplying by a zero likelihood makes the entire class posterior zero.
Smoothing assigns small nonzero probabilities to unseen events.
Choose an option to check your answer.
Correct Answer: D. Bernoulli Naive Bayes
Explanation:
Bernoulli Naive Bayes models each feature as a binary event.
It is useful when presence and absence both carry information.
Choose an option to check your answer.
Correct Answer: C. Multinomial Naive Bayes
Explanation:
Multinomial Naive Bayes models count or frequency data.
It is widely used for document and text classification.
Choose an option to check your answer.
Correct Answer: B. Gaussian Naive Bayes
Explanation:
Gaussian Naive Bayes estimates a mean and variance per feature and class.
It evaluates each continuous value using a normal density.
Choose an option to check your answer.
Correct Answer: A. The class with the highest posterior probability
Explanation:
Posterior probabilities are compared across classes.
The maximum a posteriori class is selected.
Choose an option to check your answer.
Correct Answer: D. The probability of the observed features given a class
Explanation:
Likelihood measures how compatible an observation's features are with a class.
It is combined with the prior to form a posterior.
Choose an option to check your answer.
Correct Answer: C. The probability of a class before considering the current features
Explanation:
Class priors often come from class frequencies in training data.
They represent baseline class prevalence.
Choose an option to check your answer.
Correct Answer: B. Bayes' theorem
Explanation:
Bayes' theorem combines prior class probability with feature likelihood.
The result is a posterior probability for each class.
Choose an option to check your answer.
Correct Answer: A. Features are conditionally independent given the class
Explanation:
Naive Bayes factorizes the class-conditional likelihood across features.
The independence assumption is often unrealistic but computationally useful.
Choose an option to check your answer.
Correct Answer: D. Trees are high-variance learners whose early split choices affect later structure
Explanation:
A modest change can alter the best root split and cascade through the tree.
Ensemble methods reduce this instability.
Choose an option to check your answer.
Correct Answer: C. The longest root-to-leaf path
Explanation:
Limiting depth restricts model complexity.
A shallow tree may generalize better but can underfit.
Choose an option to check your answer.
Correct Answer: B. The smallest number of training observations allowed in a leaf
Explanation:
Larger leaf-size requirements reduce highly specific partitions.
This acts as a regularization parameter.