
Explanation:

The correct matching aligns directly with the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn modules under "Identify features of Azure Machine Learning". Azure Machine Learning provides a suite of tools that serve different functions within the model development lifecycle - from creating workspaces, to training models, to automating experimentation.
* The Azure portal # Create a Machine Learning workspace.The Azure portal is a web-based graphical interface for managing all Azure resources. According to Microsoft Learn, you use the portal to create and configure the Azure Machine Learning workspace, which acts as the central environment where datasets, experiments, models, and compute resources are organized. Creating a workspace through the portal involves specifying a subscription, resource group, and region - tasks that are part of the setup stage rather than model development.
* Machine Learning designer # Use a drag-and-drop interface used to train and deploy models.The Machine Learning designer (formerly "Azure ML Studio (classic)") provides a visual, no-code/low- code interface for building, training, and deploying machine learning pipelines. The designer uses a drag-and-drop workflow where users connect modules representing data transformations, model training, and evaluation. This tool is ideal for beginners and those who want to quickly experiment with machine learning concepts without writing code.
* Automated machine learning (Automated ML) # Use a wizard to select configurations for a machine learning run.Automated ML simplifies model creation by automatically selecting algorithms, hyperparameters, and data preprocessing options. Users interact through a guided wizard (within the Azure Machine Learning studio) that walks them through configuration steps such as selecting datasets, target columns, and performance metrics. The system then iteratively trains and evaluates multiple models to recommend the best-performing one.
Together, these tools streamline the machine learning workflow:
* Azure portal for setup and resource management,
* Machine Learning designer for visual model creation, and
* Automated ML for guided, automated model selection and tuning.