Question 229 of 846
Develop data processingmediumMultiple ChoiceObjective-mapped

Quick Answer

Azure Stream Analytics is the correct choice because it natively delivers exactly-once semantics when streaming to a dedicated SQL pool, using checkpointing and output deduplication to ensure no data is lost or duplicated even during failures. This service also handles late-arriving data through configurable late arrival tolerance windows and out-of-order event policies, making it ideal for the scenario described. On the DP-203 exam, this question tests your understanding of how Azure Stream Analytics integrates with Event Hubs and Synapse dedicated SQL pools, often appearing as a trap where candidates mistakenly choose Azure Data Factory or Spark Structured Streaming—but those lack the native, built-in exactly-once guarantees for this specific pipeline. Remember the key: for streaming to a dedicated SQL pool with exactly-once and late-arrival handling, Azure Stream Analytics is the only first-party service that does it all out of the box. Memory tip: “ASA for ASA” — Azure Stream Analytics for Always Safe Arrival.

DP-203 Develop data processing Practice Question

This DP-203 practice question tests your understanding of develop data processing. 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 data processing solution in Azure Synapse Analytics. The solution must process streaming data from Azure Event Hubs and store the results in a dedicated SQL pool. The solution must support exactly-once semantics and handle late-arriving data. Which Azure service should you use to implement this solution?

Question 1mediummultiple choice
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

Azure Stream Analytics.

Azure Stream Analytics is the correct choice because it natively integrates with Azure Event Hubs and dedicated SQL pools, supports exactly-once semantics through checkpointing and output deduplication, and provides built-in handling for late-arriving data via configurable late arrival tolerance windows and out-of-order event policies.

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.

  • Azure Data Factory with tumbling window trigger.

    Why it's wrong here

    Azure Data Factory is designed for batch processing, not real-time streaming.

  • Azure Stream Analytics.

    Why this is correct

    Azure Stream Analytics provides exactly-once semantics and handles late-arriving data.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Azure Functions with Event Hubs trigger.

    Why it's wrong here

    Azure Functions does not guarantee exactly-once processing without additional logic.

  • Azure HDInsight Spark Structured Streaming.

    Why it's wrong here

    Spark Structured Streaming requires custom checkpointing and sink implementation for exactly-once.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse batch-oriented services like Azure Data Factory with streaming solutions, or assume that any event-driven compute (like Azure Functions) can provide exactly-once semantics and late-arriving data handling without understanding the specialized streaming engine requirements.

Detailed technical explanation

How to think about this question

Azure Stream Analytics achieves exactly-once semantics by using checkpointing to track processed offsets and implementing idempotent output to dedicated SQL pools via a staging table and merge logic. Late-arriving data is handled through a configurable late arrival tolerance window (up to 20 days) and out-of-order event policies that allow events to be reordered within a specified time window before being processed. Under the hood, Stream Analytics uses a temporal join mechanism to align event time with processing time, ensuring accurate windowed aggregations even when data arrives out of order.

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 DP-203 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 DP-203 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 DP-203 question test?

Develop data processing — This question tests Develop data processing — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Azure Stream Analytics. — Azure Stream Analytics is the correct choice because it natively integrates with Azure Event Hubs and dedicated SQL pools, supports exactly-once semantics through checkpointing and output deduplication, and provides built-in handling for late-arriving data via configurable late arrival tolerance windows and out-of-order event policies.

What should I do if I get this DP-203 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

Same concept, more angles

2 more ways this is tested on DP-203

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. You are designing a data processing solution in Azure Synapse Analytics. The solution must process streaming data from Azure Event Hubs and store the results in a dedicated SQL pool. You need to choose the most appropriate service for near real-time ingestion with minimal latency. What should you use?

medium
  • A.Azure Databricks with Structured Streaming
  • B.Azure Stream Analytics
  • C.Azure Data Factory
  • D.Azure Functions with Event Hub trigger

Why B: Azure Stream Analytics is the correct choice because it is purpose-built for near real-time stream processing with sub-second latency, directly integrates with Azure Event Hubs as an input source and dedicated SQL pool as an output sink, and provides a SQL-like query language for defining transformations. This minimizes architectural complexity and latency compared to other services.

Variation 2. You are developing a data processing solution in Azure Synapse Analytics. The solution must support both batch and streaming data ingestion into a dedicated SQL pool. You need to ensure that data from streaming sources is available for queries within 5 seconds. Which approach should you use?

hard
  • A.Use Azure Stream Analytics with a custom SQL function that writes directly to the dedicated SQL pool
  • B.Use Azure Databricks with Structured Streaming, write to Data Lake Storage, and then use PolyBase to load into SQL pool
  • C.Use Azure Data Factory with tumbling window triggers to load data from Event Hubs every 5 seconds
  • D.Use Event Hubs Capture to write to Data Lake Storage, then use PolyBase to load into the SQL pool every 5 seconds

Why A: Using Azure Stream Analytics with a custom function to write to the dedicated SQL pool via a stored procedure can achieve low latency. Option A is wrong because Azure Data Factory is batch-only. Option B is wrong because Event Hubs Capture writes in batches (minutes). Option D is wrong because Spark Structured Streaming to Data Lake and then PolyBase introduces additional latency.

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 DP-203 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 DP-203 exam.