easymulti selectObjective-mapped

Which two authentication methods let an app access blob data without storing the storage account key on the machine? Select two.

Question 1easymulti select
Full question →

Which two authentication methods let an app access blob data without storing the storage account key on the machine? Select two.

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Best answer

Microsoft Entra ID authorization with an appropriate Azure RBAC role.

Entra ID plus RBAC lets the app authenticate as a user, group, or managed identity without handling a storage key.

B

Best answer

A user delegation SAS generated through Microsoft Entra ID.

A user delegation SAS is signed through Entra ID-based authorization and avoids exposing the storage account key to the app.

C

Distractor review

The storage account access key.

An access key is a long-lived secret and must be stored somewhere the app can read it, which breaks the requirement.

D

Distractor review

A service SAS generated directly from the account key.

A service SAS still depends on the account key for signing, so the key must be protected and is not eliminated.

E

Distractor review

Anonymous public access to the container.

Anonymous access exposes data broadly and is not appropriate for a secure application that needs controlled blob access.

Common exam trap

Common exam trap: authentication is not authorization

Logging in proves the user can authenticate. It does not automatically mean the user is allowed to enter privileged or configuration mode. Watch for AAA authorization, privilege level and command authorization details.

Technical deep dive

How to think about this question

This kind of question is testing the difference between identity and permission. A user may successfully log in to a router because authentication is working, but still fail to enter configuration mode because authorization is missing, misconfigured or mapped to a lower privilege level.

KKey Concepts to Remember

  • Authentication checks who the user is.
  • Authorization controls what the user is allowed to do after login.
  • Privilege levels affect access to EXEC and configuration commands.
  • AAA, TACACS+ and RADIUS can separate login success from command access.

TExam Day Tips

  • Do not assume successful login means full administrative access.
  • Look for words such as cannot enter configuration mode, privilege level, authorization or command access.
  • Separate login problems from permission problems before choosing the answer.

Related practice questions

Related AZ-104 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this AZ-104 question test?

Authentication checks who the user is.

What is the correct answer to this question?

The correct answer is: Microsoft Entra ID authorization with an appropriate Azure RBAC role. — The two keyless options are Microsoft Entra ID with the right RBAC role, and a user delegation SAS. Both avoid embedding the storage account key in the application or on the machine. This is the preferred pattern for modern Azure workloads because it reduces secret management and supports revocation through identity controls. Why others are wrong: The storage account key and a service SAS both depend on the account key, so neither removes the need to protect a long-lived secret. Anonymous access is insecure and unsuitable for most business workloads. The question is focused on ways to authenticate without storing the account key, and those two answers are the secure options.

What should I do if I get this AZ-104 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.