0
0
Azurecloud~20 mins

Blob containers and access levels in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Blob Access Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Blob Container Public Access Levels

Which of the following describes the Private access level for an Azure Blob container?

AOnly the container owner can read blobs and container metadata; no anonymous access is allowed.
BAnyone can read blobs within the container, but container metadata is private.
CAnyone can read both blobs and container metadata without authentication.
DAnyone can write blobs to the container without authentication.
Attempts:
2 left
💡 Hint

Think about who can access the blobs when the container is set to private.

service_behavior
intermediate
2:00remaining
Effect of Blob Container Access Level on Anonymous Read

You set an Azure Blob container's access level to Blob. What is the expected behavior for anonymous users?

AAnonymous users can write blobs but cannot read any blobs or metadata.
BAnonymous users can list blobs and read container metadata but cannot read blob content.
CAnonymous users can read blobs but cannot list blobs or read container metadata.
DAnonymous users cannot access blobs or container metadata at all.
Attempts:
2 left
💡 Hint

Consider what 'Blob' access level allows compared to 'Container' and 'Private'.

Configuration
advanced
2:00remaining
Configuring a Blob Container for Public Read Access

You want to configure an Azure Blob container so that anyone can list blobs and read blob content without authentication. Which access level should you set?

APrivate
BContainer
CBlob
DOff
Attempts:
2 left
💡 Hint

Think about which access level allows listing blobs publicly.

security
advanced
2:00remaining
Security Risks of Setting Blob Container Access Level to Container

What is a potential security risk when setting an Azure Blob container's access level to Container?

AAnyone can list and read all blobs and container metadata without authentication.
BAnyone can delete blobs without authentication.
COnly authenticated users can read blobs, but metadata is public.
DAnyone can upload malicious blobs without authentication.
Attempts:
2 left
💡 Hint

Consider what public access means for data visibility.

Architecture
expert
3:00remaining
Designing Blob Storage Access for a Public Website with Private Data

You are designing Azure Blob storage for a website that serves public images but also stores private user documents. How should you configure the containers?

ASet both containers to 'Private' and use anonymous access for images.
BSet one container to 'Blob' access level for images and another to 'Blob' for user documents.
CSet both containers to 'Container' access level and rely on SAS tokens for private documents.
DSet one container to 'Container' access level for images and another container to 'Private' for user documents.
Attempts:
2 left
💡 Hint

Think about separating public and private data with different access levels.