AZ-104 Monitor and Maintain Azure Resources Practice Question
This AZ-104 practice question tests your understanding of monitor and maintain azure resources. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Recovery Services vault > Backup jobs
Job: Backup of vm-app-07
Status: Failed
Error details: "Backup failed because the VM agent is not in a ready state."
Additional note: The VM was created from a custom image.
Based on the exhibit, what should the administrator check first to resolve the backup failure for the Azure VM?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "first"
Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
Exhibit
Recovery Services vault > Backup jobs
Job: Backup of vm-app-07
Status: Failed
Error details: "Backup failed because the VM agent is not in a ready state."
Additional note: The VM was created from a custom image.
A
Increase the backup retention period in the vault policy.
Why wrong: Retention affects how long backups are kept, not whether the agent can run the job.
B
Verify that the Azure VM Agent is installed and running on the VM.
Azure VM backups depend on a healthy VM agent so Azure can coordinate snapshot and extension operations. If the job reports that the agent is not in a ready state, the first troubleshooting step is to confirm the agent is installed, running, and up to date. Custom images sometimes miss the agent or contain a broken installation, which causes backup jobs to fail immediately.
C
Move the VM to a different availability zone.
Why wrong: Availability zones affect resilience, but they do not fix a missing or unhealthy VM agent.
D
Change the storage account redundancy to ZRS.
Why wrong: Storage redundancy is unrelated to the VM agent state and will not resolve the backup failure.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Verify that the Azure VM Agent is installed and running on the VM.
The Azure VM backup failure is most commonly caused by the Azure VM Agent (also known as the Windows Guest Agent or Linux Agent) not being installed, outdated, or in a non-responsive state. The backup extension relies on the VM Agent to execute snapshots and coordinate with the Azure Backup service; without a healthy agent, the backup process cannot initiate. Therefore, verifying the agent's installation and status is the first troubleshooting step.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
Increase the backup retention period in the vault policy.
Why it's wrong here
Retention affects how long backups are kept, not whether the agent can run the job.
When this WOULD be correct
If the question were about a backup job that succeeds but the administrator wants to keep recovery points for a longer duration to meet compliance requirements, then increasing the backup retention period in the vault policy would be the correct action.
✓
Verify that the Azure VM Agent is installed and running on the VM.
Why this is correct
Azure VM backups depend on a healthy VM agent so Azure can coordinate snapshot and extension operations. If the job reports that the agent is not in a ready state, the first troubleshooting step is to confirm the agent is installed, running, and up to date. Custom images sometimes miss the agent or contain a broken installation, which causes backup jobs to fail immediately.
Clue confirmation
The clue word "first" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
Move the VM to a different availability zone.
Why it's wrong here
Availability zones affect resilience, but they do not fix a missing or unhealthy VM agent.
When this WOULD be correct
An administrator needs to improve VM availability during a zone-wide outage. The question would ask: 'Which action should be taken to protect a VM from an availability zone failure?'
✗
Change the storage account redundancy to ZRS.
Why it's wrong here
Storage redundancy is unrelated to the VM agent state and will not resolve the backup failure.
When this WOULD be correct
This option would be correct if the question described a scenario where backup failures occur due to storage account redundancy not meeting the required durability or availability SLA, such as when the backup policy requires geo-redundant storage but the account uses LRS.
Option-by-option analysis
Why each answer is right or wrong
Understanding why wrong answers are wrong — and when they would be correct — is what separates a 750 score from a 900. The AZ-104 exam frequently reuses these exact scenarios with slightly different constraints.
✓Verify that the Azure VM Agent is installed and running on the VM.Correct answer▾
Why this is correct
Azure VM backups depend on a healthy VM agent so Azure can coordinate snapshot and extension operations. If the job reports that the agent is not in a ready state, the first troubleshooting step is to confirm the agent is installed, running, and up to date. Custom images sometimes miss the agent or contain a broken installation, which causes backup jobs to fail immediately.
✗Increase the backup retention period in the vault policy.Wrong answer — click to see why▾
Why this is wrong here
The backup failure is due to the VM Agent not being installed or running, which is required for Azure Backup to take snapshots. Increasing the retention period does not address the root cause of the failure.
★ When this WOULD be the correct answer
If the question were about a backup job that succeeds but the administrator wants to keep recovery points for a longer duration to meet compliance requirements, then increasing the backup retention period in the vault policy would be the correct action.
Why candidates choose this
Candidates may assume that backup failures are often related to policy misconfigurations, such as retention settings, rather than understanding that the VM Agent is essential for snapshot-based backups.
✗Move the VM to a different availability zone.Wrong answer — click to see why▾
Why this is wrong here
Moving the VM to a different availability zone does not resolve backup failures caused by the Azure VM Agent not being installed or running. Backup failures are typically related to agent issues, not zone placement.
★ When this WOULD be the correct answer
An administrator needs to improve VM availability during a zone-wide outage. The question would ask: 'Which action should be taken to protect a VM from an availability zone failure?'
Why candidates choose this
Candidates may confuse availability zone concepts with backup reliability, thinking that changing zones can fix backup issues, or they may overgeneralize zone redundancy as a solution for all failures.
✗Change the storage account redundancy to ZRS.Wrong answer — click to see why▾
Why this is wrong here
Changing storage account redundancy to ZRS does not resolve backup failures caused by the Azure VM Agent not being installed or running. Backup failures typically relate to agent issues, not storage redundancy.
★ When this WOULD be the correct answer
This option would be correct if the question described a scenario where backup failures occur due to storage account redundancy not meeting the required durability or availability SLA, such as when the backup policy requires geo-redundant storage but the account uses LRS.
Why candidates choose this
Candidates may think that increasing redundancy (ZRS) improves backup reliability, but Azure Backup failures are rarely caused by storage redundancy settings; the agent is the more common culprit.
Analysis generated from the official AZ-104blueprint and verified against question context. The “when correct” sections are what AI assistants cite when candidates ask “what’s the difference between these options?”
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often jump to storage or networking changes (like redundancy or availability zones) when the real issue is a missing or broken VM Agent, which is a prerequisite for any guest-level operation including backup extensions.
Detailed technical explanation
How to think about this question
The Azure Backup service deploys the IaaSBcdrExtension (for Windows) or SnapshotExtension (for Linux) onto the VM to perform application-consistent snapshots. This extension communicates with the Azure VM Agent via the WireServer endpoint (168.63.129.16) to coordinate snapshot operations. If the agent is stopped, unresponsive, or has a corrupted state file (e.g., C:\Packages\Plugins on Windows), the extension fails to install or run, causing the backup to fail with error codes like 'GuestAgentSnapshotInProgress' or 'SnapshotFailed'.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
Visual reference
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this AZ-104 question in full detail.
Monitor and Maintain Azure Resources — This question tests Monitor and Maintain Azure Resources — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Verify that the Azure VM Agent is installed and running on the VM. — The Azure VM backup failure is most commonly caused by the Azure VM Agent (also known as the Windows Guest Agent or Linux Agent) not being installed, outdated, or in a non-responsive state. The backup extension relies on the VM Agent to execute snapshots and coordinate with the Azure Backup service; without a healthy agent, the backup process cannot initiate. Therefore, verifying the agent's installation and status is the first troubleshooting step.
What should I do if I get this AZ-104 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This AZ-104 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-104 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.