About the Exam

Microsoft exam for the Azure AI Cloud Developer Associate certification. It covers designing, developing, deploying and monitoring AI-powered cloud solutions on Azure, including serverless inference endpoints, asynchronous AI processing workflows, semantic retrieval with vector databases, and the monitoring of AI solution health and performance. Passing demonstrates the ability to build and operate AI applications on Azure at scale.

Exam Topics

  • Develop containerized solutions on Azure20–25%
  • Develop AI solutions by using Azure data management services25–30%
  • Connect to and consume Azure services20–25%
  • Secure, monitor, troubleshoot Azure solutions20–25%

How to Use This Practice Exam

  1. Browse — Read each question, select your answer, and reveal the explanation.
  2. Exam Mode — Simulate real exam conditions with a timed session and score report.
  3. Learn Mode — Spaced repetition schedules questions you struggle with for long-term retention.

Download the Full Exam PDF

Get every question and answer in a clean, printable PDF built for offline study. Purchase once, keep permanent access, and re-download the latest version anytime.

Last updated July 20, 2026 at 6:40 PM

Topic filter
Retired questions
Question sort

QuestionQ1

Develop containerized solutions on Azure

You manage several versions of a container image in Azure Container Registry.

The production deployment must consistently run the identical image build, even if tags change later.

You need to guarantee predictable, immutable image selection during deployment. What should you do?

  • A Tag the image as production and deploy it by using the production tag.
  • B Schedule nightly rebuilds of the image.
  • C Configure deployment to use the latest tag.
  • D Identify the image by using its SHA digest.
Explanation

A container image manifest digest is a unique SHA-256 content identifier for that exact image build. Deploying by digest pins the deployment to that image even if a tag such as production or latest is later moved to another build. About Registries, Repositories, Images, and Artifacts – Azure Container Registry

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ2

Secure, monitor, troubleshoot Azure solutions

A container in an AKS cluster is restarting repeatedly.

Pod events indicate probe failures, while node-level CPU and memory metrics are normal.

You need to identify the cause of the recurring restarts. What should you do first?

  • A Scale the deployment to more replicas.
  • B Decrease the initialDelaySeconds for the container liveness probe.
  • C Drain and reboot the node hosting the pod.
  • D Inspect the pod events and container logs.
Explanation

Liveness or readiness probe failures can cause recurring container restarts even when node resources are healthy. Pod events provide the probe failure details, and container logs—especially logs from the previous container instance—expose application startup, endpoint, and termination errors needed to identify the root cause.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ3

Develop containerized solutions on Azure

You develop a message-processing service that is deployed to Azure Container Apps. The service reads messages from an Azure Service Bus queue.

The solution must minimize costs by ensuring that no compute resources are consumed when the queue is empty.

You need to configure scaling for the service.

Which two actions should you take? Each correct answer presents part of the solution.

> NOTE: Each correct selection is worth one point.

Choose two
  • A Increase the scaling rule to allow for the maximum running replica count.
  • B Configure the scaling rule to allow for the termination of all active replicas.
  • C Configure a Kubernetes Event-driven Autoscaler rule that monitors queue length.
  • D Enable HTTP ingress concurrency scaling.
Explanation

Azure Container Apps uses KEDA-based custom scaling rules to scale on Azure Service Bus queue messages. Configuring a KEDA rule that monitors queue length starts replicas when messages are pending, and allowing all replicas to terminate permits the app to scale to zero when the queue is empty, eliminating idle compute consumption.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ4

Develop containerized solutions on Azure

You configure ACR Tasks to automate container image builds.

Container images must be rebuilt when:

  • Application updates occur.
  • Base image updates occur, such as when the underlying OS image is updated.
  • Regular scheduled rebuilds are needed.

You need to configure ACR Tasks to support automated image rebuilds.

Which three triggers should you configure? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

Choose three
  • A Timer trigger
  • B Source code commit trigger
  • C Registry event trigger
  • D Base image update trigger
  • E Webhook notification trigger
Explanation

Azure Container Registry Tasks can automatically run builds on source-code commits, base-image updates, and timer schedules. These triggers respectively handle application changes, updated parent images such as OS images, and recurring rebuilds.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!

QuestionQ5

Develop containerized solutions on Azure

You are developing several microservices to run on Azure Container Apps.

The microservices must permit HTTPS access by using a custom domain.

You need to configure the custom domain in Azure Container Apps.

In which order should you perform the actions?

Drag & Drop
Add the custom domain name.
Bind the certificate.
Enable ingress.
Validate the custom domain name.
Add DNS records to the domain provider.
Explanation

Azure Container Apps requires ingress for a custom-domain endpoint. Adding the domain provides the values used to create the required DNS ownership and routing records. Azure can validate the domain only after those records resolve, and a TLS certificate is bound after validation succeeds to enable HTTPS.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!
Know a question that should be here? Contribute to this exam
Back home