exam questions

Exam AZ-400 All Questions

View all questions & answers for the AZ-400 exam

Exam AZ-400 topic 9 question 26 discussion

Actual exam question from Microsoft's AZ-400
Question #: 26
Topic #: 9
[All AZ-400 Questions]

DRAG DROP
-

You have an Azure subscription.

You have the standards shown in the following table.



You plan to use Azure Pipelines to build and release web apps.

You need to recommend a solution to build the pipelines. The solution must meet the following requirements:

• Ensure that all new pipelines meet the security requirements defined in Standard1.
• Ensure that the first stage of all new pipelines contains the software prerequisites defined in Standard2.
• Minimize administrative effort.

What should you use to implement each standard? To answer, drag the appropriate options to the correct standards. Each component 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.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
MrAZ105
7 months, 2 weeks ago
xtends templates: This allows you to define a base template and then "extend" it in specific pipelines. You can use the extends keyword to inherit and reuse predefined pipeline steps, including security checks or tasks, which ensures all pipelines follow the security standards. yaml extends: template: security-check-template.yml Include templates: You can also use the template keyword to reference and reuse a template within specific stages or jobs. This is useful for defining prerequisites like software installations in the first stage. yaml stages: - template: install-software-prerequisites.yml
upvoted 2 times
...
danisancho
9 months, 1 week ago
Answer is correct. https://learn.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops&pivots=templates-includes
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...