The correct answer is to enable the system-assigned managed identity on the Synapse workspace and assign it the Storage Blob Data Contributor role on the storage account. This works because Azure Synapse’s system-assigned managed identity provides a secure, passwordless authentication method for accessing ADLS Gen2, allowing data processing jobs to authenticate without storing or rotating credentials. On the DP-203 exam, this scenario tests your understanding of managed identity-based access control, a core security pattern for Azure data engineering. A common trap is confusing managed identities with service principals or access keys—remember that managed identities are tied directly to the Azure resource (like Synapse) and require an RBAC role assignment, not a storage account key. For memory, think “Synapse identity + Storage Blob Data Contributor = secure data access,” and note that the Contributor role covers read, write, and delete, while the Reader role only allows reads.
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.
Exhibit
Refer to the exhibit. The following is an Azure CLI output after running a command on a Synapse Analytics workspace:
{
"name": "myworkspace",
"type": "Microsoft.Synapse/workspaces",
"location": "eastus",
"properties": {
"defaultDataLakeStorage": {
"accountUrl": "https://mydatalake.dfs.core.windows.net",
"filesystem": "myfilesystem"
},
"sqlAdministratorLogin": "adminuser",
"managedResourceGroupName": "managedRG",
"provisioningState": "Succeeded",
"privateEndpointConnections": []
}
}
Refer to the exhibit. You have an Azure Synapse Analytics workspace. You need to ensure that data processing jobs can access the Data Lake Storage Gen2 account using a managed identity. What should you do?
Refer to the exhibit. The following is an Azure CLI output after running a command on a Synapse Analytics workspace:
{
"name": "myworkspace",
"type": "Microsoft.Synapse/workspaces",
"location": "eastus",
"properties": {
"defaultDataLakeStorage": {
"accountUrl": "https://mydatalake.dfs.core.windows.net",
"filesystem": "myfilesystem"
},
"sqlAdministratorLogin": "adminuser",
"managedResourceGroupName": "managedRG",
"provisioningState": "Succeeded",
"privateEndpointConnections": []
}
}
A
Use the SQL admin login credentials to access the storage account
Why wrong: SQL admin login is for SQL pool access, not storage.
B
Enable the system-assigned managed identity on the Synapse workspace and assign it the 'Storage Blob Data Contributor' role on the storage account
The managed identity needs RBAC permissions on the storage account.
C
Create a private endpoint connection between the workspace and the storage account
Why wrong: Private endpoint secures network traffic but does not grant data plane permissions.
D
Configure the storage account firewall to allow access from the Synapse workspace
Why wrong: Firewall settings allow network access but do not grant data permissions.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Enable the system-assigned managed identity on the Synapse workspace and assign it the 'Storage Blob Data Contributor' role on the storage account
Option B is correct because Azure Synapse Analytics supports system-assigned managed identities, which provide a secure, passwordless authentication method for accessing Azure Data Lake Storage Gen2. By enabling the managed identity on the Synapse workspace and assigning it the 'Storage Blob Data Contributor' role, you grant the workspace's data processing jobs the necessary permissions to read, write, and delete data in the storage account without managing credentials.
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.
✗
Use the SQL admin login credentials to access the storage account
Why it's wrong here
SQL admin login is for SQL pool access, not storage.
✓
Enable the system-assigned managed identity on the Synapse workspace and assign it the 'Storage Blob Data Contributor' role on the storage account
Why this is correct
The managed identity needs RBAC permissions on the storage account.
Related concept
Read the scenario before looking for a memorised answer.
✗
Create a private endpoint connection between the workspace and the storage account
Why it's wrong here
Private endpoint secures network traffic but does not grant data plane permissions.
✗
Configure the storage account firewall to allow access from the Synapse workspace
Why it's wrong here
Firewall settings allow network access but do not grant data permissions.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often confuse network-level access controls (firewall rules or private endpoints) with identity-based authorization (RBAC), mistakenly thinking that allowing network traffic alone is sufficient for data access.
Detailed technical explanation
How to think about this question
Under the hood, the system-assigned managed identity is a service principal automatically created in Azure AD and tied to the Synapse workspace lifecycle. When Synapse pipelines or Spark jobs use this identity, they obtain an OAuth 2.0 token from Azure AD, which is then presented to Data Lake Storage Gen2. The 'Storage Blob Data Contributor' role grants the identity full read, write, and delete permissions on blob containers, which is required for ETL operations like staging data or writing transformed results.
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.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this DP-203 question in full detail.
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: Enable the system-assigned managed identity on the Synapse workspace and assign it the 'Storage Blob Data Contributor' role on the storage account — Option B is correct because Azure Synapse Analytics supports system-assigned managed identities, which provide a secure, passwordless authentication method for accessing Azure Data Lake Storage Gen2. By enabling the managed identity on the Synapse workspace and assigning it the 'Storage Blob Data Contributor' role, you grant the workspace's data processing jobs the necessary permissions to read, write, and delete data in the storage account without managing credentials.
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 →
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.
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.
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.
Sign in to join the discussion.