正解:C
According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore fundamental principles of machine learning," anomaly detection is a specialized machine learning technique used to identify data points, patterns, or events that deviate significantly from normal behavior.
Anomaly detection is widely used for monitoring time-series data and detecting unexpected or rare occurrences that may indicate problems, opportunities, or fraud. For example:
* Detecting fraudulent transactions in banking systems.
* Identifying equipment malfunctions in industrial IoT applications.
* Monitoring network intrusions in cybersecurity.
* Detecting unexpected spikes or drops in web traffic or sales.
In Azure, this workload is supported by the Azure AI Anomaly Detector service, which uses statistical and machine learning algorithms to learn from historical data and establish a baseline of normal behavior. When the system detects data points that fall outside expected patterns, it flags them as anomalies.
Let's evaluate the incorrect options:
* A. A machine learning technique that understands written and spoken language # This describes Natural Language Processing (NLP), not anomaly detection.
* B. A machine learning technique that classifies objects based on user-supplied images # This refers to image classification, typically using computer vision.
* D. A machine learning technique that classifies images based on their contents # Also describes computer vision, not anomaly detection.
Therefore, the correct answer is C, since anomaly detection specifically refers to analyzing data over time and identifying unusual or abnormal patterns that differ from the expected trend.