
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A mail service provider wants to classify emails as spam or not spam. They have millions of examples of emails already tagged accordingly. Which machine learning approach is best?
A
Unsupervised Learning
B
Reinforcement Learning
C
Supervised Learning
D
Clustering
Explanation:
Supervised Learning is the correct approach because:
Labeled Data: The provider has "millions of examples of emails already tagged accordingly" - this means they have labeled training data where each email is classified as spam or not spam.
Classification Task: The goal is to classify emails into two categories (spam/not spam), which is a classic supervised learning classification problem.
Why not other options:
Key Concept: Supervised learning algorithms learn from labeled training data to make predictions or decisions on new, unseen data. With millions of labeled examples, a supervised learning model (like logistic regression, decision trees, or neural networks) can be trained to accurately classify emails as spam or not spam.