00:00

QUESTION 31

- (Exam Topic 8)
You have an application that uses Azure Blob storage. You need to update the metadata of the blobs.
Which three methods should you use to develop the solution? To answer, move the appropriate methods from the list of methods to the answer area and arrange them in the correct order.
AZ-204 dumps exhibit
Solution:
Metadata.Add example:
// Add metadata to the dictionary by calling the Add method metadata.Add("docType", "textDocuments"); SetMetadataAsync example:
// Set the blob's metadata.
await blob.SetMetadataAsync(metadata);
// Set the blob's properties.
await blob.SetPropertiesAsync(); Reference:
https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-properties-metadata

Does this meet the goal?

Correct Answer: A

QUESTION 32

- (Exam Topic 8)
You are developing an ASP.NET Core app that includes feature flags which are managed by Azure App Configuration. You create an Azure App Configuration store named AppreaiureflagStore as shown in the exhibit:
AZ-204 dumps exhibit
You must be able to use the feature in the app by using the following markup:
AZ-204 dumps exhibit
You went to update the app to use the feature flag.
Which values should you use? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
AZ-204 dumps exhibit
Solution:
Box 1: FeatureGate
You can use the FeatureGate attribute to control whether a whole controller class or a specific action is enabled.
Box 2: AddAzureAppConfiguration
The extension method AddAzureAppConfiguration is used to add the Azure App Configuration Provider. Box 3: https://appfeatureflagstore.azconfig.io
You need to request the access token with resource=https://.azconfig.io
Reference:
https://docs.microsoft.com/en-us/azure/azure-app-configuration/use-feature-flags-dotnet-core https://csharp.christiannagel.com/2020/05/19/azureappconfiguration/ https://stackoverflow.com/questions/61899063/how-to-use-azure-app-configuration-rest-api

Does this meet the goal?

Correct Answer: A

QUESTION 33

- (Exam Topic 7)
You need to test the availability of the corporate website. Which two test types can you use?

Correct Answer: AB

QUESTION 34

- (Exam Topic 8)
You develop and deploy an Azure App Service ---- app. The web app accesses data in an Azure SQL database You must update the web app to store frequently used data m a new Azure Cache for Redis Premium instance. You need to implement the Azure Cache for Redis features.
Which feature should you implement? To answer, drag the appropriate feature to the correct requirements Each feature may be used once, more than once, or not at all You may need to ------------ between panes or scroll to view content.
NOTE Each correct selection is worth one point
AZ-204 dumps exhibit
Solution:
Graphical user interface, text, application Description automatically generated
AZ-204 dumps exhibit

Does this meet the goal?

Correct Answer: A

QUESTION 35

- (Exam Topic 2)
You need to ensure that validation testing is triggered per the requirements.
How should you complete the code segment? To answer, select the appropriate values in the answer area.
NOTE: Each correct selection is worth one point.
AZ-204 dumps exhibit
Solution:
Box 1: RepositoryUpdated
When a new version of the ContentAnalysisService is available the previous seven days of content must be processed with the new version to verify that the new version does not significantly deviate from the old version.
Box 2: service
Box 3: imageCollection Reference:
https://docs.microsoft.com/en-us/azure/devops/notifications/oob-supported-event-types

Does this meet the goal?

Correct Answer: A