ExamGecko
Home / Microsoft / AZ-204 / List of questions
Ask Question

Microsoft AZ-204 Practice Test - Questions Answers, Page 2

Add to Whishlist

List of questions

Question 11

Report Export Collapse

HOTSPOT

You need to add code at line AM09 to ensure that users can review content using ContentAnalysisService.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 11 86207 10022024015000000
Correct answer: Microsoft AZ-204 image answer Question 11 86207 10022024015000000
Explanation:

Box 1: "oauth2Permissions": ["login"]

oauth2Permissions specifies the collection of OAuth 2.0 permission scopes that the web API (resource) app exposes to client apps. These permission scopes may be granted to client apps during consent.

Box 2: "oauth2AllowImplicitFlow":true

For applications (Angular, Ember.js, React.js, and so on), Microsoft identity platform supports the OAuth 2.0 Implicit Grant flow.

Reference:

https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-app-manifest

asked 02/10/2024
Amir Trujillo
41 questions

Question 12

Report Export Collapse

HOTSPOT

You need to ensure that network security policies are met.

How should you configure network security? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 12 86208 10022024015000000
Correct answer: Microsoft AZ-204 image answer Question 12 86208 10022024015000000
Explanation:

Box 1: Valid root certificate

Scenario: All websites and services must use SSL from a valid root certificate authority.

Box 2: Azure Application Gateway

Scenario:

Any web service accessible over the Internet must be protected from cross site scripting attacks.

All Internal services must only be accessible from Internal Virtual Networks (VNets)

All parts of the system must support inbound and outbound traffic restrictions.

Azure Web Application Firewall (WAF) on Azure Application Gateway provides centralized protection of your web applications from common exploits and vulnerabilities. Web applications are increasingly targeted by malicious attacks that exploit commonly known vulnerabilities. SQL injection and cross-site scripting are among the most common attacks.

Application Gateway supports autoscaling, SSL offloading, and end-to-end SSL, a web application firewall (WAF), cookie-based session affinity, URL path-based routing, multisite hosting, redirection, rewrite HTTP headers and other features.

Note: Both Nginx and Azure Application Gateway act as a reverse proxy with Layer 7 load-balancing features plus a WAF to ensure strong protection against common web vulnerabilities and exploits.

You can modify Nginx web server configuration/SSL for X-XSS protection. This helps to prevent cross-site scripting exploits by forcing the injection of HTTP headers with X-XSS protection.

Reference:

https://docs.microsoft.com/en-us/azure/web-application-firewall/ag/ag-overview

https://www.upguard.com/articles/10-tips-for-securing-your-nginx-deployment

asked 02/10/2024
Laurence Peterson
35 questions

Question 13

Report Export Collapse

DRAG DROP

You need to add YAML markup at line CS17 to ensure that the ContentUploadService can access Azure Storage access keys.

How should you complete the YAML markup? To answer, drag the appropriate YAML segments to the correct locations. Each YAML segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 13 86209 10022024015000000
Correct answer: Microsoft AZ-204 image answer Question 13 86209 10022024015000000
Explanation:

Box 1: volumeMounts

Example:

volumeMounts:

- mountPath: /mnt/secrets

name: secretvolume1

volumes:

- name: secretvolume1

secret:

mysecret1: TXkgZmlyc3Qgc2VjcmV0IEZPTwo=

Box 2: volumes

Box 3: secret

Reference:

https://docs.microsoft.com/en-us/azure/container-instances/container-instances-volume-secret

asked 02/10/2024
Nuno Silva
40 questions

Question 14

Report Export Collapse

HOTSPOT

You need to add code at line AM10 of the application manifest to ensure that the requirement for manually reviewing content can be met.

How should you complete the code? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 14 86210 10022024015000000
Correct answer: Microsoft AZ-204 image answer Question 14 86210 10022024015000000
Explanation:

Box 1: sid

Sid: Session ID, used for per-session user sign-out. Personal and Azure AD accounts.

Scenario: Manual review

To review content, the user must authenticate to the website portion of the ContentAnalysisService using their Azure AD credentials. The website is built using React and all pages and API endpoints require authentication. In order to review content a user must be part of a ContentReviewer role.

Box 2: email

Scenario: All completed reviews must include the reviewer's email address for auditing purposes.

asked 02/10/2024
Steve Marechal
42 questions

Question 15

Report Export Collapse

You need to monitor ContentUploadService according to the requirements.

Which command should you use?

az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "avg Percentage CPU > 8"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "avg Percentage CPU > 8"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "avg Percentage CPU > 800"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "avg Percentage CPU > 800"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "CPU Usage > 800"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "CPU Usage > 800"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "CPU Usage > 8"
az monitor metrics alert create -n alert -g ... - -scopes ... - -condition "CPU Usage > 8"
Suggested answer: B
Explanation:

Scenario: An alert must be raised if the ContentUploadService uses more than 80 percent of available CPU cores

Reference:

https://docs.microsoft.com/sv-se/cli/azure/monitor/metrics/alert

asked 02/10/2024
matteo vadagnini
49 questions

Question 16

Report Export Collapse

You need to investigate the http server log output to resolve the issue with the ContentUploadService.

Which command should you use first?

az webapp log
az webapp log
az ams live-output
az ams live-output
az monitor activity-log
az monitor activity-log
az container attach
az container attach
Suggested answer: C
Explanation:

Scenario: Users of the ContentUploadService report that they occasionally see HTTP 502 responses on specific pages.

"502 bad gateway" and "503 service unavailable" are common errors in your app hosted in Azure App Service.

Microsoft Azure publicizes each time there is a service interruption or performance degradation.

The az monitor activity-log command manages activity logs.

Note: Troubleshooting can be divided into three distinct tasks, in sequential order:

1. Observe and monitor application behavior

2. Collect data

3. Mitigate the issue

Reference:

https://docs.microsoft.com/en-us/cli/azure/monitor/activity-log

asked 02/10/2024
luigi catalano
42 questions

Question 17

Report Export Collapse

HOTSPOT

You need to configure the integration for Azure Service Bus and Azure Event Grid.

How should you complete the CLI statement? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 17 86302 10022024015001000
Correct answer: Microsoft AZ-204 image answer Question 17 86302 10022024015001000
Explanation:

Box 1: eventgrid

To create event subscription use: az eventgrid event-subscription create

Box 2: event-subscription

Box 3: servicebusqueue

Scenario: Azure Service Bus and Azure Event Grid

Azure Event Grid must use Azure Service Bus for queue-based load leveling.

Events in Azure Event Grid must be routed directly to Service Bus queues for use in buffering.

Events from Azure Service Bus and other Azure services must continue to be routed to Azure Event Grid for processing.

Reference:

https://docs.microsoft.com/en-us/cli/azure/eventgrid/event-subscription?view=azure-cli-latest#az_eventgrid_event_subscription_create

asked 02/10/2024
Lascelles Johnson
48 questions

Question 18

Report Export Collapse

You need to ensure that all messages from Azure Event Grid are processed.

What should you use?

Azure Event Grid topic
Azure Event Grid topic
Azure Service Bus topic
Azure Service Bus topic
Azure Service Bus queue
Azure Service Bus queue
Azure Storage queue
Azure Storage queue
Azure Logic App custom connector
Azure Logic App custom connector
Suggested answer: C
Explanation:

As a solution architect/developer, you should consider using Service Bus queues when:

Your solution needs to receive messages without having to poll the queue. With Service Bus, you can achieve it by using a long-polling receive operation using the TCP-based protocols that Service Bus supports.

Reference:

https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-azure-and-service-bus-queues-compared-contrasted

asked 02/10/2024
Carlotta Agape
47 questions

Question 19

Report Export Collapse

You need to correct the RequestUserApproval Function app error.

What should you do?

Update line RA13 to use the async keyword and return an HttpRequest object value.
Update line RA13 to use the async keyword and return an HttpRequest object value.
Configure the Function app to use an App Service hosting plan. Enable the Always On setting of the hosting plan.
Configure the Function app to use an App Service hosting plan. Enable the Always On setting of the hosting plan.
Update the function to be stateful by using Durable Functions to process the request payload.
Update the function to be stateful by using Durable Functions to process the request payload.
Update the functionTimeout property of the host.json project file to 15 minutes.
Update the functionTimeout property of the host.json project file to 15 minutes.
Suggested answer: C
Explanation:

Async operation tracking

The HTTP response mentioned previously is designed to help implement long-running HTTP async APIs with Durable Functions. This pattern is sometimes referred to as the polling consumer pattern.

Both the client and server implementations of this pattern are built into the Durable Functions HTTP APIs.

Function app

You perform local testing for the RequestUserApproval function. The following error message displays:

'Timeout value of 00:10:00 exceeded by function: RequestUserApproval'

The same error message displays when you test the function in an Azure development environment when you run the following Kusto query:

FunctionAppLogs

| where FunctionName = = "RequestUserApproval"

References:

https://docs.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-http-features

asked 02/10/2024
S Muchobor
43 questions

Question 20

Report Export Collapse

HOTSPOT

You need to configure the Account Kind, Replication, and Storage tier options for the corporate website's Azure Storage account.

How should you complete the configuration? To answer, select the appropriate options in the dialog box in the answer area.

NOTE: Each correct selection is worth one point.


Microsoft AZ-204 image Question 20 86178 10022024015000000
Correct answer: Microsoft AZ-204 image answer Question 20 86178 10022024015000000
Explanation:

Account Kind: StorageV2 (general-purpose v2)

Scenario: Azure Storage blob will be used (refer to the exhibit). Data storage costs must be minimized.

General-purpose v2 accounts: Basic storage account type for blobs, files, queues, and tables. Recommended for most scenarios using Azure Storage.

Incorrect Answers:

BlockBlobStorage accounts: Storage accounts with premium performance characteristics for block blobs and append blobs. Recommended for scenarios with high transactions rates, or scenarios that use smaller objects or require consistently low storage latency.

General-purpose v1 accounts: Legacy account type for blobs, files, queues, and tables. Use general-purpose v2 accounts instead when possible.

Replication: Geo-redundant Storage

Scenario: Data must be replicated to a secondary region and three availability zones.

Geo-redundant storage (GRS) copies your data synchronously three times within a single physical location in the primary region using LRS. It then copies your data asynchronously to a single physical location in the secondary region.

Incorrect Answers:

Geo-zone-redundant storage (GZRS), but it would be more costly.

Storage tier: Cool

Data storage costs must be minimized.

Note: Azure storage offers different access tiers, which allow you to store blob object data in the most cost-effective manner. The available access tiers include:

Hot - Optimized for storing data that is accessed frequently.

Cool - Optimized for storing data that is infrequently accessed and stored for at least 30 days.

Reference:

https://docs.microsoft.com/en-us/azure/storage/common/storage-account-overview

https://docs.microsoft.com/en-us/azure/storage/common/storage-redundancy

https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-storage-tiers?tabs=azure-portal

asked 02/10/2024
ola adekanbi
41 questions
Total 377 questions
Go to page: of 38
Search

Related questions