Question 340 of 846
Monitor and optimize data storage and processinghardMultiple ChoiceObjective-mapped

Quick Answer

The answer is that the primary purpose of this RBAC policy is to authorize generation of a shared access signature (SAS) token for the storage account. This is correct because the JSON defines the specific action 'Microsoft.Storage/storageAccounts/listAccountSas/action', which grants permission to generate an account-level SAS, not a service-level SAS for containers or blobs. On the Microsoft Azure Data Engineer Associate DP-203 exam, this concept tests your understanding of granular RBAC permissions versus shared access signatures, often appearing in scenarios where you must distinguish between account SAS and service SAS delegation. A common trap is confusing this action with 'listServiceSas' or container-level permissions, so remember that 'listAccountSas' applies to the entire storage account. For a quick memory tip, think "Account SAS = Account-level action" — the word "Account" appears in both the permission name and the SAS type, reinforcing that this RBAC action controls generation of a token for the whole storage account, not individual services.

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. 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.

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "Microsoft.Storage/storageAccounts/listAccountSas/action",
      "Resource": "/subscriptions/.../resourceGroups/.../providers/Microsoft.Storage/storageAccounts/stgacct"
    }
  ]
}
```

You are reviewing an Azure Policy assignment that uses the above JSON to define a role-based access control (RBAC) action. What is the primary purpose of this policy?

Clue words in this question

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

  • Clue: "primary"

    Why it matters: Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

Question 1hardmultiple choice
Full question →

Exhibit

Refer to the exhibit.

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "Microsoft.Storage/storageAccounts/listAccountSas/action",
      "Resource": "/subscriptions/.../resourceGroups/.../providers/Microsoft.Storage/storageAccounts/stgacct"
    }
  ]
}
```

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

To authorize generation of a shared access signature (SAS) token for the storage account.

The policy JSON defines a role-based access control (RBAC) action that grants the 'Microsoft.Storage/storageAccounts/listAccountSas/action' permission. This specific action authorizes the generation of a shared access signature (SAS) token at the storage account level, not at the container or blob level. Therefore, the primary purpose is to allow the generation of an account SAS token, which provides delegated access to storage services.

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.

  • To assign RBAC roles to users for the storage account.

    Why it's wrong here

    RBAC role assignment is done via 'Microsoft.Authorization/roleAssignments/write'.

  • To enable delegation of access to a specific blob.

    Why it's wrong here

    Blob-level delegation requires 'Microsoft.Storage/storageAccounts/blobServices/containers/blobs' actions.

  • To allow users to set permissions on storage account containers.

    Why it's wrong here

    Setting container permissions is done via different actions like 'container/update'.

  • To authorize generation of a shared access signature (SAS) token for the storage account.

    Why this is correct

    The 'listAccountSas' action generates an account-level SAS token.

    Clue confirmation

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

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates confuse the account-level SAS generation action with container or blob-level delegation, or mistakenly think the policy itself assigns roles rather than defining a permission that can be used in a custom role.

Detailed technical explanation

How to think about this question

The 'listAccountSas' action generates an account SAS token that can delegate access to multiple storage services (blobs, files, queues, tables) and operations, with permissions and expiry defined in the request. Under the hood, the Azure Resource Manager validates the caller's RBAC permissions before calling the Storage Resource Provider to generate the SAS token, which is signed with the storage account key. A real-world scenario is granting a DevOps pipeline the ability to generate temporary account SAS tokens for automated backups without exposing the account key.

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: To authorize generation of a shared access signature (SAS) token for the storage account. — The policy JSON defines a role-based access control (RBAC) action that grants the 'Microsoft.Storage/storageAccounts/listAccountSas/action' permission. This specific action authorizes the generation of a shared access signature (SAS) token at the storage account level, not at the container or blob level. Therefore, the primary purpose is to allow the generation of an account SAS token, which provides delegated access to storage services.

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: "primary". Asks for the main purpose or function, not a secondary benefit. Eliminate answers that describe side-effects or partial functions.

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 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.