Courseiva
Event Driven IntegrationhardMultiple SelectObjective-mapped

AI-200 Event Driven Integration Practice Question

Your application consumes messages from an Azure Service Bus queue using PeekLock mode. Which THREE actions can your worker code perform on a received message object? Each correct answer represents a valid Service Bus SDK operation.

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

DeadLetterAsync() to move the message to the dead-letter sub-queue

Under PeekLock mode, workers can Complete, Abandon, or Dead-letter a message.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • CommitTransactionAsync() directly on the message instance

    Why it's wrong here

    Transactions in Service Bus are coordinated using a TransactionScope or SendVia client, not a method directly on the message instance.

  • CaptureToBlobAsync() to archive the message to storage

    Why it's wrong here

    CaptureToBlobAsync is not a method on Service Bus messages.

  • DeadLetterAsync() to move the message to the dead-letter sub-queue

    Why this is correct

    DeadLetterAsync routes the message to the dead-letter queue for inspection.

  • AbandonAsync() to release the lock and make the message available again immediately

    Why this is correct

    AbandonAsync releases the message lock and increments delivery count.

  • CompleteAsync() to delete the message from the queue successfully

    Why this is correct

    CompleteAsync signals successful processing and removes the message.

About these practice questions

One of 503 original AI-200 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed August 2026 · checked against the official Microsoft exam blueprint

This AI-200 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 AI-200 exam.