| Task | Algorithm |
|---|---|
| T1 - Clustering | A1 - Markov Chain Monte Carlo |
| T2 - Classification | A2 - K-Medoid |
| T3 - Sampling | A3 - Linear Discriminant Analysis |
| T4 - Feature Extraction | A4 - Naive Bayes |
This question checks whether each algorithm listed is correctly paired with the machine learning task it is actually built to solve. Let's look at what each algorithm is used for and eliminate the wrong pairings.
Putting these correct pairs together gives T1:A2, T2:A4, T3:A1, T4:A3, which is exactly option (B). Every other option swaps at least one algorithm into the wrong task, for instance putting Naive Bayes against Clustering or K-Medoid against Classification, both of which contradict what these algorithms are designed to do.
Let's summarize:
So the only fully correct matching is option (B).