Question 345 of 997
Develop Azure compute solutionshardMultiple SelectObjective-mapped

Quick Answer

The answer is to set the max delivery count on the Service Bus queue, implement idempotent processing logic using a unique message identifier, and enable the PeekLock receive mode. These three actions work together because idempotent processing ensures that handling the same message multiple times—due to transient failures or automatic redelivery—produces the same outcome, preventing data corruption or duplicate side effects. On the AZ-204 exam, this scenario tests your understanding of how Azure Functions integrates with Service Bus under the “Develop event-based solutions” objective, where a common trap is assuming that enabling duplicate detection on the queue alone solves the problem, when in fact the function code must also check a deduplication store like Cosmos DB or Blob storage. The max delivery count stops infinite retries, PeekLock prevents message loss by requiring explicit completion, and idempotent logic handles the inevitable duplicates. Memory tip: think “Lock, Limit, Log”—PeekLock to hold, max delivery to limit, and a log (deduplication store) to verify uniqueness.

AZ-204 Develop Azure compute solutions Practice Question

This AZ-204 practice question tests your understanding of develop azure compute solutions. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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.

You are designing a serverless application using Azure Functions. The application processes messages from Azure Service Bus. You need to ensure that processing is idempotent and that messages are not lost. Which THREE actions should you take?

Question 1hardmulti select
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Implement idempotency in the function logic.

Option B is correct because idempotency ensures that processing the same message multiple times produces the same result, which is critical for serverless applications where retries or duplicate deliveries can occur. Azure Functions can receive the same Service Bus message more than once due to transient failures or redelivery, so the function logic must handle duplicates safely, often by checking a unique message ID or using a deduplication store.

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.

  • Process messages in batches to improve throughput.

    Why it's wrong here

    Batching does not ensure idempotency or prevent message loss.

  • Implement idempotency in the function logic.

    Why this is correct

    Idempotency ensures that duplicate messages do not cause side effects.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use PeekLock mode and manually complete messages after processing.

    Why this is correct

    PeekLock ensures messages are not lost; manual completion after processing ensures reliability.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Use the AutoComplete option to automatically mark messages as complete.

    Why it's wrong here

    AutoComplete can cause message loss if the function crashes after completion but before processing.

  • Set the max delivery count on the Service Bus queue to prevent infinite retries.

    Why this is correct

    Max delivery count moves messages to dead-letter after a set number of retries.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse AutoComplete with reliability, but AutoComplete can lead to message loss if the function crashes after processing but before the completion is committed, whereas PeekLock with manual completion ensures messages are not lost.

Detailed technical explanation

How to think about this question

Under the hood, Service Bus PeekLock mode locks the message for a configurable duration, and the function must explicitly call CompleteAsync() after processing. If the function fails, the lock expires and the message becomes available for redelivery, ensuring at-least-once processing. Idempotency is often implemented by storing processed message IDs in a durable store (e.g., Azure Cosmos DB) and checking before processing, which prevents side effects from duplicate deliveries.

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 cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related AZ-204 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free AZ-204 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this AZ-204 question test?

Develop Azure compute solutions — This question tests Develop Azure compute solutions — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Implement idempotency in the function logic. — Option B is correct because idempotency ensures that processing the same message multiple times produces the same result, which is critical for serverless applications where retries or duplicate deliveries can occur. Azure Functions can receive the same Service Bus message more than once due to transient failures or redelivery, so the function logic must handle duplicates safely, often by checking a unique message ID or using a deduplication store.

What should I do if I get this AZ-204 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

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 →

How Courseiva writes practice questions · Editorial policy

Keep practising

More AZ-204 practice questions

Last reviewed: Jun 24, 2026

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.

Loading comments…

Sign in to join the discussion.

This AZ-204 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-204 exam.