Courseiva

Microsoft Certified: Machine Learning Operations Engineer Associate (AI-300) (AI-300) (AI-300) — Questions 175

204 questions total · 3pages · All types, answers revealed

Page 1 of 3

Page 2
1
Multi-Selecthard

Which TWO techniques should you use to improve the accuracy of a RAG pipeline?

Select 2 answers
A.Reducing the number of documents in the vector store.
B.Upgrading to a more advanced embedding model.
C.Increasing the temperature to 2.0.
D.Optimizing document chunking strategy.
E.Using only one single long chunk for all documents.
AnswersB, D

Higher quality embeddings lead to better semantic relevance.

Why this answer

Chunking strategy and better embedding models directly impact the quality of retrieved data.

2
MCQeasy

You are monitoring the cost of your GenAI infrastructure. You want to track usage per specific project. Which feature in Azure AI Foundry should you use?

A.Use 'Resource Tags' on the Azure AI project resource.
B.Configure 'Cost Analysis' alerts in the Azure Portal.
C.Implement 'Azure Policy' to restrict resource types.
D.Switch to 'Pay-As-You-Go' subscription model.
AnswerA

Tags are the native method to categorize costs in Azure billing.

Why this answer

Tags are the standard mechanism in Azure for grouping resources and tracking costs associated with specific projects or teams.

3
MCQeasy

You need to monitor the data drift of a model deployed in Azure ML. What is the first step you must take?

A.Configure Application Insights
B.Run a manual evaluation script
C.Create a Data Drift Monitor
D.Enable Azure Monitor logs
AnswerC

Data Drift Monitor is the specific feature for tracking distribution changes.

Why this answer

You must create a Data Drift Monitor object linked to your target dataset and baseline dataset to begin tracking.

4
MCQmedium

You are setting up a CI/CD pipeline for GenAI models. You need to evaluate the model's performance on a benchmark dataset before it is promoted to the production endpoint. Which Azure AI Foundry capability should be integrated into your pipeline?

A.Prompt Flow evaluation runs.
B.Model catalog benchmarking.
C.Azure AI Content Safety scanning.
D.Azure Machine Learning model drift monitor.
AnswerA

Evaluation runs are specifically designed to measure model responses against ground truth benchmarks.

Why this answer

Evaluation runs in Prompt Flow allow for automated testing of model quality against datasets, which is a required step for a robust GenAI CI/CD pipeline.

5
MCQeasy

Which Azure feature is used to define infrastructure as code for your Azure ML workspace?

A.Azure Portal
B.Azure Bicep
C.PowerShell
D.Azure CLI
AnswerB

Bicep is a declarative language for deploying Azure infrastructure.

Why this answer

Azure Bicep is the recommended tool for defining and deploying Azure resources as code.

6
Multi-Selectmedium

Which THREE features does Azure AI Foundry provide to help developers?

Select 3 answers
A.Evaluation.
B.Azure Active Directory creation.
C.Direct physical hardware access.
D.Model Catalog.
E.Prompt Flow.
AnswersA, D, E

Simplifies model testing.

Why this answer

Model Catalog, Prompt Flow, and Evaluation are key developer-facing features in Azure AI Foundry.

7
Multi-Selecthard

Which THREE metrics can be logged during training to track performance in Azure ML?

Select 3 answers
A.Model accuracy.
B.Compute instance IP address.
C.Custom metrics.
D.Workspace subscription ID.
E.Training loss.
AnswersA, C, E

Standard metric.

Why this answer

Accuracy, loss, and custom metrics are standard loggable items.

8
Multi-Selectmedium

You are configuring a CI/CD pipeline for model deployment. Which THREE actions must you perform to ensure model traceability?

Select 3 answers
A.Use a shared local folder for model artifacts
B.Register the model in the Azure ML Model Registry with versioning
C.Add experiment tags to the model artifact
D.Delete all training logs after deployment
E.Store the training script hash in the model properties
AnswersB, C, E

Versioning is essential for tracking changes over time.

Why this answer

Model registry registration, metadata tagging, and linking to the source code commit are standard MLOps practices for traceability.

9
MCQmedium

You are deploying a model via a Managed Online Endpoint. You want to implement a Canary deployment where 10% of traffic is sent to a new model version. How do you configure this?

A.Configure the 'traffic' parameter in the 'az ml online-endpoint update' command.
B.Modify the 'inference_config.json' file to include weights.
C.Create two endpoints and use an Azure Load Balancer.
D.Set the 'replica_count' to 10% of total capacity.
AnswerA

This is the correct way to shift traffic weights.

Why this answer

You use the 'update' command on the endpoint to set the 'traffic' parameter, distributing weights across deployment names.

10
Multi-Selectmedium

Which THREE factors contribute to increased latency in an LLM application?

Select 3 answers
A.The number of system messages used.
B.The size/complexity of the chosen model.
C.The number of output tokens generated.
D.The use of JSON output mode.
E.The number of input tokens provided.
AnswersB, C, E

Larger models take longer to compute per token.

Why this answer

Model size, input/output token count, and network transit time are the main drivers of latency.

11
MCQhard

Your team uses a custom Docker image for training. You need to update the image in the Azure Container Registry (ACR). What is the recommended workflow to ensure Azure ML picks up the latest version?

A.Modify the storage account permissions
B.Restart the compute cluster
C.Update the image tag and refresh the Environment
D.Delete and recreate the workspace
AnswerC

Azure ML environments rely on tags; refreshing the environment definition ensures the latest image is used.

Why this answer

Updating the image tag and updating the environment definition in Azure ML forces the system to pull the new version.

12
MCQhard

Your team is using Semantic Kernel for agent orchestration. You notice frequent transient errors when the agent interacts with multiple LLM services. How should you implement infrastructure-level resiliency?

A.Disable the 'Streaming' flag in the agent request.
B.Use an 'Azure API Management' policy to implement a retry pattern.
C.Switch the model to a higher tier instance type.
D.Increase the 'Timeout' parameter in the model deployment manifest.
AnswerB

APIM policies provide a robust, centralized mechanism to handle retries for LLM endpoints.

Why this answer

Implementing exponential backoff and retries via the 'RetryHandler' in the HttpClient factory or Semantic Kernel settings is the standard approach for infrastructure-level resiliency.

13
Multi-Selectmedium

Which TWO of the following can be used to manage Azure ML assets like environments and models?

Select 2 answers
A.Azure Monitor
B.Azure Logic Apps
C.Azure CLI v2
D.Azure ML Studio
E.Power BI
AnswersC, D

Provides command-line management.

Why this answer

The Azure ML Studio UI and the CLI v2 are both primary interfaces for asset management.

14
Multi-Selecteasy

Which TWO languages are natively supported for the Azure ML SDK?

Select 2 answers
A.Pascal.
B.Basic.
C.R.
D.Python.
E.Fortran.
AnswersC, D

Supported language.

Why this answer

Python and R are the primary languages with official SDK support.

15
MCQmedium

You are deploying a model that requires specific GPUs. How do you ensure you get the right infrastructure?

A.Choose the correct SKU during model deployment.
B.Add the model to a resource group.
C.Update the OS of the node.
D.Request a quota increase for CPU.
AnswerA

SKU selection determines the underlying compute resources.

Why this answer

Selecting the appropriate SKU (e.g., standard vs. GPU-optimized) during the deployment process ensures you get the required infrastructure.

16
Multi-Selecteasy

When configuring observability for an AI application, which TWO telemetry types should you collect to analyze both performance and quality?

Select 2 answers
A.Hard drive space
B.Content safety flags
C.User profile pictures
D.CPU temperature
E.Request latency
AnswersB, E

Essential quality metric.

Why this answer

Performance metrics (latency) and quality/safety flags are essential for observability.

17
Multi-Selectmedium

You want to automate the scaling of your AI agent orchestration. Which TWO components do you need to configure?

Select 2 answers
A.A manual human-in-the-loop review.
B.Hardcoded instance counts.
C.Static IP addresses.
D.Autoscale policies.
E.Monitoring metrics (e.g., latency, throughput).
AnswersD, E

Rules that determine when to scale.

Why this answer

Auto-scaling is driven by metrics and defined by policies that govern instance counts.

18
Multi-Selecthard

Which THREE metrics are critical for monitoring the health of a GenAI deployment?

Select 3 answers
A.Request Latency.
B.Tokens Per Minute (TPM).
C.User email addresses.
D.CPU Usage of the host node.
E.Error Rate.
AnswersA, B, E

Indicator of performance.

Why this answer

Latency, throughput (tokens per second), and error rates are the standard health metrics for AI deployments.

19
MCQmedium

You want to evaluate your prompt engineering changes quantitatively. Which method is most reliable for comparing two prompt versions?

A.Monitoring the total request count.
B.Asking developers for subjective feedback.
C.Checking if the model is running on GPT-4.
D.Running the prompts against a benchmark evaluation dataset.
AnswerD

Evaluation datasets ensure consistent, objective comparison metrics.

Why this answer

A/B testing with a ground-truth dataset allows for objective measurement of performance changes.

20
MCQeasy

You are configuring a chat application. What is the benefit of enabling streaming in the Azure OpenAI API?

A.Increases the model's accuracy.
B.Removes the need for a system prompt.
C.Reduces time-to-first-token (TTFT) perception for the end-user.
D.Decreases the total number of tokens consumed.
AnswerC

Streaming provides immediate feedback rather than waiting for the entire response.

Why this answer

Streaming improves perceived latency by delivering tokens as they are generated.

21
Multi-Selecthard

Which THREE items are captured in the experiment lineage in Azure Machine Learning?

Select 3 answers
A.Hardware manufacturer.
B.Training code/snapshot.
C.Used datasets.
D.Environment definition.
E.Number of team members.
AnswersB, C, D

Code lineage.

Why this answer

Datasets, code, and environments are the pillars of reproducibility.

22
MCQeasy

You are monitoring an Azure OpenAI deployment and need to identify if a model is outputting content that violates safety policies. Which Azure AI Content Safety feature should you enable to categorize harmful content?

A.Azure Monitor Logs
B.Application Insights Profiler
C.Content Safety API text analysis
D.Prompt Flow Guardrails
AnswerC

The Content Safety API allows for scanning text against predefined safety categories.

Why this answer

The Content Safety service provides classification categories such as Hate, Self-Harm, Sexual, and Violence to filter model outputs.

23
MCQmedium

You want to perform hyperparameter tuning using the 'HyperDrive' service. You have a requirement to stop poor-performing runs early to save compute costs. Which policy should you use?

A.'MedianStoppingPolicy'.
B.'BanditPolicy'.
C.'TruncationSelectionPolicy'.
D.'RandomParameterSampling'.
AnswerA, B

This is also valid, but Bandit is the most common answer for this scenario.

Why this answer

The 'BanditPolicy' is the standard early-termination policy that stops runs based on a slack factor/amount compared to the best-performing run.

24
MCQhard

A training job is consuming too much disk space on a compute cluster. What can you do to provide more persistent scratch space?

A.Mount a Datastore as a mount point
B.Use a smaller Docker container
C.Increase the OS disk size of the VM
D.Change the experiment name
AnswerA

Mounting a Datastore provides external storage that can be used for large datasets or scratch space.

Why this answer

Mounting a Datastore or using Azure Files provides persistent, shared scratch space accessible by the compute cluster.

25
MCQeasy

What is the benefit of using 'Model Catalog' in Azure AI Foundry?

A.It provides free LLM usage for all models.
B.It eliminates the need for authentication.
C.It automatically builds your application UI.
D.It provides pre-optimized models with one-click deployment.
AnswerD

This allows for rapid and standard deployment of models.

Why this answer

The Model Catalog provides a curated list of models that are pre-optimized for deployment on Azure infrastructure.

26
MCQeasy

In Azure ML, what is a 'Component'?

A.A storage account
B.A reusable pipeline step
C.A user role
D.A physical server
AnswerB

Components are modular, reusable steps in an ML pipeline.

Why this answer

A component is a reusable, versioned building block for an ML pipeline.

27
MCQmedium

You are tracking LLM performance. Which metric is most critical to monitor if your cost-per-request is increasing unexpectedly?

A.Token usage
B.User satisfaction score
C.Latency
D.Model version ID
AnswerA

Token consumption is the primary driver of costs.

Why this answer

Token usage directly correlates with cost in most LLM provider pricing models.

28
MCQeasy

In an LLM evaluation workflow, what does the 'Coherence' metric measure?

A.The length of the response
B.The logical flow and structure of the output
C.The presence of offensive language
D.The factual accuracy of the answer
AnswerB

Coherence is specifically about the logical quality of the output.

Why this answer

Coherence measures how well a model-generated answer makes sense and flows logically as a human-like response.

29
Multi-Selecteasy

Which TWO resources are created inside an Azure Machine Learning workspace?

Select 2 answers
A.External website.
B.Compute cluster.
C.Azure Active Directory.
D.Office 365 tenant.
E.Datastore.
AnswersB, E

ML resource.

Why this answer

Compute and Datastores are resources managed within the workspace.

30
MCQhard

You are running a distributed training job using the 'PyTorch' framework on Azure Machine Learning. You need to configure the 'DistributionConfiguration'. Which setting is mandatory for multi-node training?

A.'process_count' or 'node_count' in the configuration.
B.'framework' set to 'TensorFlow'.
C.'shm_size' set to 1GB.
D.'enable_gpu' set to False.
AnswerA

This defines the parallel distribution parameters.

Why this answer

When using 'PyTorch' distribution, you must specify the 'process_count' or 'node_count' to correctly distribute the workload across the compute cluster.

31
MCQeasy

Your team needs to share a model across different workspaces. What is the most efficient way to achieve this in Azure Machine Learning?

A.Export the model as a pickle file and upload to each workspace.
B.Duplicate the workspace storage account.
C.Re-train the model in every workspace.
D.Use a shared Azure Machine Learning Registry.
AnswerD

Registries provide cross-workspace asset management.

Why this answer

Azure Machine Learning Registries allow for the sharing of model assets, environments, and components across multiple workspaces.

32
Multi-Selectmedium

You are setting up an evaluation suite for your LLM. Which THREE metrics are commonly provided by the 'Built-in' evaluators in Azure AI Prompt Flow?

Select 3 answers
A.Coherence
B.Groundedness
C.Relevance
D.Deployment cost
E.Training duration
AnswersA, B, C

Built-in metric.

Why this answer

The standard built-in metrics in Prompt Flow include Groundedness, Relevance, and Coherence.

33
Multi-Selecteasy

Which TWO of the following are benefits of using Azure ML Environments?

Select 2 answers
A.Network traffic filtering
B.Consistent software dependencies
C.Database optimization
D.Versioning of software stacks
E.Automatic scaling
AnswersB, D

Ensures reproducibility.

Why this answer

Environments ensure reproducibility and simplify dependency management across environments.

34
MCQmedium

You need to ensure that a training script running on Azure ML has access to secrets (like API keys) without hardcoding them in the script. What should you use?

A.Azure Key Vault
B.Environment variables in the Dockerfile
C.Local configuration files
D.Hardcoding in the script
AnswerA

Key Vault stores secrets securely and allows the workspace to retrieve them at runtime.

Why this answer

Azure Key Vault is integrated with Azure ML to securely manage and inject secrets into training jobs.

35
MCQmedium

You are deploying a high-throughput Large Language Model on Azure AI Foundry. You need to ensure the underlying infrastructure supports rapid auto-scaling based on request latency. Which configuration should you prioritize in the deployment settings?

A.Enable 'Load Balancing' in the Azure AI Search resource.
B.Configure the 'Scale' settings in the deployment to use a custom metric based on 'Request Latency'.
C.Increase the 'Quota' of the underlying Azure subscription.
D.Set the minimum instance count to 0 in the deployment configuration.
AnswerB

Scaling by latency ensures infrastructure expands before performance degrades.

Why this answer

Auto-scaling for Azure AI Model Catalog deployments is managed via the 'Scale' tab, specifically targeting 'Instances' to handle request concurrency.

36
MCQhard

You are securing an agent orchestration infrastructure where agents must access internal data stores. To prevent data exfiltration, you need to restrict all traffic to the Azure AI Foundry project to a private network. What should be configured?

A.Enable a Virtual Network Service Endpoint on the storage account only.
B.Implement an Azure Firewall to inspect all outbound traffic from the agents.
C.Use an API Gateway with IP whitelisting.
D.Configure a Private Endpoint for the Azure AI project and disable public access.
AnswerD

Private Endpoints ensure traffic stays on the Microsoft backbone and is isolated from the public internet.

Why this answer

A Private Endpoint for the Azure AI project ensures that all communication with the service happens over a private IP address within your VNet.

37
Multi-Selecteasy

Which TWO types of compute can be used for training in Azure Machine Learning?

Select 2 answers
A.Key Vault.
B.Compute Cluster.
C.Compute Instance.
D.Web App.
E.Azure SQL.
AnswersB, C

Used for large, distributed training.

Why this answer

Compute Clusters and Compute Instances are the standard training targets.

38
MCQmedium

You need to attach an existing Azure Kubernetes Service (AKS) cluster to your Azure ML workspace for model inference. Which credential type is required to establish this connection?

A.SAS Token
B.Managed Identity
C.Azure Active Directory B2C
D.Service Principal
AnswerD

Azure ML requires a Service Principal to manage and interact with the Kubernetes API on the attached cluster.

Why this answer

The Service Principal is the standard method for managing identity-based access for AKS clusters attached to Azure ML.

39
MCQmedium

You are debugging an Azure ML pipeline. You want to see the stdout of a specific step that failed. How do you access this?

A.Check the 'Experiment' dashboard settings.
B.Run 'az ml job get-logs' with the job ID.
C.Download the 'run.json' file.
D.Look in the 'Workspace' logs folder.
AnswerB

This command retrieves the logs for the specified job run.

Why this answer

You can access the logs for each step by clicking on the 'Outputs + logs' tab of that specific step run in the Azure ML Studio interface.

40
MCQmedium

You are designing a quality assurance gate for your model. If a model output has a 'Violence' score of 0.8 according to Azure AI Content Safety, what is the best practice to handle it?

A.Allow the output but log it as an error
B.Retrain the model immediately
C.Filter out the output and return a generic refusal
D.Ignore the score if the latency is high
AnswerC

Blocking unsafe content is the industry standard for content safety.

Why this answer

A high score indicates a potential violation, and the output should be blocked or sanitized before reaching the end user.

41
MCQeasy

What is the primary purpose of a 'Labeling Project' in Azure Machine Learning?

A.To facilitate manual data annotation for supervised learning.
B.To automatically version datasets.
C.To monitor model deployment drift.
D.To define model evaluation metrics.
AnswerA

This is the core function of the tool.

Why this answer

Labeling projects are used to manage the process of annotating data (images, text) to create datasets for supervised learning.

42
MCQmedium

You need to orchestrate a series of ML steps (Data prep, Training, Evaluation). Which Azure ML feature is specifically designed for this?

A.Notebooks
B.Azure ML Pipelines
C.Batch endpoints
D.AutoML
AnswerB

Pipelines are the standard for chaining ML tasks.

Why this answer

Azure ML Pipelines allow you to string together components into a workflow.

43
MCQmedium

What is the purpose of a 'System-Assigned Managed Identity' in the context of an Azure AI project?

A.To automatically encrypt all data in transit.
B.To allow users to log in to the project portal.
C.To provide public IP connectivity.
D.To provide a secure identity for the resource to interact with other Azure services.
AnswerD

This is the primary purpose of managed identities.

Why this answer

Managed identities allow the project or compute resource to securely access other Azure resources (like Key Vault or storage) without managing explicit credentials.

44
MCQeasy

Which Azure Machine Learning resource provides a pre-configured environment for development?

A.Inference Cluster.
B.Compute Instance.
C.Compute Cluster.
D.Managed Endpoint.
AnswerB

Designed for developer workstation experience.

Why this answer

A 'Compute Instance' is a managed, cloud-based development environment that comes pre-installed with the Azure ML SDK, Jupyter, and other tools.

45
MCQeasy

What is the 'Workspace' in Azure Machine Learning?

A.A specific model deployment.
B.A virtual machine for training.
C.A storage container for datasets.
D.The top-level resource for managing all ML assets.
AnswerD

This is the correct definition.

Why this answer

The Workspace is the top-level resource for Azure Machine Learning, providing a centralized place to manage all artifacts, computes, and jobs.

46
Multi-Selecthard

When designing a content safety policy, which THREE categories are explicitly supported by the Azure AI Content Safety API?

Select 3 answers
A.Sexual
B.Hate
C.Political bias
D.Self-Harm
E.Code syntax errors
AnswersA, B, D

Supported category.

Why this answer

Azure AI Content Safety supports Hate, Sexual, Violence, and Self-Harm categories.

47
Multi-Selectmedium

When configuring a private endpoint for your Azure AI resource, which TWO of the following must be set up?

Select 2 answers
A.A virtual network with a dedicated subnet.
B.A load balancer.
C.A firewall rule allowing all traffic.
D.A public IP address.
E.A private DNS zone for internal resolution.
AnswersA, E

Required for endpoint placement.

Why this answer

A private endpoint requires a target subnet and a private DNS zone for resolution.

48
MCQhard

You are troubleshooting high latency in a RAG-based application. The vector search is fast, but the generation phase is slow. Which component should be scaled?

A.Optimize the vector database index.
B.Increase the 'Instances' count for the LLM deployment.
C.Reduce the 'temperature' setting.
D.Increase the 'Embedding Model' throughput.
AnswerB

Scaling the LLM inference instance count increases generation throughput.

Why this answer

If the generation phase is slow, you likely need to scale the LLM inference endpoint (e.g., increasing instances or provisioned capacity).

49
Multi-Selectmedium

You are preparing a model for deployment. Which THREE items should you include in the model package?

Select 3 answers
A.Training dataset.
B.Pipeline definition.
C.Model weights (pickle/onnx).
D.Inference script (score.py).
E.Environment file (conda.yaml).
AnswersC, D, E

The actual model.

Why this answer

Model file, environment requirements, and inference code.

50
MCQeasy

What is the benefit of using 'Azure Machine Learning Datasets' (or Data Assets) over raw storage paths?

A.They convert data to Parquet format.
B.They provide versioning and lineage tracking.
C.They automatically remove duplicate records.
D.They are faster to read.
AnswerB

This is the primary benefit over raw URIs.

Why this answer

Data Assets allow for versioning, lineage tracking, and simplified usage across different compute targets.

51
Multi-Selecteasy

Which THREE items should you keep track of in your AI Foundry project to ensure good governance?

Select 3 answers
A.Quota usage.
B.User passwords.
C.Resource Tags.
D.Role-Based Access Control (RBAC) assignments.
E.Personal browser history.
AnswersA, C, D

For operational stability.

Why this answer

Governance relies on tracking tags, role assignments, and quotas.

52
MCQmedium

You want to evaluate how well your model adheres to specific brand guidelines. Which evaluation method is best suited for this?

A.Custom LLM-as-a-judge evaluation
B.Token usage threshold alert
C.Default coherence metric
D.Automated regression testing of code
AnswerA

A custom evaluator can be prompted to check for specific brand style guidelines.

Why this answer

Custom evaluation using a judge model (LLM-as-a-judge) configured with a rubric allows for checking specific style or brand compliance.

53
MCQmedium

You have a sudden spike in requests. What is the quickest way to check if you have hit your Azure OpenAI token quota?

A.Review your monthly invoice.
B.Check the 'Quotas' tab in Azure AI Foundry.
C.Check the Azure Monitor 'Errors' log.
D.Check the model endpoint deployment logs.
AnswerB

This provides real-time visibility into quota usage.

Why this answer

The 'Quotas' section in the Azure AI Foundry or the Azure Portal 'Usage + Quotas' page displays current usage versus limits.

54
MCQhard

You are deploying a large model. During the deployment, you encounter a 'Resource Not Available' error. What is the most likely cause?

A.The API key is invalid.
B.The project name is too long.
C.The subscription is not registered for the service.
D.The region does not have capacity for the requested model SKU.
AnswerD

Capacity constraints are common for specific high-end GPU SKUs.

Why this answer

This error usually indicates that the region lacks sufficient capacity for the specific SKU requested.

55
MCQmedium

You need to ensure that your LLM responses are filtered for harmful content. Which infrastructure component provides this capability?

A.Azure Monitor
B.Azure Key Vault
C.Azure AI Content Safety
D.Azure Bastion
AnswerC

Content Safety is the native service for content moderation in AI Foundry.

Why this answer

Azure AI Content Safety is the integrated service used within AI Foundry to monitor and filter model outputs.

56
MCQeasy

You are setting up an Azure Machine Learning workspace and need to ensure that the workspace is not accessible from the public internet. Which networking feature should you configure?

A.Azure Bastion
B.Application Gateway
C.Private Endpoint
D.Service Tags
AnswerC

A Private Endpoint provides a private IP address for the workspace, blocking public access.

Why this answer

A Private Endpoint allows you to access your workspace securely via a private IP address within your virtual network.

57
Multi-Selecthard

You are managing model lifecycle security. Which THREE actions are recommended to secure your ML models?

Select 3 answers
A.Allow all traffic in NSGs.
B.Make all Datastores public.
C.Store secrets in Azure Key Vault.
D.Use Azure Role-Based Access Control (RBAC).
E.Use private endpoints for workspace access.
AnswersC, D, E

Secures credentials.

Why this answer

Use RBAC, Key Vault for secrets, and private endpoints for network security.

58
MCQeasy

Which service allows you to track ML models and their associated artifacts?

A.Azure Container Registry.
B.Azure Key Vault.
C.Azure Data Lake.
D.Azure Model Registry.
AnswerD

This is the correct component.

Why this answer

The 'Azure Machine Learning Model Registry' is specifically designed to store, version, and manage models.

59
MCQhard

You are fine-tuning a model on Azure OpenAI and notice the training loss curve is fluctuating significantly. What is the most likely cause?

A.The model's temperature is set too high.
B.The training dataset size is too large.
C.The model lacks enough epochs.
D.The learning rate is too high.
AnswerD

A high learning rate causes the model to overshoot optimal weights.

Why this answer

High learning rate in fine-tuning often causes divergence and loss fluctuations.

60
MCQeasy

When sharing an AI project with a team, which resource group architecture is best practice for lifecycle management?

A.Use a public resource group for all team members.
B.Spread resources across multiple regions.
C.Keep the project and its dependencies in a single resource group.
D.Place each component in a different subscription.
AnswerC

Single-group containment is best for lifecycle management.

Why this answer

Grouping the project, storage, and key vault in a single resource group simplifies management and deletion of the entire lifecycle.

61
MCQhard

You have an automated deployment pipeline. You want to run an integration test on the model after deployment. Which tool is best suited for this?

A.A manual 'Endpoint' health check.
B.The training script.
C.Azure DevOps pipelines.
D.Azure Machine Learning Studio 'Tests' tab.
AnswerC

Standard CI/CD orchestration.

Why this answer

'Azure DevOps' (or GitHub Actions) is the industry-standard tool for orchestrating post-deployment testing as part of a CI/CD pipeline.

62
MCQmedium

You are auditing your model's safety logs and notice several 'jailbreak' attempts. Where can you find these logs in the Azure ecosystem?

A.Azure Key Vault
B.Log Analytics Workspace
C.Azure Resource Graph
D.Azure Active Directory
AnswerB

Log Analytics stores the data captured by Content Safety for auditing.

Why this answer

Azure AI Content Safety logs, when integrated with Azure Monitor/Log Analytics, allow for auditing and analysis of safety events.

63
Multi-Selecthard

You are experiencing throttling on your AI endpoint. Which TWO steps should you take?

Select 2 answers
A.Check current usage against quota limits.
B.Disable all security features.
C.Change the model version to one that is faster but less smart.
D.Request a quota increase for the model.
E.Delete all existing deployments.
AnswersA, D

Identifies the source of throttling.

Why this answer

To resolve throttling, you need to either optimize usage or increase the available quota/capacity.

64
MCQeasy

You have a new model deployment that is incurring high costs. How can you find the top-consuming deployments?

A.Use 'Cost Analysis' in the Azure Portal.
B.Check the 'Activity Log'.
C.Check the Azure AI Foundry 'Deployments' page.
D.Review the 'Quotas' tab.
AnswerA

Cost analysis is the standard tool for identifying spend by resource.

Why this answer

The cost analysis tool in the Azure portal allows you to group costs by 'Resource' or 'Tag' to identify top-consuming deployments.

65
MCQeasy

Where do you define the model deployment settings, including instance count and version?

A.Azure Portal -> Subscriptions
B.Azure Key Vault -> Secrets
C.Azure Monitor -> Alerts
D.Azure AI Foundry -> Project -> Deployments
AnswerD

This is the correct navigation path for model deployments.

Why this answer

The 'Models + Endpoints' section within the Azure AI Foundry portal is where model deployments are managed.

66
MCQeasy

What is the purpose of a 'Datastore' in Azure Machine Learning?

A.To manage connectivity to storage services.
B.To store model weights.
C.To track model versions.
D.To process data in memory.
AnswerA

This is the definition of a Datastore.

Why this answer

A Datastore is an abstraction layer over Azure storage services (Blob, Files, ADLS) used to manage connections and data access in ML tasks.

67
Multi-Selecteasy

Which TWO actions can you perform in the Azure Machine Learning studio?

Select 2 answers
A.Modify global azure subscriptions.
B.Manage office 365 users.
C.View run history.
D.Configure networking in the tenant.
E.Register a new dataset.
AnswersC, E

Core function.

Why this answer

Experiment management and data asset management are core UI functions.

68
MCQmedium

A user wants to restrict the model's output to valid JSON format. What is the most effective way to ensure this?

A.Increase the temperature.
B.Add 'output must be JSON' to the prompt.
C.Post-process the output with a regex script.
D.Enable JSON mode/Response Format in the API configuration.
AnswerD

This feature forces the model to output valid JSON.

Why this answer

Using the 'Response Format' feature in Azure OpenAI enforces structured output, reducing parsing errors.

69
MCQeasy

What is the purpose of the Azure ML 'Model Registry'?

A.Managing network access
B.Calculating accuracy metrics
C.Executing training jobs
D.Storing model version history
AnswerD

The registry keeps track of models, versions, and lineage.

Why this answer

The Registry manages versioning and metadata of trained models.

70
MCQeasy

Which of the following is a key component of an observability strategy for Generative AI applications?

A.Hard-coding all model responses
B.Using only manual review processes
C.Monitoring both technical and quality metrics
D.Disabling logging to save costs
AnswerC

Comprehensive observability covers both system health and output quality.

Why this answer

Observability requires tracking both technical metrics (latency, errors) and quality metrics (groundedness, safety).

71
MCQeasy

What is the primary function of an Azure ML 'Datastore'?

A.Connection to storage services
B.Experiment tracking
C.Model registry
D.Compute resource management
AnswerA

Datastores act as a bridge to underlying storage, keeping credentials abstract.

Why this answer

Datastores are abstractions to securely connect to underlying data storage services like Blob storage or Data Lake.

72
Multi-Selecthard

You are troubleshooting a deployment. Which THREE logs are most helpful to check?

Select 3 answers
A.Deployment status logs.
B.Application output logs (stdout).
C.User browser logs.
D.Container build logs.
E.Azure billing logs.
AnswersA, B, D

Shows infrastructure issues.

Why this answer

Application logs, system logs, and deployment status logs are crucial.

73
Multi-Selecthard

You are troubleshooting a failed agent deployment. Which TWO areas should you inspect first?

Select 2 answers
A.The Azure status page.
B.The endpoint availability status.
C.The 'Deployment Logs' in the Azure AI Foundry portal.
D.The user profile settings.
E.The billing usage report.
AnswersB, C

Indicates if the infrastructure is actually accepting requests.

Why this answer

Deployment logs and endpoint connectivity are the primary sources for identifying deployment failures.

74
Multi-Selectmedium

Which THREE tools in Azure can be used to monitor the health and performance of your GenAI infrastructure?

Select 3 answers
A.Azure Front Door
B.Azure Log Analytics
C.Azure Application Insights
D.Azure Monitor
E.Azure Active Directory
AnswersB, C, D

Standard for log aggregation.

Why this answer

Application Insights, Log Analytics, and Azure Monitor are core observability tools.

75
MCQeasy

Your team is deploying a large language model in Azure AI Foundry. You need to ensure that the inference endpoint remains highly available across different regions. Which configuration should you implement?

A.Configure a Load Balancer at the VNet level for the model endpoint.
B.Set the model deployment to 'High Availability' mode in the Azure AI Foundry portal.
C.Enable global load balancing using Azure Front Door to route requests to multiple regional endpoint deployments.
D.Replicate the underlying storage account for the model weights across regions.
AnswerC

Azure Front Door is the recommended service for global HTTP load balancing across regional AI endpoints.

Why this answer

Azure AI Foundry supports multi-region endpoints via Azure Front Door or traffic manager integration to distribute requests across regional inference endpoints for high availability.

Page 1 of 3

Page 2

All pages