nerdexam
Microsoft

AZ-204 · Question #611

Drag and Drop Question You create an Azure subscription. You then create an Azure resource group. You plan to create a containerized task that will run as an Azure Container App in regular intervals.

The correct answer is azcontainerapp registry set; azcontainerapp env create; azcontainerapp job create. To create a scheduled Azure Container App job, you must first configure the container registry credentials using 'az containerapp registry set' so Azure can pull the container image, then create the Container Apps Environment using 'az containerapp env create' which provides the

Submitted by yousef_jo· Mar 30, 2026Deploy and manage Azure compute resources - specifically containerized workloads using Azure Container Apps and scheduled/event-driven Container App Jobs (AZ-204 / AZ-104)

Question

Drag and Drop Question You create an Azure subscription. You then create an Azure resource group. You plan to create a containerized task that will run as an Azure Container App in regular intervals. You need to automate the process of creating the task in the resource group by using Azure CLI commands. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Answer:

Exhibit

AZ-204 question #611 exhibit

Answer Area

Drag items

azcontainerapp job startazcontainerapp env createazcontainerapp job createazcontainerapp connected-env createazcontainerapp registry setaz provider register

Correct arrangement

  • azcontainerapp registry set
  • azcontainerapp env create
  • azcontainerapp job create

Explanation

To create a scheduled Azure Container App job, you must first configure the container registry credentials using 'az containerapp registry set' so Azure can pull the container image, then create the Container Apps Environment using 'az containerapp env create' which provides the hosting infrastructure (networking, logging, etc.), and finally create the job itself using 'az containerapp job create' where you define the schedule (cron expression) and job properties. This sequence follows the logical dependency chain: registry access → environment → job.

Topics

#Azure Container Apps#Container App Jobs#Azure CLI#Container Registry

Community Discussion

No community discussion yet for this question.

Full AZ-204 Practice