nerdexam
Microsoft

AZ-400 · Question #250

You have a containerized solution that runs in Azure Container Instances. The solution contains a frontend container named App1 and a backend container named DB1. DB1 loads a large amount of data duri

The correct answer is C. a readiness probe. For containerized applications that serve traffic, you might want to verify that your container is ready to handle incoming requests. Azure Container Instances supports readiness probes to include configurations so that your container can't be accessed under certain conditions. I

Submitted by lucia.co· Mar 6, 2026Design and implement build and release pipelines

Question

You have a containerized solution that runs in Azure Container Instances. The solution contains a frontend container named App1 and a backend container named DB1. DB1 loads a large amount of data during startup. You need to verify that DB1 can handle incoming requests before users can submit requests to App1. What should you configure?

Options

  • Aa liveness probe
  • Ba performance log
  • Ca readiness probe
  • Dan Azure Load Balancer health probe

How the community answered

(39 responses)
  • A
    3% (1)
  • B
    5% (2)
  • C
    90% (35)
  • D
    3% (1)

Explanation

For containerized applications that serve traffic, you might want to verify that your container is ready to handle incoming requests. Azure Container Instances supports readiness probes to include configurations so that your container can't be accessed under certain conditions. Incorrect Answers: A: Containerized applications may run for extended periods of time, resulting in broken states that may need to be repaired by restarting the container. Azure Container Instances supports liveness probes so that you can configure your containers within your container group to restart if critical functionality is not working. https://docs.microsoft.com/en-us/azure/container-instances/container-instances-readiness-probe

Community Discussion

No community discussion yet for this question.

Full AZ-400 Practice