Courseiva

Microsoft Certified: Azure AI Cloud Developer Associate (AI-200) (AI-200) (AI-200) — Questions 175

507 questions total · 7pages · All types, answers revealed

Page 1 of 7

Page 2
1
MCQeasy

You need to store custom AI container images in a private registry hosted within Azure. Which Azure service provides a managed Docker registry service?

A.Azure Blob Storage
B.Azure Managed Disks
C.Azure Artifacts
D.Azure Container Registry
AnswerD

ACR allows you to build, store, and manage container images and artifacts.

Why this answer

Azure Container Registry (ACR) is the managed Docker registry service in Azure used for storing and managing container images.

2
MCQeasy

You are configuring a vector profile in Azure AI Search. Which three elements must be correctly linked together to define a complete vector search configuration?

A.Storage account, Key Vault, and Managed Identity
B.Semantic configuration, Answer profile, and Caption settings
C.Vectorizer, Algorithm configuration, and Field mapping
D.BM25 analyzer, Tokenizer, and Synonym map
AnswerC

A vector profile links an algorithm configuration, a vectorizer, and a field to establish how vector search operates.

Why this answer

In Azure AI Search, a vector profile requires linking an algorithm configuration (such as HNSW parameters), a vectorizer (specifying how embeddings are created or stored), and a field mapping.

3
MCQhard

You have an AI model container that is frequently crashing due to OOM (Out of Memory) errors. How do you identify the actual memory usage compared to the limits?

A.Analyze metrics in Azure Monitor for Containers.
B.Run 'free -m' inside the container.
C.Check the pod 'Events'.
D.Use 'kubectl top nodes'.
AnswerA

Azure Monitor for Containers allows tracking of memory usage trends.

Why this answer

Azure Monitor or Prometheus/Grafana integration provides the metrics needed to compare usage against defined limits.

4
MCQeasy

Which distance metric in Azure Cosmos DB vector search calculates the inner product of two vectors, measuring both magnitude and angle?

A.dotproduct
B.cosine
C.euclidean
D.manhattan
AnswerA

dotproduct calculates the inner product of two vectors.

Why this answer

The dotproduct distance metric computes the inner product of two vectors.

5
MCQmedium

You are deploying an AI workload to AKS and want to ensure that pods belonging to your application are distributed across different fault domains (availability zones) for high availability. Which Kubernetes feature should you configure?

A.Resource quotas
B.Topology spread constraints
C.Node taints and tolerations
D.Horizontal Pod Autoscaler
AnswerB

Topology spread constraints ensure high availability by distributing pods across availability zones.

Why this answer

Topology spread constraints allow you to configure how pods are spread across failure domains such as regions, zones, or nodes.

6
Multi-Selectmedium

You are troubleshooting a containerized Python application in an Azure Container App that fails to respond to incoming HTTP requests. Which TWO diagnostic tools or features can you use within Azure Container Apps to investigate the issue? (Choose two.)

Select 3 answers
A.Console connection in the Azure portal for interactive shell access to a container replica
B.Built-in Application Insights integration for distributed tracing and exception logging
C.Direct Remote Desktop Protocol (RDP) session to the underlying node
D.Log stream feature in the Azure portal connected to Azure Log Analytics
E.Direct modification of the physical host server BIOS
AnswersA, B, D

The Azure portal provides a console connection tool to execute commands inside a running container replica.

Why this answer

Azure Container Apps provides log streaming (via Azure Monitor/Log Analytics) and a built-in console for interactive troubleshooting of container instances.

7
Multi-Selecthard

You are evaluating data layer architectures for an enterprise AI application that requires both vector search and structured transactional data management. Which THREE criteria favor choosing Azure Cosmos DB over Azure AI Search as the primary database? (Choose three)

Select 3 answers
A.Need for sub-10 millisecond point reads and writes on operational business records
B.Requirement to store and query arbitrary JSON operational documents alongside vectors
C.Requirement for advanced BM25 keyword search and neural semantic re-ranking
D.Requirement for multi-document ACID transactions within a transactional boundary
E.Requirement to generate automatic PDF text extraction and document chunking via indexers
AnswersA, B, D

Cosmos DB is designed for low-latency operational CRUD workloads.

Why this answer

Azure Cosmos DB is preferred when you need ACID transactions, low-latency point reads/writes on transactional records, and native NoSQL document storage alongside vector search.

8
Multi-Selecthard

You are troubleshooting a scenario where an Azure App Service hosting an AI frontend cannot communicate with an Azure OpenAI endpoint secured by a private endpoint in a different virtual network. Which THREE of the following networking configurations should you verify? (Choose three)

Select 3 answers
A.Azure Front Door geo-filtering rules blocking all international DNS queries.
B.Virtual network peering between the App Service VNet and the private endpoint VNet.
C.App Service VNet integration enabled so outbound application traffic can route into the VNet.
D.Local admin passwords on the App Service worker instances.
E.Private DNS zone integration (e.g., privatelink.openai.azure.com) linked to the virtual networks.
AnswersB, C, E

Correct. VNets must be peered so traffic can flow between the client app and the private endpoint.

Why this answer

Virtual network peering, private DNS zone integration, and App Service VNet integration must be correctly configured for private endpoint communication across VNets.

9
MCQeasy

You need to review the security recommendations provided by Microsoft for your Azure AI resources, such as enabling HTTPS-only traffic and configuring managed identities. Which Azure tool provides these prioritized security recommendations and a security score?

A.Microsoft Defender for Cloud
B.Azure Cost Management
C.Azure Monitor Metrics
D.Azure Service Health
AnswerA

Correct. Defender for Cloud assesses security posture and provides actionable recommendations and secure scores.

Why this answer

Microsoft Defender for Cloud provides continuous security assessments, recommendations, and a secure score across Azure resources.

10
MCQmedium

You are managing an Azure Service Bus Premium namespace. Your application requires strict transactional messaging where a worker receives a message from Queue A, processes it, and sends a resulting message to Queue B. If any step fails, both actions must be rolled back. How should you implement this?

A.Wrap the receive and send operations inside a .NET TransactionScope block.
B.Set the message session ID to the same value on both queues.
C.Enable Event Grid automatic forwarding between queues.
D.Use Event Hubs checkpoints for transactional rollback.
AnswerA

TransactionScope coordinates ambient transactions across Service Bus entities within the same Premium namespace.

Why this answer

Using .NET TransactionScope with Service Bus allows receiving from Queue A and sending to Queue B within a single atomic transaction.

11
MCQhard

Your team is implementing hybrid search in Azure AI Search combining full-text keyword search and vector search. Users report that certain exact product serial numbers are missing from the semantic ranking results. Which query parameter should you adjust to balance the influence of BM25 text search scores against vector cosine similarity scores?

A.Increasing the efSearch parameter in the index definition.
B.Enabling semantic ranking and providing a semanticConfiguration with targeted weight overrides.
C.Adjusting the top parameter to retrieve a larger candidate pool before RRF combination.
D.Switching the vector similarity metric from cosine to euclidean distance.
AnswerB

Adding a semantic configuration with designated title, content, and keyword fields ensures that exact alphanumeric serial numbers are correctly captured via secondary lexical boosting and reranked properly.

Why this answer

When performing hybrid queries in Azure AI Search, the search engine uses Reciprocal Rank Fusion (RRF) to combine results from text and vector searches. You can influence the weighting or use standard RRF parameters, but adjusting semantic ranking configurations or ensuring proper semantic configuration boosts can address relevance blending. Specifically, adjusting query parameters like semantic configuration or custom scoring profiles allows fine-tuning.

12
MCQmedium

You are building an order processing system with Azure Service Bus. Multiple clients might accidentally submit the exact same order twice within a 60-second window due to network retries. You need to prevent duplicate orders from entering the queue. What should you configure?

A.Enable Duplicate Detection on the queue and set the history time window to 60 seconds.
B.Configure Auto-Forwarding to a dead-letter queue with a 60-second TTL.
C.Set the LockDuration property to 60 seconds.
D.Enable partitioning and set the partition key to the client IP address.
AnswerA

Duplicate detection uses the MessageID to automatically discard messages with identical IDs sent within the specified time window.

Why this answer

Azure Service Bus provides Duplicate Detection. When enabled, the broker inspects the MessageId property of incoming messages within a configurable time window (DuplicateDetectionHistoryTimeWindow) and drops duplicates.

13
MCQmedium

Your application uses Azure Service Bus Queues. A spike in traffic causes multiple worker instances to contend for messages. You want to ensure that when a worker locks a message, no other worker can process it, and the lock is automatically renewed in the background if processing takes longer than expected. Which client library feature should you use?

A.Enable Auto-Lock Renewal on the message processor client.
B.Increase the LockDuration property on the queue to 2 hours permanently.
C.Use Event Grid advanced filters to throttle incoming messages.
D.Switch the queue to ReceiveAndDelete mode.
AnswerA

Auto-lock renewal background tasks keep extending the lock duration automatically until message processing completes.

Why this answer

Modern Azure Service Bus SDKs include an auto-lock renewal feature (e.g., `MaxAutoLockRenewalDuration` in .NET) that automatically extends the message lock while the handler is executing.

14
MCQhard

You are migrating a large vector dataset into an Azure AI Search index. To maximize ingestion speed and throughput, you temporarily adjust index settings. Which index configuration property should you modify during bulk ingestion?

A.Set HNSW efConstruction to 10,000 to maximize graph build precision
B.Scale out search units (replicas and partitions) to distribute ingestion load
C.Disable all scoring profiles and set vector dimensions to 1
D.Switch the index tier from Standard to Free
AnswerB

Scaling out search units increases indexing throughput for massive bulk uploads.

Why this answer

During heavy bulk ingestion, increasing the replica and partition count or adjusting merge/indexing batch sizes improves speed, but specifically, scaling out search units or temporarily disabling semantic ranker overhead optimizes throughput.

15
MCQhard

You are troubleshooting slow inference latency in an AI application deployed on AKS. You suspect that network packets between inference pods are traversing unnecessary hops due to overlay routing. Which CNI mode should you have chosen for optimal direct routing?

A.Azure CNI with direct pod IP routing (no overlay)
B.Kubenet with host-port mapping
C.Kubenet with basic Linux bridge
D.Azure CNI Overlay
AnswerA

Azure CNI allocates VNet IPs directly to pods, providing optimal networking performance.

Why this answer

Azure CNI without overlay assigns VNet IP addresses directly to pods, eliminating encapsulation overhead and improving networking performance for high-throughput AI workloads.

16
MCQmedium

You have an AI workload that requires persistent storage for large model checkpoints. Which storage type should you mount to an AKS pod for optimal performance?

A.Azure Disk (Premium).
B.Azure Files (Standard).
C.Ephemeral OS Disk.
D.Azure Blob Storage (container mount).
AnswerA

Premium SSDs provide the low latency and high IOPS needed for checkpoints.

Why this answer

Azure Disk storage is generally preferred for high-throughput I/O needed by AI checkpoints.

17
MCQhard

You are troubleshooting an AI application where users experience intermittent authentication failures when the application attempts to acquire tokens from Azure Active Directory for calling Cognitive Services. You want to inspect the exact HTTP status codes and error descriptions returned during token acquisition. Which namespace or log table should you analyze in Log Analytics?

A.Azure Cost Management amortization tables
B.Azure Storage blob access audit logs
C.Azure Key Vault secret version history
D.Azure Active Directory sign-in logs or AzureDiagnostics table capturing managed identity token requests
AnswerD

Correct. Identity and token acquisition failures are logged in Azure AD sign-in logs and diagnostic logs for managed identities.

Why this answer

Azure Active Directory sign-in logs and MSI (Managed Service Identity) token acquisition telemetry captured via Azure Monitor diagnostic settings (SignInLogs or AzureDiagnostics) record token acquisition attempts and failures.

18
MCQmedium

Your team is building an analytics pipeline where IoT telemetry data is ingested via Azure Event Hubs and needs to be continuously archived in Parquet format to an Azure Data Lake Storage Gen2 account for AI model training. Which built-in feature of Event Hubs should you enable?

A.Service Bus Geo-Replication
B.Event Grid Auto-Routing
C.Event Hubs Capture
D.Stream Analytics Integration Job
AnswerC

Event Hubs Capture automatically packages streaming telemetry into storage blobs without requiring custom worker code.

Why this answer

Event Hubs Capture allows you to automatically capture streaming data in Event Hubs and save it to an Azure Blob Storage or Azure Data Lake Storage Gen2 account in Avro or Parquet format.

19
MCQeasy

Your application publishes custom events to Azure Event Grid using the CloudEvents 1.0 schema format. Which required attribute must be present in every CloudEvents JSON payload to ensure valid delivery?

A.specversion, type, source, and id
B.PartitionKey and SequenceNumber
C.sb-connection-string and topic-name
D.authorization and aeg-sas-key
AnswerA

The CloudEvents 1.0 specification requires specversion, id, source, and type attributes for schema compliance.

Why this answer

CloudEvents specification mandates attributes such as `specversion`, `type`, `source`, and `id` for every valid event.

20
MCQmedium

You are configuring continuous deployment for an AI model container. Whenever a data scientist pushes code to a GitHub repository, you want Azure Container Registry to automatically build and tag the new container image without managing an external CI/CD build agent. What should you use?

A.Azure DevOps self-hosted build agent running on a VM
B.ACR Tasks with automated source code triggers
C.Azure Logic Apps polling GitHub webhooks
D.An AKS deployment controller pod
AnswerB

ACR Tasks can build container images natively in Azure upon commits to GitHub repositories.

Why this answer

ACR Tasks is a cloud-native build service that builds container images on Azure without requiring a separate CI/CD infrastructure.

21
MCQhard

You are configuring network security for an Azure Machine Learning workspace. Compute instances must be accessible via Jupyter Lab, but no public IP addresses can be associated with the compute instances. Which configuration is required?

A.Use ExpressRoute with public peering to route traffic directly to the compute instance public IP.
B.Deploy the compute instance in a public subnet with Network Security Group (NSG) rules blocking port 22.
C.Create the compute instance with no public IP and configure a private endpoint for the workspace, accessing via Azure Bastion or workspace workspace-managed network isolation.
D.Enable Azure Firewall with DNAT rules routing traffic to the compute instance public IP.
AnswerC

No public IP compute instances rely on private endpoints and outbound rules to prevent data exfiltration while allowing secure access.

Why this answer

Azure Machine Learning compute instances can be created with 'No Public IP' enabled, and administrators use Azure Bastion or workspace private endpoints to access them securely.

22
MCQhard

Your Azure AI application sends requests to multiple cognitive services. You need to route diagnostic logs and metrics from your Azure OpenAI and Azure AI Language services to a centralized Log Analytics workspace across different resource groups. What is the recommended way to configure this?

A.Enable Application Insights dependency tracking on the subscription level via Azure Policy
B.Configure diagnostic settings on each AI service resource pointing to the centralized Log Analytics workspace
C.Configure Azure Event Grid subscriptions for every log event emitted by the AI endpoints
D.Deploy a Log Analytics agent (MMA) directly onto the Azure OpenAI PaaS resource instances
AnswerB

Correct. Diagnostic settings are applied per resource to forward logs and metrics to a designated workspace.

Why this answer

Diagnostic settings in Azure Monitor allow you to route platform logs and metrics to a Log Analytics workspace, Event Hubs, or Azure Storage account.

23
Multi-Selecthard

You are troubleshooting slow query performance in an enterprise Azure AI Search vector deployment. Which THREE architectural or configuration adjustments can improve query throughput and latency? Choose three.

Select 3 answers
A.Scale out the number of search service replicas
B.Replace all vector fields with standard ASCII folding tokenizers
C.Ensure the search service is deployed on a Standard tier or higher with adequate RAM
D.Tune the efSearch parameter lower to trade off marginal recall for faster search traversal
E.Configure the index to use exhaustive KNN exclusively for high-QPS production workloads
AnswersA, C, D

Adding replicas increases query throughput (QPS) capacity.

Why this answer

To improve vector search performance in Azure AI Search, practitioners can scale out replicas, tune HNSW efSearch parameters, and leverage batching or appropriate tier sizing.

24
Multi-Selectmedium

You are scaling an AI workload in Azure Container Apps. Which TWO scale rule triggers are natively supported without custom KEDA extensions?

Select 2 answers
A.HTTP concurrent requests
B.Azure Virtual Machine disk I/O throughput
C.Active directory login failure rate
D.Custom hardware temperature sensors
E.CPU and Memory utilization thresholds
AnswersA, E

HTTP scaling scales based on simultaneous web requests.

Why this answer

Azure Container Apps natively supports scaling based on HTTP requests, CPU, memory, and Azure Service Bus without manual KEDA manifest configuration.

25
MCQhard

Your enterprise application uses Azure Service Bus Topics to broadcast AI model inference updates to multiple microservices. One particular subscriber requires filtering messages so it only receives updates where the 'ModelVersion' property is equal to 'v2' and the 'ConfidenceScore' is greater than 0.85. How should you implement this?

A.Create a boolean filter on the subscription matching a correlation ID of 'v2'.
B.Write custom middleware in the subscriber service to drop messages that do not meet the criteria after reading them from the topic.
C.Configure an Event Grid custom filter using advanced filters with an 'And' operator.
D.Create a SQL filter on the Service Bus subscription with the expression ModelVersion = 'v2' AND ConfidenceScore > 0.85.
AnswerD

SQL filters provide powerful boolean expressions based on message properties and system properties for Service Bus subscriptions.

Why this answer

You should create a SQL filter on the Service Bus subscription with an expression like ModelVersion = 'v2' AND ConfidenceScore > 0.85.

26
Multi-Selecthard

You are troubleshooting a slow vector query performance issue in Azure Cosmos DB for NoSQL. Which THREE actions can you take to improve vector search execution times? (Choose three)

Select 3 answers
A.Use the diskANN indexing type instead of flat indexes for large collections
B.Ensure your container is partitioned effectively to distribute query load
C.Convert all vector embeddings to base64 string format
D.Disable all non-vector indexing policies on the container
E.Include filter conditions in your query to narrow the search scope before vector distance ranking
AnswersA, B, E

diskANN provides fast approximate nearest neighbor search compared to scanning flat indexes.

Why this answer

Improving vector search performance in Cosmos DB involves selecting efficient index types like diskANN, tuning query parameters, and ensuring proper logical partitioning.

27
Multi-Selectmedium

You are configuring an Azure Service Bus Topic and Subscriptions for an AI text classification system. Which THREE filter types are supported on Service Bus subscriptions for routing messages? Each correct answer represents a valid filter type.

Select 3 answers
A.Boolean Filters (True/False filters)
B.Regex Pattern Matching Filters
C.Machine Learning Inference Filters
D.SQL Filters
E.Correlation Filters
AnswersA, D, E

Boolean filters either select all messages or none.

Why this answer

Azure Service Bus supports Correlation Filters, SQL Filters, and Boolean Filters (TrueFilter/FalseFilter) on subscriptions.

28
Multi-Selecthard

You are implementing a robust data layer architecture for an enterprise generative AI application. Which THREE factors should you evaluate when deciding between Azure AI Search and Azure Cosmos DB for vector search? (Choose three)

Select 3 answers
A.Need for automated multi-region replication with single-digit millisecond latency reads
B.Need for advanced full-text search, BM25 ranking, and semantic re-ranking
C.Requirement to run Hadoop MapReduce jobs directly over the vector indexes
D.Requirement to store vector embeddings as relational SQL tables with foreign key constraints
E.Requirement for low-latency transactional CRUD operations alongside vector search
AnswersA, B, E

Cosmos DB provides turnkey multi-region replication with tunable consistency levels.

Why this answer

When choosing between Azure AI Search and Cosmos DB for vector search, factors such as full-text search capabilities, transactional operational database needs, and scaling requirements are critical.

29
MCQeasy

Which Azure feature allows you to set up a private, internal-only container registry?

A.Azure Private Link.
B.Azure Bastion.
C.Public access with firewall rules.
D.VPN Gateway.
AnswerA

Private Link secures access to the registry within your private network.

Why this answer

Private Link allows you to access ACR over a private IP address from your VNET.

30
MCQhard

You are troubleshooting intermittent network timeout errors between microservices in an AKS cluster running an AI pipeline. You suspect that network policies are blocking required inter-pod communication. Which CNI plugin must be configured in AKS to enforce these network policies?

A.Azure CNI with Azure Network Policies or Calico enabled
B.Kubernetes standard kube-proxy in IPVS mode only
C.Azure Virtual Network NAT Gateway
D.Kubenet basic networking without network policies
AnswerA

Azure CNI supports network policies (either Azure's native implementation or Calico) to restrict pod traffic.

Why this answer

Azure CNI with Azure Network Policies or Calico network policies must be enabled in AKS to enforce namespace and pod-level traffic rules.

31
MCQmedium

You are configuring vector search in Azure Cosmos DB for NoSQL. You want to ensure that vectors are indexed using the DiskANN algorithm for high recall and fast search performance. Which index type should you specify in the vector embedding policy?

A.faissHNSW
B.diskANN
C.hnsw
D.ivfFlat
AnswerB

diskANN is supported in Azure Cosmos DB for efficient vector indexing and search.

Why this answer

Azure Cosmos DB for NoSQL supports DiskANN as a high-performance vector indexing type alongside quantized flat indexes.

32
Multi-Selecthard

You are designing an event-driven architecture that needs to integrate multiple Azure services. Which THREE statements accurately describe the ideal use cases for Azure Event Grid, Azure Service Bus, and Azure Event Hubs respectively? (Choose three)

Select 3 answers
A.Azure Event Hubs is designed for high-throughput big data streaming and telemetry ingestion pipelines.
B.Azure Event Grid is designed for high-speed Kafka protocol big data telemetry streaming.
C.Azure Event Grid is optimized for reactive event distribution and pub/sub routing across Azure services.
D.Azure Service Bus is optimized for stateless event notifications with sub-millisecond webhook delivery.
E.Azure Service Bus is designed for enterprise transactional messaging, queues, topics, and strict ordering.
AnswersA, C, E

Event Hubs ingests millions of events per second for analytics and AI pipelines.

Why this answer

Event Grid is for reactive event notification (pub/sub), Service Bus is for transactional enterprise messaging (queues/topics), and Event Hubs is for big data stream ingestion.

33
Multi-Selectmedium

You are troubleshooting an AI inference container deployed in Azure Container Apps that is failing health probes. Which TWO diagnostic tools or logs can you examine in the Azure portal to investigate the failure?

Select 2 answers
A.Log stream in the Azure portal for the container app replica
B.Azure Bastion connection to the container host VM
C.Container Apps console for interactive terminal access
D.AKS control plane audit logs
E.Azure Storage Account blob container metrics
AnswersA, C

Log stream provides real-time stdout and stderr output from the container.

Why this answer

Azure Container Apps provides built-in log streaming, console access, and diagnostic metrics to troubleshoot container startup and health probe failures.

34
MCQmedium

Your team is building a real-time speech transcription pipeline using Azure Event Hubs. Due to intermittent network drops, client applications need to be able to send messages with a scheduled delivery time so they are processed later. Which Azure messaging service supports scheduled message delivery natively?

A.Azure Service Bus
B.Azure Event Grid
C.Azure Storage Queues
D.Azure Event Hubs
AnswerA

Service Bus supports scheduling messages for delayed delivery out-of-the-box.

Why this answer

Azure Service Bus natively supports scheduling messages to be delivered at a specific future time using `ScheduleMessageAsync`.

35
MCQeasy

Your enterprise requires that all container images deployed to Azure Kubernetes Service (AKS) must originate from approved corporate Azure Container Registries (ACRs). How can you enforce this restriction cluster-wide?

A.Configure standard Kubernetes Network Policies in the kube-system namespace
B.Configure Azure Policy for Kubernetes with the built-in initiative to restrict container registries
C.Set up ACR webhook notifications to trigger Azure Functions that delete unauthorized pods
D.Modify the kubelet configuration file on every cluster node manually
AnswerB

Azure Policy for Kubernetes enforces admission control rules that block deployment of images from unapproved registries.

Why this answer

Azure Policy for Kubernetes uses Gatekeeper v3 to audit or enforce cluster behaviors, such as restricting image registries.

36
MCQmedium

You are using Application Insights to monitor a Retrieval-Augmented Generation (RAG) application. You need to log custom dimensions such as prompt token counts and user IDs alongside standard telemetry. Which class should you use in your C# application?

A.Configure the AzureMonitorLogExporter in the standard logging pipeline.
B.Use the TelemetryClient class and its TrackEvent method with a dictionary of custom dimensions.
C.Use the DiagnosticSource class to emit unstructured string logs to Console.
D.Use the AzureKeyVaultClient to store transient custom properties.
AnswerB

TelemetryClient.TrackEvent allows passing custom key-value pairs for rich analysis in Kusto queries.

Why this answer

The TelemetryClient class allows developers to track custom events, metrics, and traces with custom properties (dimensions).

37
MCQmedium

You are troubleshooting intermittent HTTP 429 (Too Many Requests) errors from an Azure OpenAI deployment. Which metric in Azure Monitor should you inspect to confirm whether token rate limits are being exceeded?

A.System Assigned Managed Identity Success Rate
B.Virtual Network Gateway Packet Drops
C.Data Ingestion Volume (GB)
D.Normalized Token Utilization
AnswerD

Normalized Token Utilization tracks rate limit usage and shows when deployment token caps are reached, resulting in 429 errors.

Why this answer

Normalized Token Utilization measures the percentage of token limits consumed against your provisioned or pay-as-you-go capacity.

38
MCQhard

You are managing an Azure Cosmos DB for NoSQL database containing vector embeddings. You need to perform a migration of embeddings from one container to another without taking the application offline. Which Azure feature should you use?

A.Azure Cosmos DB Change Feed processor
B.Azure Data Factory tumbling window triggers over Blob Storage
C.SQL Server Integration Services (SSIS) file import
D.Taking a manual offline portal backup and restoring to a new account
AnswerA

The change feed allows reading inserts and updates to migrate data live without downtime.

Why this answer

The Azure Cosmos DB change feed streams changes to containers in real time, enabling zero-downtime data migration and synchronization.

39
MCQeasy

You are using Azure Container Apps. You need to deploy a new version of your AI model without downtime. Which deployment strategy should you configure?

A.Traffic splitting between revisions.
B.Overwrite the current revision.
C.Rolling update.
D.Scale to zero and redeploy.
AnswerA

Traffic splitting allows you to shift traffic gradually to the new version.

Why this answer

Blue-Green or Canary deployments in ACA allow traffic shifting between revisions without downtime.

40
MCQeasy

You need to ensure that your vector data in Azure AI Search is protected at rest. Which setting should you verify?

A.Configure Customer-Managed Keys (CMK) for the search service.
B.Enable TLS 1.3 on the search service.
C.Disable public network access.
D.Enable Always Encrypted on the Cosmos DB container.
AnswerA

CMKs are the standard method for ensuring encryption at rest for Azure AI Search.

Why this answer

Azure AI Search uses Azure Storage for data, and encryption at rest is managed via Customer-Managed Keys (CMK) configured at the search service level.

41
MCQhard

You are designing a disaster recovery strategy for an Azure Event Hubs namespace. You configure Geo-Disaster Recovery pairing between a primary region (East US) and a secondary region (West US). During a disaster drill, you trigger a failover. What happens to the DNS alias pointing to the Event Hubs namespace?

A.The primary namespace automatically becomes the replica of the secondary namespace without breaking the pair.
B.The alias is automatically updated to point to the secondary namespace, enabling client reconnection without changing connection strings.
C.The alias enters a Read-Only state for 24 hours while DNS propagation finishes globally.
D.The alias is permanently deleted and clients must be hardcoded with the secondary namespace connection string.
AnswerB

The Geo-DR alias abstracts the underlying namespace endpoints, ensuring seamless failover redirection.

Why this answer

When Geo-DR failover is invoked, the DNS alias is repointed from the primary namespace to the secondary namespace automatically, ensuring client connection strings referencing the alias continue working.

42
MCQmedium

You have an Azure Container Registry and an Azure Kubernetes Service cluster in different Azure regions. You want to ensure that AKS nodes pull container images from a local regional endpoint to minimize latency and cross-region data transfer fees. What feature should you configure on ACR?

A.Azure ExpressRoute global reach
B.ACR Import command scheduled daily
C.ACR Geo-Replication
D.Azure Traffic Manager DNS routing
AnswerC

Geo-replication replicates container registries across multiple regions for low-latency, local pulls.

Why this answer

ACR Geo-replication allows a single registry to be replicated across multiple Azure regions, providing local container image pulls.

43
MCQmedium

You are writing a Python application that sends telemetry data to an Azure Event Hub. To ensure high performance and non-blocking batch sends, which method from the `azure-eventhub` SDK should you use?

A.event_grid_publisher.upload_blob()
B.client.publish_to_service_bus_queue()
C.producer.create_batch() followed by producer.send_batch()
D.producer.send_single_event_blocking() for every record
AnswerC

create_batch ensures events fit within the size limit, and send_batch transmits the batch efficiently.

Why this answer

The `EventHubProducerClient` provides `create_batch()` to construct a batch object, and `send_batch()` to send it asynchronously or synchronously.

44
MCQmedium

You need to secure access to an Azure AI Search service so that a Python web app running on Azure App Service can query indices without embedding API keys in configuration files. What is the most secure authentication mechanism to configure?

A.Enable a system-assigned managed identity on App Service and assign the Search Index Data Reader role on Azure AI Search
B.Configure an IP firewall on Azure AI Search to allow only the static outbound IP of App Service
C.Store the primary admin API key in Azure App Service configuration environment variables
D.Use shared access signatures (SAS) tokens generated by a client script
AnswerA

Correct. Managed identities combined with Azure RBAC eliminate stored credentials and adhere to the principle of least privilege.

Why this answer

Azure RBAC using managed identities allows the App Service to authenticate to Azure AI Search securely via Azure Active Directory tokens without using admin API keys.

45
Multi-Selectmedium

When configuring vector search in Azure AI Search, which TWO components are required to successfully define and execute a vector search query? (Choose two)

Select 2 answers
A.A Cosmos DB container partition key
B.An Azure SQL Server database connection string
C.A vector query payload specifying the query vector and target field
D.A vector field defined in the index schema
E.An HDInsight Hadoop cluster endpoint
AnswersC, D

The search request must supply the vector query embedding and target field name.

Why this answer

Executing a vector search query requires a vector-typed field in the index and a query request specifying the vector query vector values and target field.

46
Multi-Selectmedium

When designing an Azure AI Search index schema, which TWO properties must be defined for every field in the index? (Choose two)

Select 2 answers
A.analyzerName
B.name
C.scoringProfile
D.vectorDimensions
E.type
AnswersB, E

The field name is mandatory.

Why this answer

Every field in an Azure AI Search index definition must have a name and a type (Edm data type).

47
MCQhard

You are designing a secure enterprise event-driven architecture. Events published to an Azure Event Grid Domain must be partitioned based on a tenant ID. How should publishers send events to the Event Grid Domain to ensure proper routing to domain topics?

A.Send all events to an Azure Service Bus Topic, then configure a logic app to forward them to Event Grid.
B.Publish events directly to the Event Grid Domain endpoint and specify the subject or topic name within the event structure.
C.Use Azure Event Hubs capture keys to route events to tenant-specific storage containers.
D.Create separate Event Grid custom topics for each tenant and configure an Azure API Management gateway to multiplex the requests.
AnswerB

Event Grid Domains allow single-endpoint publishing where the event specifies the target domain topic.

Why this answer

When publishing to an Event Grid Domain, publishers include the domain topic name in the event metadata (or path for custom schemas), which Event Grid uses to route the event to the correct topic.

48
MCQmedium

Your organization uses Azure Service Bus Queues. A downstream processing service is undergoing maintenance and will be offline for 4 hours. You want to temporarily pause message processing without losing messages or triggering dead-letter timeouts. What is the recommended approach?

A.Set the queue status to 'Disabled' via the Azure Portal or SDK.
B.Export all messages to Azure Blob Storage and purge the queue.
C.Stop the consumer worker application instances; Service Bus will safely retain the messages in the queue until consumers resume.
D.Delete the Service Bus queue and recreate it when maintenance finishes.
AnswerA, C

Wait, Service Bus queues have entity status settings (Active, Disabled, SendDisabled, ReceiveDisabled). Setting EntityStatus to ReceiveDisabled pauses consumption while allowing producers to keep sending.

Why this answer

If workers are simply stopped, messages remain safely in the queue locked or unlocked depending on whether receivers are polling. Stopping the consumer application effectively pauses processing while the broker securely stores the messages.

49
MCQeasy

When designing an Azure AI Search solution, you need to store high-dimensional embeddings. Which field type must be used to store these vector representations correctly?

A.Edm.Double
B.Collection(Edm.Single)
C.Edm.String
D.Collection(Edm.Int32)
AnswerB

This is the required data type for storing vector embeddings in Azure AI Search indexes.

Why this answer

In Azure AI Search, vector embeddings must be defined using the 'Collection(Edm.Single)' field type.

50
MCQeasy

An AI pipeline uses Azure Service Bus Queues. You want to inspect the number of messages currently residing in a queue waiting to be processed without actually receiving or locking them. Which Azure Portal section or metric should you check?

A.The Azure Storage Account queued message monitoring graphs.
B.The Event Grid subscription delivery status log.
C.The Event Hubs capture storage container file list.
D.The Service Bus Queue 'Overview' blade displaying Active Message Count metrics.
AnswerD

The queue overview displays active, dead-letter, and scheduled message counts in real-time.

Why this answer

You can inspect active message counts, dead-letter message counts, and scheduled message counts directly on the Service Bus Queue overview blade in the Azure Portal.

51
MCQhard

You need to configure network security for an Azure Container Apps environment that hosts an internal AI scoring API. The API must only be reachable from a specific Azure Virtual Network (VNet) and blocked from public internet access. How should you configure the environment?

A.Attach a Private Endpoint to the Azure Container Registry hosting the app
B.Enable IP security restrictions on the default public ingress
C.Deploy the Container Apps environment with an internal Virtual Network integration and internal load balancer
D.Configure an Azure Front Door instance with WAF rules in front of the public endpoint
AnswerC

An internal-only Container Apps environment assigns a private virtual network IP for ingress, blocking public access.

Why this answer

Deploying Azure Container Apps with an internal Load Balancer (ILB) restricts ingress to a private IP within an integrated Virtual Network.

52
Multi-Selectmedium

You are planning a data layer architecture for an AI application on Azure that requires both relational transactional storage and vector search capabilities. Which TWO Azure database services natively support vector data types and similarity search functions? Choose two.

Select 2 answers
A.Azure SQL Database
B.Azure Queue Storage
C.Azure Cosmos DB for NoSQL
D.Azure Table Storage
E.Azure Cache for Redis (Basic tier without modules)
AnswersA, C

Azure SQL Database supports native VECTOR data types and vector distance functions.

Why this answer

Azure SQL Database and Azure Cosmos DB (both NoSQL and MongoDB vCore APIs) natively support vector data storage and vector search functions.

53
MCQeasy

You need to deploy a containerized AI model to Azure Container Apps and configure it to scale based on Azure Service Bus queue messages. Which scaler should you specify?

A.azure-blob
B.azure-service-bus
C.memory
D.cron
AnswerB

The azure-service-bus scale rule monitors queue length to scale container replicas.

Why this answer

Azure Container Apps supports KEDA scalers natively, including the azure-service-bus scaler.

54
Multi-Selecthard

You are designing a secure data layer architecture for financial documents using Azure Cosmos DB for NoSQL and Azure AI Search. Which THREE compliance and security controls should you implement? (Choose three)

Select 3 answers
A.Store all database backup files in unencrypted public blob storage containers
B.Enable diagnostic logging and audit log streaming to Azure Monitor / Log Analytics
C.Disable authentication keys and allow anonymous public access for easy integration
D.Configure Customer-Managed Keys (CMK) using Azure Key Vault for data at rest encryption
E.Restrict network access using Virtual Network service endpoints and private link
AnswersB, D, E

Audit logging tracks access and administrative activities for compliance.

Why this answer

Enterprise compliance and security controls include configuring customer-managed keys, enabling diagnostic logging for auditing, and enforcing private endpoint networking.

55
MCQhard

You are troubleshooting an Azure Event Grid subscription where events published to a custom topic are failing to reach an Azure Storage Queue destination. Dead-lettering is enabled on the subscription, and failed events are appearing in the storage account container. Upon inspecting the dead-lettered events, you notice the error indicates an unauthorized access response. What is the most likely root cause and remediation?

A.The Event Grid system-assigned managed identity lacks the Storage Queue Data Contributor role on the target storage account.
B.The event schema version configured on the subscription does not match the storage queue message schema specification.
C.The Azure Storage Queue firewall is blocking Event Grid IPs, so you must add the EventGrid service tag to the storage account firewall rules.
D.The Azure Storage Queue message TTL has expired before Event Grid could establish a TCP handshake.
AnswerA

Event Grid must be granted proper RBAC permissions (such as Storage Queue Data Contributor) via its managed identity to push messages to a storage queue.

Why this answer

Event Grid requires explicit Managed Identity or SAS token permissions configured on the Event Grid subscription to deliver events to secured endpoints like Storage Queues.

56
MCQeasy

Which Azure AI Search metric or tool helps administrators monitor query volume, latency, and throttling rates across search units?

A.Azure Monitor metrics and diagnostic logs
B.App Service stream logs
C.Azure Storage Explorer
D.Cosmos DB Data Explorer
AnswerA

Azure Monitor tracks search service latency, query rates, and throttling metrics.

Why this answer

Azure Monitor and Log Analytics provide comprehensive telemetry, metrics, and logs for monitoring Azure AI Search performance.

57
Multi-Selectmedium

When configuring vector search in Azure Cosmos DB for NoSQL, which TWO data types are valid for storing vector embeddings within the vector embedding policy? (Choose two)

Select 2 answers
A.boolean
B.float32
C.guid
D.string
E.float16
AnswersB, E

float32 is the standard 32-bit floating-point data type supported for vectors.

Why this answer

Cosmos DB vector embedding policy supports float32 and float16 (or int8 depending on quantization) for vector properties.

58
MCQeasy

An application publishes custom events to an Azure Event Grid topic. You want to inspect the dead-lettered events that failed delivery after the maximum retry period. Where must you configure the dead-letter destination?

A.Azure SQL Database table
B.Local App Service temporary file system
C.Azure Blob Storage container
D.Azure Service Bus Dead-Letter Queue
AnswerC

Event Grid dead-lettering writes undeliverable events directly to an Azure Storage blob container.

Why this answer

Event Grid dead-lettering requires an Azure Storage account container as the destination where failed event blobs are written.

59
MCQeasy

You need to check the health status of Azure AI services globally and see if any regional outages are currently impacting your deployed models. Which Azure tool should you consult?

A.Azure Cost Management
B.Azure Policy
C.Azure Advisor
D.Azure Service Health
AnswerD

Correct. Service Health tracks cloud service incidents and maintenance advisories.

Why this answer

Azure Service Health provides a personalized view of Azure service health, planned maintenance, and regional outages affecting your resources.

60
Multi-Selecthard

You are optimizing an enterprise AI architecture for cost and performance. Which THREE of the following strategies effectively reduce Azure AI and infrastructure spending without sacrificing reliability? (Choose three)

Select 3 answers
A.Delete all Application Insights workspaces and stop collecting any monitoring telemetry.
B.Purchase Azure reservations or provisioned throughput commitments for steady-state workloads.
C.Right-size virtual machine and GPU SKUs based on historical Azure Monitor utilization metrics.
D.Configure Azure Machine Learning compute clusters to scale down to zero nodes when idle.
E.Run all development and production workloads on the highest tier enterprise GPUs 24/7 regardless of usage.
AnswersB, C, D

Correct. Reservations offer significant discounts for predictable, ongoing workloads.

Why this answer

Autoscaling compute clusters down to zero when idle, leveraging reserved instances/provisioned throughput commitments for predictable workloads, and sizing compute appropriately reduce costs.

61
MCQmedium

Your Azure Machine Learning workspace is secured behind a virtual network with private endpoints. Data scientists need to access the workspace notebooks and compute instances securely from their on-premises corporate network without exposing management ports to the public internet. What hybrid networking feature should you establish?

A.Public IP addresses assigned to all developer workstations with NSG allow rules
B.Azure ExpressRoute or Site-to-Site VPN with Azure Private Link to workspace private endpoints
C.Turning off all network security groups and opening all ports on the Azure firewall
D.Azure Bastion deployed on the on-premises physical router
AnswerB

Correct. Hybrid connectivity via ExpressRoute/VPN paired with Private Link enables secure on-premises access to private Azure resources.

Why this answer

Azure ExpressRoute or a site-to-site VPN combined with Azure Private Link allows secure, private connectivity from an on-premises network to Azure private endpoints.

62
MCQmedium

You are configuring an Azure AI Search index where text fields are automatically analyzed using language-specific rules. Which property on an Edm.String field specifies the language analyzer (e.g., 'en.microsoft')?

A.tokenizerType
B.languageMapping
C.vectorProfile
D.analyzer
AnswerD

The analyzer property specifies the text analyzer for tokenization.

Why this answer

The analyzer property on an Edm.String field specifies the language-specific analyzer used for full-text tokenization.

63
MCQhard

You are configuring disaster recovery for an Azure Event Hubs namespace. You have established a geo-recovery pairing between a primary and secondary namespace. A failover has been executed. How should you re-establish replication back to the original primary namespace once it recovers?

A.Establish a new geo-recovery pairing or reverse the roles so the old primary becomes the secondary namespace.
B.Run the az eventhubs namespace sync command from the Azure CLI.
C.Delete both namespaces and recreate them using an Azure Resource Manager template.
D.Update the consumer group offsets manually on both namespaces.
AnswerA

Reversing the partnership or setting up a new pairing re-establishes asynchronous replication in the reverse direction.

Why this answer

After a failover, you must break the pairing or re-establish a new alias pairing pointing the old primary as the new secondary (reverse role) to sync data back.

64
MCQmedium

You are managing an Azure Kubernetes Service (AKS) cluster that runs high-throughput AI model training jobs using NVIDIA Tensor Core GPUs. Pods frequently fail to schedule because of insufficient GPU memory across existing nodes. You need to ensure the cluster automatically provisions new GPU-enabled worker nodes when resource demands increase. What should you configure?

A.Configure KEDA (Kubernetes Event-driven Autoscaling) with a Prometheus scaler.
B.Configure the Horizontal Pod Autoscaler (HPA) with custom GPU metrics.
C.Enable the Kubernetes Cluster Autoscaler on a node pool containing GPU virtual machine sizes.
D.Deploy the Azure Container Storage operator with GPU caching enabled.
AnswerC

The Cluster Autoscaler monitors for unschedulable pods and adds instances to the specified GPU node pool.

Why this answer

To automatically add GPU-backed nodes when workloads are pending due to resource constraints, you must configure the Kubernetes Cluster Autoscaler with a dedicated node pool that uses GPU virtual machine sizes (e.g., Standard_NC6s_v3).

65
Multi-Selecteasy

Which TWO roles are commonly assigned when granting a managed identity access to consume Azure OpenAI services via Azure RBAC?

Select 2 answers
A.Key Vault Secrets Officer
B.Virtual Machine Contributor
C.Cognitive Services OpenAI User
D.Storage Blob Data Reader
E.Cognitive Services User
AnswersC, E

This role permits invoking Azure OpenAI models.

Why this answer

Cognitive Services User and Cognitive Services OpenAI User are standard built-in roles for authenticating data plane operations on Azure OpenAI.

66
MCQhard

You are configuring vector search on an Azure AI Search index using a custom vectorizer that points to an external embedding endpoint. Which authentication method is recommended and natively supported for securely connecting Azure AI Search to the Azure OpenAI endpoint?

A.Managed Identity (system-assigned or user-assigned)
B.OAuth2 client credentials grant with Azure AD tenant federation
C.Shared Access Signature (SAS) tokens
D.Basic authentication with API keys stored in index metadata
AnswerA

Managed Identity is the secure, recommended authentication mechanism for connecting Azure AI Search to Azure OpenAI.

Why this answer

Azure AI Search supports managed identities (both system-assigned and user-assigned) to securely authenticate against Azure OpenAI endpoints without storing API keys.

67
Multi-Selectmedium

You are troubleshooting an AI application container in an AKS cluster that cannot resolve external domain names (e.g., huggingface.co). Which TWO Kubernetes components should you investigate?

Select 2 answers
A.kube-dns service endpoint mapping
B.Horizontal Pod Autoscaler configuration
C.Persistent Volume Claim binding state
D.Ingress controller SSL certificate expiration
E.CoreDNS deployment and pod health in the kube-system namespace
AnswersA, E

The kube-dns service routes DNS queries to CoreDNS pods.

Why this answer

DNS resolution issues in AKS typically point to CoreDNS pod status, kube-dns service configuration, or node network routing.

68
Multi-Selectmedium

You are troubleshooting event delivery failures in Azure Event Grid. Which TWO mechanisms can help you analyze or recover undeliverable events? (Choose two)

Select 2 answers
A.Configuring a Dead-Letter destination pointing to an Azure Blob Storage container
B.Enabling Service Bus message session locks on the event subscription
C.Viewing delivery metrics and logs via Azure Monitor diagnostic settings
D.Running the az servicebus queue purge command
E.Using Event Hubs Capture to replay webhook HTTP headers
AnswersA, C

Dead-lettering saves unconsumed or failed events to storage for analysis.

Why this answer

Event Grid supports configuring a dead-letter destination (Blob Storage) and viewing delivery metrics/logs via Azure Monitor diagnostic settings.

69
MCQhard

You are designing a high-scale event ingestion pipeline using Azure Event Hubs in a secure enterprise environment. Public internet access must be disabled entirely. Producers and consumers reside in a peered Virtual Network (VNet). How should you configure network connectivity to the Event Hubs namespace?

A.Enable Service Bus Relay hybrid connections across the VNet gateway.
B.Configure Private Endpoints for the Event Hubs namespace and disable public network access.
C.Deploy an Azure Bastion host in the subnet connected to the Event Hubs SAS key manager.
D.Configure IP firewall rules to allow the default gateway IP of the VNet.
AnswerB

Private Endpoints provide private IP addresses from your VNet directly to the Event Hubs resource, securing traffic.

Why this answer

To secure Event Hubs without public internet access, you must configure private endpoints using Azure Private Link, placing network interfaces inside the VNet and disabling public network access on the namespace.

70
Multi-Selecthard

You are designing an enterprise messaging architecture using Azure Service Bus. Which THREE features are available exclusively in the Premium tier and not in the Standard tier? (Choose three)

Select 3 answers
A.Virtual Network (VNet) service endpoints and Private Link integration
B.Dedicated compute and memory resources (Isolated environment)
C.Duplicate detection message history windows
D.Support for messages up to 100 MB in size (with large message support)
E.Publishing messages to Topics and Subscriptions
AnswersA, B, D

VNet integration and private endpoints are Premium-tier capabilities.

Why this answer

Azure Service Bus Premium tier provides dedicated resources (CPU/Memory), VNet integration / Private Endpoints, and larger message sizes (up to 100 MB). Standard tier shares multitenant infrastructure.

71
Multi-Selecteasy

Which TWO Azure services can store and serve private Docker container images for AI workloads?

Select 2 answers
A.Azure Cognitive Services
B.Azure Bastion
C.Azure Container Instances (pulling from ACR)
D.Azure Container Registry
E.Azure Logic Apps
AnswersC, D

ACI pulls and runs container images stored in ACR.

Why this answer

Azure Container Registry and Azure Container Instances (via image pull secrets) interact with container images, while ACR is the dedicated private registry.

72
MCQeasy

Your organization uses Azure Event Grid namespaces for MQTT client messaging in an industrial IoT scenario. Which authentication method should you configure for IoT devices connecting directly to the Event Grid namespace MQTT broker?

A.SQL Database connection strings
B.Anonymous access with IP restriction headers
C.OAuth 2.0 client credentials grant via Service Bus endpoints
D.X.509 client certificates
AnswerD

Event Grid MQTT brokers natively support secure device authentication using X.509 certificates.

Why this answer

Event Grid MQTT broker supports client authentication using X.509 client certificates with certificate thumbprint matching or CA certificate chains.

73
MCQeasy

Your organization requires that all messages sent to an Azure Service Bus Premium namespace are encrypted using customer-managed keys (CMK) stored in Azure Key Vault. Where must you configure this encryption setting?

A.At the Service Bus Namespace level
B.Inside the Event Grid subscription endpoint URI
C.At the individual Queue or Topic level
D.Within the Azure Function consumer application configuration
AnswerA

Encryption with CMK applies to the entire Service Bus Premium namespace.

Why this answer

Customer-managed keys for Azure Service Bus are configured at the Namespace level using Azure Key Vault integration.

74
MCQeasy

You are designing an event-driven AI application that requires routing custom events from an Azure resource to multiple downstream serverless webhooks. Which Azure messaging service should you use to publish and route these events reliably?

A.Azure Service Bus
B.Azure Event Hubs
C.Azure Storage Queues
D.Azure Event Grid
AnswerD

Azure Event Grid natively supports pub/sub event routing for discrete events to webhook endpoints.

Why this answer

Azure Event Grid is designed for event-driven architectures, allowing pub/sub routing of discrete events from Azure resources or custom applications to multiple endpoints like webhooks.

75
MCQmedium

You are managing an AKS cluster running resource-intensive AI training jobs. You want to ensure that nodes automatically scale up and down based on pending pod resource requests. Which component should you enable and configure?

A.KEDA (Kubernetes Event-driven Autoscaling)
B.Azure Load Balancer
C.Horizontal Pod Autoscaler
D.Kubernetes Cluster Autoscaler
AnswerD

Cluster Autoscaler automatically adjusts the number of nodes in your AKS cluster based on resource demands.

Why this answer

The Kubernetes Cluster Autoscaler monitors for unschedulable pods and requests additional nodes from Azure Virtual Machine Scale Sets.

Page 1 of 7

Page 2

All pages