Question 220 of 846
Develop data processinghardMultiple ChoiceObjective-mapped

Quick Answer

The answer is a table naming convention mismatch caused by the notebook dynamically constructing the table name from the inputDate parameter. When the pipeline runs for '2024-01-02', the notebook looks for a table named 'sales_20240102', but the preceding job has only created 'sales_20240101'—the previous day's table—because it likely uses a static or offset date. This tests your understanding of how Azure Synapse Spark notebooks handle dynamic parameterization and the critical need for consistent naming conventions across dependent pipeline activities. On the DP-203 exam, this scenario frequently appears in questions about pipeline orchestration and data loading patterns, where a common trap is assuming the preceding job always creates the current date's table rather than the previous day's. A reliable memory tip: always trace the date suffix from the parameter through to the table creation logic—if the notebook uses inputDate but the upstream job uses yesterday's date, the mismatch is inevitable.

DP-203 Develop data processing Practice Question

This DP-203 practice question tests your understanding of develop data processing. 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

{
  "name": "SalesAggregation",
  "properties": {
    "activities": [
      {
        "name": "Notebook1",
        "type": "SynapseNotebook",
        "dependsOn": [],
        "typeProperties": {
          "notebook": "SalesAggregationNotebook",
          "parameters": {}
        },
        "linkedServiceName": {
          "referenceName": "mySparkPool",
          "type": "LinkedServiceReference"
        }
      }
    ],
    "parameters": {
      "inputDate": {
        "type": "string",
        "defaultValue": "2024-01-01"
      }
    }
  }
}

Refer to the exhibit. You have an Azure Synapse pipeline that runs a Spark notebook daily. The notebook uses the inputDate parameter to filter data. The notebook successfully processes data for '2024-01-01' but fails for '2024-01-02' with an error that the 'sales' table does not exist. The 'sales' table is created daily by a preceding job. What is the most likely cause?

Clue words in this question

Noticing these words before you look at the options changes how you read each choice.

  • Clue: "most likely"

    Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

Question 1hardmultiple choice
Full question →

Exhibit

{
  "name": "SalesAggregation",
  "properties": {
    "activities": [
      {
        "name": "Notebook1",
        "type": "SynapseNotebook",
        "dependsOn": [],
        "typeProperties": {
          "notebook": "SalesAggregationNotebook",
          "parameters": {}
        },
        "linkedServiceName": {
          "referenceName": "mySparkPool",
          "type": "LinkedServiceReference"
        }
      }
    ],
    "parameters": {
      "inputDate": {
        "type": "string",
        "defaultValue": "2024-01-01"
      }
    }
  }
}

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

The notebook expects a table named 'sales_20240102' but the preceding job creates 'sales_20240101'

The error indicates that the notebook is looking for a table named 'sales_20240102' (based on the inputDate parameter for '2024-01-02'), but the preceding job creates a table named 'sales_20240101' (the previous day's table). This mismatch occurs because the notebook dynamically constructs the table name using the inputDate parameter, and the preceding job likely creates the table with a date suffix that does not align with the current inputDate. The correct answer is A because the table naming convention is inconsistent between the two processes.

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.

  • The notebook expects a table named 'sales_20240102' but the preceding job creates 'sales_20240101'

    Why this is correct

    The notebook likely constructs table name from the date parameter, and the table for the new date hasn't been created.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Read the scenario before looking for a memorised answer.

  • The notebook activity should have a dependency on the job that creates the table

    Why it's wrong here

    While adding a dependency could help, the root cause is that the table for the new date doesn't exist yet.

  • The Spark pool does not have permissions to read the storage account where the table data is stored

    Why it's wrong here

    Permission issues would cause a different error, not table not found.

  • The pipeline parameter 'inputDate' is not being passed to the notebook correctly

    Why it's wrong here

    If the parameter were not passed, the notebook would use the default value, which would still work for that date.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates may assume the error is due to missing dependencies or permissions, but the real issue is a logical mismatch in table naming conventions between the table creation job and the notebook's expected table name.

Detailed technical explanation

How to think about this question

In Azure Synapse Spark notebooks, table names are often parameterized using string interpolation (e.g., f'sales_{inputDate.replace("-", "")}'). If the preceding job creates the table with a static name like 'sales_20240101' (hardcoded or based on a different date logic), the notebook's dynamic reference to 'sales_20240102' will fail because that table does not exist. This is a common integration issue in data pipelines where upstream and downstream components use different date conventions or offset logic.

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.

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: The notebook expects a table named 'sales_20240102' but the preceding job creates 'sales_20240101' — The error indicates that the notebook is looking for a table named 'sales_20240102' (based on the inputDate parameter for '2024-01-02'), but the preceding job creates a table named 'sales_20240101' (the previous day's table). This mismatch occurs because the notebook dynamically constructs the table name using the inputDate parameter, and the preceding job likely creates the table with a date suffix that does not align with the current inputDate. The correct answer is A because the table naming convention is inconsistent between the two processes.

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.

Are there clue words in this question I should notice?

Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.

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

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.