
Simulate the real exam experience with 50 questions and a 100-minute time limit. Practice with AI-verified answers and detailed explanations.
AI-Powered
Every answer is cross-verified by 3 leading AI models to ensure maximum accuracy. Get detailed per-option explanations and in-depth question analysis.
You are developing an application that uses Azure Blob storage. The application must read the transaction logs of all the changes that occur to the blobs and the blob metadata in the storage account for auditing purposes. The changes must be in the order in which they occurred, include only create, update, delete, and copy operations and be retained for compliance reasons. You need to process the transaction logs asynchronously. What should you do?
Want to practice all questions on the go?
Download Cloud Pass for free — includes practice tests, progress tracking & more.
Get the free app
HOTSPOT - A company is developing a Java web app. The web app code is hosted in a GitHub repository located at https://github.com/Contoso/webapp. The web app must be evaluated before it is moved to production. You must deploy the initial code release to a deployment slot named staging. You need to create the web app and deploy the code. How should you complete the commands? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area:
az ______ create --location centralus --name $resourcegroupname
az ______ create --name $webappname --resource-group $resourcegroupname --sku S3
az ______ create --name $webappname --resource-group $resourcegroupname --plan $webappname
az ______ create --name $webappname --resource-group $resourcegroupname --slot staging
az ______ config --name $webappname --resource-group $resourcegroupname --slot staging --repo-url $gitrepo --branch master --manual-integration
Your company is developing an Azure API. You need to implement authentication for the Azure API. You have the following requirements: All API calls must be secure.
✑ Callers to the API must not send credentials to the API. Which authentication mechanism should you use?
Select the correct answer(s) in the image below.

HOTSPOT - You are building a website to access project data related to teams within your organization. The website does not allow anonymous access. Authentication is performed using an Azure Active Directory (Azure AD) app named internal. The website has the following authentication requirements: ✑ Azure AD users must be able to login to the website. ✑ Personalization of the website must be based on membership in Active Directory groups. You need to configure the application's manifest to meet the authentication requirements. How should you configure the manifest? To answer, select the appropriate configuration in the answer area. NOTE: Each correct selection is worth one point. Hot Area:
"optionalClaims" ______
"groupMembershipClaims" ______
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You develop an HTTP triggered Azure Function app to process Azure Storage blob data. The app is triggered using an output binding on the blob. The app continues to time out after four minutes. The app must process the blob data. You need to ensure the app does not time out and processes the blob data. Solution: Pass the HTTP trigger payload into an Azure Service Bus queue to be processed by a queue trigger function and return an immediate HTTP success response. Does the solution meet the goal?
HOTSPOT - You are creating a CLI script that creates an Azure web app and related services in Azure App Service. The web app uses the following variables: Variable name | Value $gitrepo | https://github.com/Contos/webapp $webappname | Webapp1103 You need to automatically deploy code from GitHub to the newly created web app. How should you complete the script? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area:
az group create --location westeurope --name myResourceGroup ______ --name $webappname --resource-group myResourceGroup --sku FREE
______ --repo-url $gitrepo --branch master --manual-integration
______ source config --name $webappname --resource-group myResourceGroup
______ --repo-url $gitrepo --branch master --manual-integration
HOTSPOT - You are developing a solution that uses the Azure Storage Client library for .NET. You have the following code: (Line numbers are included for reference only.)
CloudBlockBlob src = null;
try
{
src = container.ListBlobs().OfType().FirstOrDefault();
var id = await src.AcquireLeaseAsync(null);
var dst = container.GetBlockBlobReference(src.Name);
string cpid = await dst.StartCopyAsync(src);
await dst.FetchAttributeAsync();
return id;
}
catch (Exception e)
{
throw;
}
finally
{
if (src != null)
await src.FetchAttributesAsync();
if (src.Properties.LeaseState != LeaseState.Available)
await src.BreakLeaseAsync(new TimeSpan(0));
}
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. Hot Area:
The code creates an infinite lease
The code at line 06 always creates a new blob
The finally block releases the lease
You are preparing to deploy a website to an Azure Web App from a GitHub repository. The website includes static content generated by a script. You plan to use the Azure Web App continuous deployment feature. You need to run the static generation script before the website starts serving traffic. What are two possible ways to achieve this goal? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point.
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You are developing a medical records document management website. The website is used to store scanned copies of patient intake forms. If the stored intake forms are downloaded from storage by a third party, the contents of the forms must not be compromised. You need to store the intake forms according to the requirements. Solution:
HOTSPOT - You need to configure API Management for authentication. Which policy values should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Hot Area:
Policy ______
Policy section ______