🎄

CertoMetrics - 9% OFF Special Discount Offer - Ends In:

0d 00h 00m 00s
Coupon code: SALE2026

Microsoft Operationalizing Machine Learning and Generative AI Solutions (AI-300)

Get full access to the updated question bank and confidently prepare for your exam.

Vendor

Microsoft

Certification

AI & Data

Content

162 Qs

Status

Verified

Updated

1 day ago

Test the Practice Engine

Experience our interactive testing environment with free demo questions

Launch Free Demo
Best Value Bundle

Premium Bundle

Complete Success Suite

$83 $49

Save $34 Instantly

  • âś“
    Full PDF + Interactive Engine Everything you need to pass
  • âś“
    All Advanced Question Types Drag & Drop, Hotspots, Case Studies
  • âś“
    Priority 24/7 Expert Support Direct line to certification leads
  • âś“
    90 Days Free Priority Updates Stay current as exams change

Success Metric

98.4% Pass Rate

Verified by 15k+ Students
Secure Checkout
Popular

Standard Simulation

Practice Engine

$44

One-Time Payment

  • Web-Based (Zero Install)
  • Real Testing Environment Virtual & Practice Modes
  • Interactive Engine Drag & Drop, Hotspots
  • 60 Days Free Updates

Compatible with All Devices

Chrome
Verified Secure Checkout

Basic Tier

PDF Study Guide

$39

Digital Access

  • âś“ Exam Questions (PDF)
  • âś“ Mobile Friendly
  • âś“ 60 Days Updates
Download Free Sample PDF

Verified 33-Question Preview (AI-300)

Secure Checkout

Verified Community

The CertoMetrics Standard.

Recommend the #1 platform for verified Microsoft certification resources.

Success Network

Help a Colleague Succeed.

Invite a peer to get their own updated AI-300 prep kit.

Exam Overview

The Microsoft AI-300 certification, "Operationalizing Machine Learning and Generative AI Solutions," validates your advanced expertise in deploying, managing, and scaling AI solutions on Azure. This exam is crucial for professionals aiming to bridge the gap between AI development and production, ensuring models are not only built but also effectively delivered and maintained in real-world scenarios. Achieving this certification demonstrates a profound understanding of MLOps principles, responsible AI implementation, and the practical application of generative AI. It signifies your ability to drive business value by transforming experimental AI models into robust, enterprise-grade solutions, enhancing career prospects for those leading the charge in intelligent system deployments and operational excellence within the AI domain.

Questions

40-60

Passing Score

700/1000

Duration

120 Minutes

Difficulty

Advanced

Level

Professional

Skills Measured

Design and implement MLOps solutions
Implement responsible AI solutions
Monitor and manage machine learning solutions
Implement generative AI solutions
Manage Azure Machine Learning workspaces and resources

Career Path

Target Roles

Machine Learning Engineer MLOps Engineer AI Engineer

Common Questions

Is the material up to date?

Yes. We update our question bank weekly to match the latest Microsoft standards. You get free updates for 90 days.

What format do I get?

You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).

Is there a guarantee?

Absolutely. If you fail the AI-300 exam using our materials, we offer a full money-back guarantee.

When do I get the download?

Instantly. The download link is available in your dashboard immediately after payment is confirmed.

Free Study Guide Samples

Previewing updated AI-300 bank (33 Questions).

QUESTION 1

You manage an Azure Machine Learning workspace named Workspace1 and an Azure Blob Storage accessed by using the URL https://storage1.blob.core.windows.net/data1.

You plan to create an Azure Blob datastore in Workspace1. The datastore must target the Blob Storage by using Azure Machine Learning Python SDK v2. Access authorization to the datastore must be limited to a specific amount of time.

You need to select the parameters of the AzureBlobDatastore class that will point to the target datastore and authorize access to it.

Which parameters should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Answer Canvas

âś… container_name="data1"

Reasoning: To create a datastore for Azure Blob Storage, the container_name parameter is used to specify the container. The provided storage URL, https://storage1.blob.core.windows.net/data1, indicates that data1 is the name of the container within the storage1 account.

âś… credentials=SasTokenConfiguration

Reasoning: The requirement is to limit access for a specific amount of time. A Shared Access Signature (SAS) token is the standard Azure method for granting temporary, time-bound, and scoped access to storage resources. The SasTokenConfiguration is the correct credential type to use a SAS token for authorization.



Reference: https://learn.microsoft.com/en-us/python/api/azure-ai-ml/azure.ai.ml.entities.azureblobdatastore?view=azure-python
QUESTION 2

You have an Azure Machine Learning workspace.

You plan to use Azure Machine Learning Python SDK v2 to register a component in the workspace. The component definition is stored in the local file ./components/train/train.yml.

You write code to connect to the workspace by using the ml_client object and import all required libraries.

You need to complete the remaining code.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Answer Canvas

Answer Area Selections:

âś… load_component

Reasoning: The first step is to load the component definition from the local YAML file (train.yml) into a Python object. The azure.ai.ml.load_component function is specifically designed for this purpose. It parses the YAML file and creates an in-memory representation of the component.

âś… create_or_update

Reasoning: After the component object is loaded, the next step is to register it in the Azure Machine Learning workspace. The ml_client.components.create_or_update() method is used to send the component definition to the workspace. This action makes the component available for use in pipelines and jobs within that workspace.



Reference: https://learn.microsoft.com/en-us/python/api/azure-ai-ml/azure.ai.ml#azure-ai-ml-load-component
QUESTION 3

You have an Azure Machine Learning workspace named WS1 and a GitHub account named account1 that hosts a private repository named repo1.

You need to clone repo1 to make it available directly from WS1. The configuration must maximize the performance of the repo1 clone.

Which four actions should you perform in sequence?

Technical Scenario Diagram
Answer Canvas

Correct sequence of steps:

To clone a private GitHub repository into an Azure Machine Learning compute instance using SSH for secure and performant access, you must follow these steps in order.

  1. Create a compute instance: This is the first step as it provisions the managed virtual machine within your Azure ML workspace. This instance will serve as the development environment where the repository will be cloned and the code will be run.
  2. Open a terminal window: Once the compute instance is created and running, you need command-line access to it. Opening a terminal from the Azure ML studio provides this access, allowing you to run shell commands on the instance.
  3. Generate a Secure Shell (SSH) key pair: Inside the terminal, you run the ssh-keygen command. This creates a public/private key pair. The private key remains securely on the compute instance, while the public key will be used to grant access from GitHub.
  4. Add a public key to account1: You must copy the content of the newly created public key and add it to your GitHub account's SSH key settings. This action registers the key with GitHub, authorizing the compute instance (which holds the private key) to securely connect and clone the private repository.


Reference: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-create-compute-instance?view=azureml-api-2&tabs=python#access-the-terminal
QUESTION 4

You download a .csv file from a notebook in an Azure Machine Learning workspace to a data/sample.csv folder on a compute instance. The file contains 10,000 records.

You must generate the summary statistics for the data in the file. The statistics must include the following for each numerical column:

• number of non-empty values

• average value

• standard deviation

• minimum and maximum values

• 25th, 50th, and 75th percentiles

You need to complete the Python code that will generate the summary statistics.

Which code segments should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Answer Canvas

Answer Area Selections

âś… pandas

Reasoning: The pandas library is the standard for data manipulation and analysis in Python. Its read_csv() function is specifically designed to efficiently read comma-separated values (CSV) files into a DataFrame object, which is required for the subsequent statistical analysis step.

âś… describe

Reasoning: The describe() method, when called on a pandas DataFrame, generates a comprehensive statistical summary for all numerical columns. This output directly includes the required metrics: count, mean, standard deviation, minimum, maximum, and the 25th, 50th, and 75th percentiles.



Reference: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.describe.html
QUESTION 5

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear on the review screen.

An organization provisions Azure Machine Learning workspaces for development, test, and production environments.

Each environment must be deployed consistently and updated through source control. The deployment process must be automated, repeatable, and auditable.

You need to deploy Azure Machine Learning resources in a consistent and controlled manner.

Solution: Define Azure Machine Learning resources in a Bicep template and deploy them within a GitHub Action.

Does the solution meet the goal?

A
Yes
B
No

Correct Option: A

✅ Option A (Correct) Reasoning: Defining Azure Machine Learning resources using Bicep templates provides Infrastructure as Code, ensuring consistent and repeatable deployments across environments. Integrating this with GitHub Actions automates the deployment process, ensures updates are driven by source control, and provides a clear audit trail of all deployments, fulfilling all stated goals for consistent and controlled resource provisioning.❌ Why the other choices are incorrect:

Option B is incorrect: The proposed solution effectively addresses all requirements. Bicep templates establish consistency and source control integration for resource definitions. GitHub Actions automate the deployment pipeline, ensuring repeatability, auditability through logs, and direct linkage to source control for changes. Therefore, the solution does meet the stated goals.



Reference: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-cicd-azure-machine-learning-github-actions-bicep?view=azureml-api-2
QUESTION 6

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear on the review screen.

An organization provisions Azure Machine Learning workspaces for development, test, and production environments.

Each environment must be deployed consistently and updated through source control. The deployment process must be automated, repeatable, and auditable.

You need to deploy Azure Machine Learning resources in a consistent and controlled manner.

Solution: Create Azure Machine Learning workspaces manually in the Azure portal for each environment.

Does the solution meet the goal?

A
Yes
B
No

Correct Option: B

✅ Option B (Correct) Reasoning: Creating Azure Machine Learning workspaces manually in the Azure portal does not ensure consistent deployments, integration with source control, automation, repeatability, or auditability. These goals require Infrastructure as Code (IaC) solutions like Azure Resource Manager templates or Bicep, which allow defining resources in code and deploying them programmatically through pipelines.❌ Why the other choices are incorrect:

Option A is incorrect: Manual creation inherently lacks the automation, consistency, and source control integration explicitly required by the problem statement for the deployment process.



Reference: https://docs.microsoft.com/azure/machine-learning/how-to-create-workspace-template
QUESTION 7

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear on the review screen.

An organization provisions Azure Machine Learning workspaces for development, test, and production environments.

Each environment must be deployed consistently and updated through source control. The deployment process must be automated, repeatable, and auditable.

You need to deploy Azure Machine Learning resources in a consistent and controlled manner.

Solution: Clone an existing Azure Machine Learning workspace to create additional environments.

Does the solution meet the goal?

A
Yes
B
No

Correct Option: B

✅ Option B (Correct) Reasoning: Cloning an Azure Machine Learning workspace creates a copy but does not integrate with source control for consistent, automated, repeatable, and auditable infrastructure deployments and updates. For these requirements, Infrastructure as Code (IaC) solutions like Azure Resource Manager (ARM) templates or Bicep, deployed via CI/CD pipelines, are necessary to define and manage workspace configurations in source control.❌ Why the other choices are incorrect:

Option A is incorrect: Cloning only copies the current state; it doesn't provide a mechanism for managing future updates through source control, automating deployments consistently, or auditing changes to the infrastructure definition itself.



Reference: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-manage-workspaces?view=azureml-api-2&tabs=cli#create-a-workspace-by-using-arm-template
QUESTION 8

You manage an Azure Machine Learning workspace. You configure an automated machine learning regression training job by using the Azure Machine Learning Python SDK v2.

You configure the regression job by using the following script:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Answer Canvas

Statement 1: The job is terminated if the score is not improving in a specific number of iterations. (Yes)

Reasoning: The parameter enable_early_termination = True explicitly activates an early stopping policy. This policy monitors the primary metric of the job and terminates individual trials that are not showing improvement, thus saving computational resources.

Statement 2: A maximum of five AutoML trials are run in parallel during the regression job. (Yes)

Reasoning: The max_concurrent_trials = 5 parameter directly controls the degree of parallelism. It limits the number of individual model training runs (trials) that can be executed simultaneously on the compute cluster to five.

Statement 3: One AutoML trial can run for 60 minutes before it is terminated. (No)

Reasoning: The timeout_minutes = 60 parameter sets the maximum duration for the entire AutoML job, not for a single trial. The timeout for an individual trial is controlled by the separate trial_timeout_minutes parameter, which is not configured in the provided script.

Statement 4: The AutoML trial run can take up to 1 month before it terminates. (No)

Reasoning: The configuration timeout_minutes = 60 ensures that the entire AutoML job will be terminated after 60 minutes. This setting prevents the job from running for an extended duration, such as one month.



Reference: https://learn.microsoft.com/en-us/python/api/azure-ai-ml/azure.ai.ml.automl.automljob?view=azure-python#azure-ai-ml-automl-automljob-set-limits
QUESTION 9

You are a data scientist working for a hotel booking website company. You use the Azure Machine Learning service to train a model that identifies fraudulent transactions.

You must deploy the model to an Azure Machine Learning online endpoint by using the Azure Machine Learning Python SDK v2. The deployed model must return real-time predictions of fraud based on transaction data input.

You need to create the script that is specified as the scoring_script parameter for the CodeConfiguration class used to deploy the model.

What should the entry script do?

A
Create a Conda environment for the online endpoint compute and install the necessary Python packages.
B
Register the model with appropriate tags and properties.
C
Load the model and use it to predict labels from input data.
D
Start a node on the inference cluster where the model is deployed.
E
Specify the number of cores and the amount of memory required for the online endpoint compute.

Correct Option: C

âś… Option C (Correct) Reasoning: The entry script (scoring_script) for an Azure Machine Learning online endpoint is responsible for loading the trained model, usually within an init() function, and then using that loaded model to generate real-time predictions from incoming request data in a run() function.

❌ Why the other choices are incorrect:

  • Option A is incorrect: Environment creation and package installation are handled by the environment definition (e.g., Conda YAML or Docker image) specified during deployment, not by the scoring script itself.

  • Option B is incorrect: Model registration is a separate step performed using ml.models.create_or_update() before deployment, not within the scoring script.

  • Option D is incorrect: Azure Machine Learning's managed online endpoint service handles the provisioning and starting of inference compute nodes, not the scoring script.

  • Option E is incorrect: Compute resource specifications (cores, memory) are defined in the online endpoint's deployment configuration, such as instance_type, not within the scoring script.



Reference: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-deploy-online-endpoints?view=azureml-api-2&tabs=python
QUESTION 10

You build and manage a model by using Azure Machine Learning workspace.

Before you deploy the model, you must create a Responsible AI dashboard in Azure Machine Learning studio. The dashboard must provide observation of the following:

• metrics that show real-world impact on an outcome of interest due to taking a treatment policy

• examples with minimal changes to a particular data point such that the model's prediction changes

You need to implement the components for the Responsible AI dashboard.

Which components should you implement? To answer, move the appropriate components to the correct observations. You may use each component once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Answer Canvas

Correct Mappings:

âś… Causal analysis matches with -> Impact of treatment policy
Reasoning: Causal analysis in the Responsible AI dashboard is specifically designed to estimate the cause-and-effect relationship between a feature (a treatment) and an outcome. It helps recommend policies by showing the expected impact of an intervention on a population.

âś… Counterfactual analysis matches with -> Effect of change in data
Reasoning: Counterfactual analysis provides 'what-if' scenarios. It answers the question, 'What is the smallest change to a data point's features that will flip the model's prediction?' This directly corresponds to observing examples with minimal changes that alter the model's output.



Reference: https://learn.microsoft.com/en-us/azure/machine-learning/concept-responsible-ai-dashboard
QUESTION 11

You have several machine learning models registered in an Azure Machine Learning workspace.

You must use the Fairlearn dashboard to assess fairness in a selected model.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 12

You create a multi-class image classification model with automated machine learning in Azure Machine Learning.

You need to prepare labeled image data as input for model training in the form of an Azure Machine Learning tabular dataset.

Which data format should you use?

A
Pascal VOC
B
COCO
C
JSON
D
JSONL

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 13

A data science team plans to evaluate multiple hyperparameter values automatically while training a model in Azure Machine Learning.

The tuning process must run multiple training trials without manually modifying the training script for each run.

You need to automate hyperparameter tuning for the training job.

What should you do?

A
Run a single training job with fixed hyperparameters.
B
Create a tuning job that runs multiple trials with different parameter values.
C
Export training metrics and compare results outside Azure Machine Learning.
D
Adjust hyperparameters after model deployment.

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 14

You create an Azure Machine Learning workspace.

You must use the Python SDK v2 to implement an experiment from a Jupyter notebook in the workspace. The experiment must log a table in the following format:

You need to complete the Python code to log the table.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 15

You use Azure Machine Learning to implement hyperparameter tuning with a Bandit early termination policy for an Azure ML Python SDK v2-based model training.

The policy uses a slack_factor set to 0.1, an evaluation interval set to 1, and an evaluation delay set to 5.

You need to evaluate the outcome of the early termination policy.

What should you evaluate? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 16

You create an Azure Machine Learning workspace.

You are developing a Python SDK v2 notebook to perform custom model training in the workspace. The notebook code imports all required packages.

You need to complete the Python SDK v2 code to include a training script, environment, and compute information.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 17

You use Azure Machine Learning to train a model.

You must use Bayesian sampling to tune hyperparameters.

You need to select a learning_rate parameter distribution.

Which two distributions can you use? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

A
Choice
B
Uniform
C
QNormal
D
LogUniform
E
Normal

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 18

You manage a Microsoft Foundry project. You build a solution that uses a set of PDF documents.

You require two large language models (LLMs):

• An embedding model must help categorize the documents.

• A general-purpose model must generate semantically and contextually accurate output based on the documents.

You need to select benchmarks to observe the quality of the models.

Which metrics should you use for the benchmarks? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 19

You need to standardize how Fabrikam Inc. manages machine learning assets.
Which action should you perform first?

A
Register assets in the Azure Machine Learning registry.
B
Create a shared Azure Machine Learning workspace.
C
Deploy a managed online endpoint.
D
Create a new Microsoft Foundry project.

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 20

You manage an Azure Machine Learning workspace. You create an experiment named experiment1 by using the Azure Machine Learning Python SDK v2 and MLflow.

You are reviewing the results of experiment1 by using the following code segment:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 21

You manage an Azure Machine Learning workspace by using the Python SDK v2.

You must create an automated machine learning job to generate a classification model by using data files stored in Parquet format. You must configure an autoscaling compute target and a data asset for the job.

You need to configure the resources for the job.

Which resource configuration should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 22

You have a deployment of an Azure OpenAI Service base model.

You plan to fine-tune the model.

You need to prepare a file that contains training data.

Which file format should you use?

A
CSV
B
TSV
C
JSONL
D
JSON

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 23

You manage an Azure Machine Learning workspace by using the Python SDK v2.

You must create a compute cluster in the workspace. The compute cluster must run workloads and properly handle interruptions. You start by calculating the maximum amount of compute resources required by the workloads and size the cluster to match the calculations.

The cluster definition includes the following properties and values:

• name="mlcluster1"

• size="STANDARD_DS3_v2"

• min_instances=1

• max_instances=4

• tier="dedicated"

The cost of the compute resources must be minimized when a workload is active or idle. Cluster property changes must not affect the maximum amount of compute resources available to the workloads run on the cluster.

You need to modify the cluster properties to minimize the cost of compute resources.

Which properties should you modify? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 24

A team maintains Infrastructure as Code (IaC) templates to provision Azure Machine Learning resources.

Provisioning must be triggered by changes in the templates and executed without manual intervention.

You need to automate resource provisioning.

Which action should you take for each requirement? To answer, move the appropriate actions to the correct requirements. You may use each action once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 25

You manage an Azure OpenAI deployment of the gpt-4o base model.

You plan to fine-tune the deployed model.

You need to prepare a file that contains training data.

Which keys should you include in each line of the training data file? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 26

You have a Microsoft Foundry project and a CSV file stored in Azure Blob Storage.

You plan to add the CSV file as the grounding data to the project for RAG by using the file data type.

You need to specify the URL schema to designate the blob location.

Which URL schema should you specify?

A
hdfs
B
nfs
C
file
D
wasbs

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 27

You need to isolate training workloads while remaining cost-aware to address Fabrikam Inc.’s issues, constraints, and technical requirements.

What should you implement?

A
Training jobs that run on a single shared compute cluster
B
Fixed-size compute cluster
C
Dedicated compute clusters per experiment
D
Managed compute targets with autoscaling

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 28

You manage a Microsoft Foundry project.

You plan to create a search index by using the Microsoft Foundry SDK.

You need to configure the Content field as a prioritized field for semantic ranking. The field is already set to be searchable.

How should you complete the item code segment? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 29

A team trains an MLflow model that scores customer churn risk. The model will be consumed by different downstream systems.
One system requests predictions synchronously during customer interactions.
Another system submits files containing millions of records for scheduled scoring.
You need to deploy the model by using managed inference options that match each usage pattern.
Which option should you use for each usage pattern? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 30

An organization operates a customer-facing generative AI chat service deployed by using Microsoft Foundry. The service processes a predictable, sustained volume of requests. The service must meet strict response time service-level agreements (SLAs) during peak business hours.

The organization requires that:

• Model responses remain consistent during sustained high traffic.

• Latency does not degrade during peak usage periods.

• Capacity planning avoids throttling and unpredictable performance.

You need to ensure that the deployed foundation model can reliably handle sustained, high-volume traffic while meeting performance and availability requirements.

What should you do?

A
Implement spillover traffic management for excess demand.
B
Increase batch size for inference requests.
C
Optimize prompts to reduce token usage.
D
Deploy the model by using serverless API endpoints.

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 31

You manage an Azure Machine learning workspace. You develop a machine learning model.

You must deploy the model to use a low-priority VM with a pricing discount.

You need to deploy the model.

Which compute target should you use?

A
Azure Container Instances (ACI)
B
Azure Machine Learning compute clusters
C
Local deployment
D
Azure Kubernetes Service (AKS)

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 32

A team manages an Azure Machine Learning workspace where they deploy models to online endpoints.

The team needs to introduce a new version of a model to production without disrupting existing users.

The team must validate the new version before full rollout.

You need to reduce risk during deployment.

What should you do?

A
Deploy the model to a batch endpoint.
B
Split traffic between deployments.
C
Replace the existing endpoint.
D
Route all traffic to the new deployment.

Premium Solution Locked

Unlock all 162 answers & explanations

QUESTION 33

A team deploys a machine learning model to a managed online endpoint. The team monitors model performance and data quality metrics in production.
When monitoring thresholds are exceeded, the team requires an automated operational response that notifies downstream systems.
You need to configure the monitoring solution to meet the requirements.
Which configuration should you associate with each requirement as a first step? To answer, move the appropriate configurations to the correct requirements. You may use each configuration once, more than once, or not at all. You may need to move the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 162 answers & explanations

Full Question Bank Locked

You have reached the end of the free study guide preview. Upgrade now to unlock all 162 questions and the full simulation engine.

Customer Reviews

5 / 5
(15,000+ verified)
5
100%
4
0%
3
0%
2
0%
1
0%

Global Community Feedback

DM

David M.

Verified Student

"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."

SJ

Sarah J.

Premium Member

"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."

MC

Michael C.

Verified Buyer

"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"

Need Assistance?

> Our expert support team is available to assist you with any inquiries about our exam materials.

Contact Support
Average response: < 24 Hours

Get Exam Updates

> Subscribe to receive instant notifications on new questions and exclusive flash sales.

* Join 5,000+ students getting weekly updates

Support Chat â—Ź Active Now

đź‘‹ Hi! How can we help you pass your exam?

Enter email to start chatting