Correct Answer: C. They turn products into sums and reduce numerical underflow
Explanation:
Multiplying many small probabilities can produce numbers too tiny for reliable floating-point representation. Logarithms preserve class ranking while allowing stable addition.
Correct Answer: A. That class’s combined likelihood can become zero
Explanation:
Multiplying by an estimated probability of zero makes the entire product zero. This zero-frequency problem can eliminate a class based on one unseen feature.
Bernoulli Naive Bayes models binary feature outcomes such as 1 for present and 0 for absent. It explicitly uses both feature presence and absence probabilities.
Gaussian Naive Bayes estimates a mean and variance for each continuous feature within each class. Those normal densities provide the feature likelihoods.
Correct Answer: C. The class with the highest posterior probability
Explanation:
MAP classification chooses the class most probable after combining priors and observed evidence. It directly compares posterior values across candidate classes.
Correct Answer: C. The probability of a class after accounting for the observed features
Explanation:
The posterior updates the prior using evidence supplied by the feature values. It is the quantity used to compare candidate classes for a particular case.
Correct Answer: A. Features are conditionally independent given the class
Explanation:
The model factorizes the joint feature likelihood into separate feature contributions within each class. This simplifying assumption is often unrealistic but computationally useful.
Correct Answer: C. Use Bayes’ theorem to compare class posterior probabilities
Explanation:
Naive Bayes combines class priors with feature likelihoods to calculate posterior class probabilities. The class with the strongest posterior support is typically predicted.