Question 66 of 846
Monitor and optimize data storage and processingmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct approach is to flatten the nested JSON arrays into a tabular format using Azure Data Factory or Databricks before loading into Azure Synapse Analytics via PolyBase. This is necessary because PolyBase’s external tables require a flat, relational structure and cannot directly parse nested JSON arrays—it expects each row to represent a single record with scalar values. On the DP-203 exam, this scenario tests your understanding of PolyBase’s limitations with semi-structured data and the need for an intermediary transformation step. A common trap is assuming PolyBase can handle complex JSON natively, but it only supports simple JSON files where each object maps to one row. To load nested JSON arrays correctly, you must first explode the arrays into separate rows and columns using Data Factory’s data flow or Databricks’ explode function. Memory tip: think “PolyBase is flat, so flatten first”—if you see nested arrays in JSON, always reach for ADF or Databricks to normalize the data before PolyBase ingestion.

DP-203 Practice Question: Monitor and optimize data storage and processing

This DP-203 practice question tests your understanding of monitor and optimize data storage and 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.

You are designing a data pipeline that ingests JSON files from Azure Blob Storage into Azure Synapse Analytics using PolyBase. The files contain nested JSON arrays. What should you do to ensure that the data is loaded correctly?

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

Flatten the JSON arrays into a tabular format using Azure Data Factory or Databricks before loading.

Option A is correct because PolyBase in Azure Synapse Analytics cannot directly handle nested JSON arrays; it requires a flat, tabular structure. Azure Data Factory or Databricks can flatten the nested arrays into rows and columns before loading, ensuring compatibility with PolyBase's external table format.

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.

  • Flatten the JSON arrays into a tabular format using Azure Data Factory or Databricks before loading.

    Why this is correct

    PolyBase requires tabular data, so flattening is necessary.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Create an external table with the JSON file type and use a schema definition.

    Why it's wrong here

    PolyBase external tables support only delimited text and Parquet.

  • Use the OPENJSON function in T-SQL to parse the JSON during the load.

    Why it's wrong here

    OPENJSON can be used in Synapse, but PolyBase cannot use it for external tables.

  • Use PolyBase with a JSON format file specifying the schema.

    Why it's wrong here

    PolyBase does not support JSON files directly.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates assume PolyBase can handle any JSON structure natively, but it only supports flat JSON files, and they overlook the need for pre-processing nested arrays with tools like Data Factory or Databricks.

Detailed technical explanation

How to think about this question

PolyBase uses external tables with a schema defined at table creation, and it expects data in a row-column format. Nested JSON arrays require a transformation step, such as using Azure Data Factory's 'Flatten' transformation or Databricks' 'explode' function, to convert each array element into a separate row. This is critical for scenarios like IoT sensor data where each device emits nested readings that must be stored as individual records in Synapse.

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?

Monitor and optimize data storage and processing — This question tests Monitor and optimize data storage and processing — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Flatten the JSON arrays into a tabular format using Azure Data Factory or Databricks before loading. — Option A is correct because PolyBase in Azure Synapse Analytics cannot directly handle nested JSON arrays; it requires a flat, tabular structure. Azure Data Factory or Databricks can flatten the nested arrays into rows and columns before loading, ensuring compatibility with PolyBase's external table format.

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

Keep practising

More DP-203 practice questions

Last reviewed: Jun 11, 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.