
Explanation:

This question tests your understanding of machine learning workflow tasks as described in the Microsoft Azure AI Fundamentals (AI-900) study guide and the Microsoft Learn module "Explore the machine learning process." The AI-900 curriculum divides the machine learning lifecycle into key phases: data preparation, feature engineering and selection, model training, model evaluation, and model deployment. Each phase has specific tasks designed to prepare, build, and assess predictive models before deployment.
* Examining the values of a confusion matrix # Model evaluationIn Azure Machine Learning, evaluating a model involves checking its performance using metrics such as accuracy, precision, recall, and F1- score. The confusion matrix is one of the most common tools for this purpose. According to Microsoft Learn, "model evaluation is the process of assessing a trained model's performance against test data to ensure reliability before deployment." Analyzing the confusion matrix helps determine whether predictions align with actual outcomes, making this task part of model evaluation.
* Splitting a date into month, day, and year fields # Feature engineeringFeature engineering refers to transforming raw data into features that better represent the underlying patterns to improve model performance. The study guide describes it as "the process of creating new input features from existing data." Splitting a date field into separate numeric fields (month, day, year) is a classic example of feature engineering because it enables the model to learn from temporal patterns that might otherwise remain hidden.
* Picking temperature and pressure to train a weather model # Feature selectionFeature selection involves identifying the most relevant variables that have predictive power for the model. As defined in Microsoft Learn, "feature selection is the process of choosing the most useful subset of input features for training." In this scenario, selecting temperature and pressure variables as inputs for a weather prediction model fits perfectly within the feature selection stage.
Therefore, the correct matches are:
# Examining confusion matrix # Model evaluation
# Splitting date field # Feature engineering
# Picking temperature & pressure # Feature selection