AI-200 Event Driven Integration Practice Question
You are managing an Azure Service Bus Premium namespace. Your application requires strict transactional messaging where a worker receives a message from Queue A, processes it, and sends a resulting message to Queue B. If any step fails, both actions must be rolled back. How should you implement this?
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
✓
Wrap the receive and send operations inside a .NET TransactionScope block.
Using .NET TransactionScope with Service Bus allows receiving from Queue A and sending to Queue B within a single atomic transaction.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Wrap the receive and send operations inside a .NET TransactionScope block.
Why this is correct
TransactionScope coordinates ambient transactions across Service Bus entities within the same Premium namespace.
- ✗
Set the message session ID to the same value on both queues.
Why it's wrong here
Sessions ensure ordering within a single queue or topic, not atomic distributed transactions across separate queues.
- ✗
Enable Event Grid automatic forwarding between queues.
Why it's wrong here
Event Grid does not manage Service Bus queue transactions.
- ✗
Use Event Hubs checkpoints for transactional rollback.
Why it's wrong here
Event Hubs checkpoints update read offsets; they do not provide transactional multi-queue rollbacks.
About these practice questions
This AI-200 question is part of Courseiva's 507-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
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.