0
0
Azurecloud~20 mins

File shares (Azure Files) - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Files Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
Understanding Azure Files SMB Protocol Support

Which SMB protocol version is required to mount an Azure Files share on a Windows 10 client?

ASMB 1.0
BSMB 3.1.1
CSMB 2.1
DSMB 3.0
Attempts:
2 left
💡 Hint

Azure Files requires a secure and modern SMB version for mounting shares on Windows 10.

Architecture
intermediate
2:00remaining
Choosing Azure Files Tier for Cost Optimization

You have a file share with infrequent access but need high durability and availability. Which Azure Files access tier should you choose to minimize cost while meeting these requirements?

ACool tier
BHot tier
CPremium tier
DArchive tier
Attempts:
2 left
💡 Hint

Consider the access frequency and cost trade-offs of each tier.

security
advanced
2:00remaining
Securing Azure Files with Identity-Based Authentication

Which authentication method allows Azure Active Directory (Azure AD) users to access Azure Files shares with their Azure AD credentials?

AAzure AD Domain Services (Azure AD DS) authentication
BShared Access Signatures (SAS)
CStorage account access keys
DAnonymous public access
Attempts:
2 left
💡 Hint

Think about integrating Azure Files with Azure AD for identity-based access.

Configuration
advanced
2:00remaining
Configuring Azure Files with Private Endpoint

You want to restrict access to your Azure Files share so that it is only accessible from your virtual network. Which configuration achieves this?

AEnable public network access and use firewall rules
BEnable service endpoints for Azure Storage on the subnet
CUse a shared access signature (SAS) with IP restrictions
DCreate a private endpoint for the storage account in your virtual network
Attempts:
2 left
💡 Hint

Consider how to make the storage account accessible only inside your private network.

Best Practice
expert
3:00remaining
Optimizing Azure Files Performance for Large File Transfers

Which approach best improves performance when transferring many large files to an Azure Files share?

AUse a single-threaded copy operation over SMB
BMount the share and copy files one by one manually
CUse AzCopy with parallelism enabled to upload files
DUse REST API calls sequentially for each file
Attempts:
2 left
💡 Hint

Think about tools designed for efficient bulk data transfer with parallelism.