
Explanation:

This question tests understanding of AI workload types, a fundamental topic in the Microsoft Azure AI Fundamentals (AI-900) curriculum. Each workload type-Computer Vision, Natural Language Processing, Machine Learning (Regression), and Anomaly Detection-serves a specific function within the AI landscape, as explained in Microsoft Learn's module "Describe features of common AI workloads."
* Computer Vision enables computers to "see" and interpret visual information such as images or videos.
Identifying handwritten letters requires analyzing image patterns, shapes, and strokes, which is a classic image recognition task. Azure's Computer Vision API and Custom Vision services are specifically designed for such tasks.
* Natural Language Processing (NLP) involves interpreting human language, both written and spoken.
Determining the sentiment of a social media post (positive, negative, or neutral) is a typical text analytics use case within NLP, often implemented using Azure's Text Analytics for Sentiment Analysis.
* Anomaly Detection focuses on identifying data points that deviate from normal patterns. Detecting fraudulent credit card payments requires finding transactions that are unusual compared to historical spending behavior. Azure's Anomaly Detector API applies machine learning to identify such irregularities.
* Machine Learning (Regression) is used for predicting continuous numerical outcomes based on historical data. Estimating next month's toy sales is a regression problem-an example of supervised learning where the model predicts future sales values from past sales data.
Thus, based on Microsoft's official AI-900 learning objectives, the correct mapping of workloads to scenarios is:
* Computer Vision # Identify handwritten letters
* NLP # Predict sentiment
* Anomaly Detection # Fraud detection
* Machine Learning (Regression) # Predict toy sales