option
Questions
ayuda
daypo
search.php

ERASED TEST, YOU MAY BE INTERESTED ON test7

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
test7

Description:
mdkmdfklmlkmerwfp[l

Author:
klmewrfklmerkljm
Other tests from this author

Creation Date: 09/08/2024

Category: Others

Number of questions: 165
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements: ✑ The build must access an on-premises dependency management system. ✑ The build outputs must be stored as Server artifacts in Azure DevOps. ✑ The source code must be stored in a Git repository in Azure DevOps. Solution: Configure the build pipeline to use a Microsoft-hosted agent pool running the Windows Server 2019 with Visual Studio 2019 image. Include the Java Tool Installer task in the build pipeline. Does this meet the goal? yes no.
You have a project in Azure DevOps. You create the following YAML template named Template1.yml. steps: - script: npm install - script: yarn install - script: npm run compile You create the following pipeline named File1.yml. parameters: usersteps: - task: MyTask@1 - script: echo Done You need to ensure that Template1.yaml runs before File1.yml. How should you update File1.yml? A. parameters: usersteps: extends: template: template1.yml - task: MyTask@1 - script: echo Done B. template: template1.yml parameters: usersteps: - task: MyTask@1 - script: echo Done C. extends: template: templatel.yml parameters: usersteps: - task: MyTask@1 - script: echo Done D. parameters: usersteps: - template: templatel.yml - task: MyTask@1 - script: echo Done.
You have an Azure solution that contains a build pipeline in Azure Pipelines. You experience intermittent delays before the build pipeline starts. You need to reduce the time it takes to start the build pipeline. What should you do? A. Enable self-hosted build agents. B. Create a new agent pool. C. Split the build pipeline into multiple stages. D. Purchase an additional parallel job.
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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements: ✑ The build must access an on-premises dependency management system. ✑ The build outputs must be stored as Server artifacts in Azure DevOps. ✑ The source code must be stored in a Git repository in Azure DevOps. Solution: Con gure the build pipeline to use a Microsoft-hosted agent pool running a Linux image. Include the Java Tool Installer task in the build pipeline. Does this meet the goal? yes no.
You store source code in a Git repository in Azure Repos. You use a third-party continuous integration (CI) tool to control builds. What will Azure DevOps use to authenticate with the tool? A. certificate authentication B. a personal access token (PAT) C. a Shared Access Signature (SAS) token D. NTLM authentication.
You are configuring Azure Pipelines for three projects in Azure DevOps as shown in the following table. Which version control system should you recommend for each project? To answer, drag the appropriate version control systems to the correct projects. Each version control system 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. Project1 Project2 Project3.
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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements: ✑ The builds must access an on-premises dependency management system. ✑ The build outputs must be stored as Server artifacts in Azure DevOps. ✑ The source code must be stored in a Git repository in Azure DevOps. Solution: Configure an Octopus Tentacle on an on-premises machine. Use the Package Application task in the build pipeline. Does this meet the goal? yes no.
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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements: ✑ The builds must access an on-premises dependency management system. ✑ The build outputs must be stored as Server artifacts in Azure DevOps. The source code must be stored in a Git repository in Azure DevOps. Solution: Install and configure a self-hosted build agent on an on-premises machine. Configure the build pipeline to use the Default agent pool. Include the Java Tool Installer task in the build pipeline. Does this meet the goal? yes no.
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 need to recommend an integration strategy for the build process of a Java application. The solution must meet the following requirements: ✑ The builds must access an on-premises dependency management system. ✑ The build outputs must be stored as Server artifacts in Azure DevOps. ✑ The source code must be stored in a Git repository in Azure DevOps. Solution: Configure the build pipeline to use a Hosted VS 2019 agent pool. Include the Java Tool Installer task in the build pipeline. Does this meet the goal? yes no.
Your company uses a Git repository in Azure Repos to manage the source code of a web application. The master branch is protected from direct updates. Developers work on new features in the topic branches. Because of the high volume of requested features, it is di cult to follow the history of the changes to the master branch. You need to enforce a pull request merge strategy. The strategy must meet the following requirements: ✑ Consolidate commit histories. ✑ Merge the changes into a single commit. Which merge strategy should you use in the branch policy? A. squash merge B. fast-forward merge C. Git fetch D. no-fast-forward merge.
Your company uses cloud-hosted Jenkins for builds. You need to ensure that Jenkins can retrieve source code from Azure Repos. Which three actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. Create a webhook in Jenkins. B. Add the Team Foundation Server (TFS) plug-in to Jenkins. C. Add a personal access token to your Jenkins account. D. Create a personal access token (PAT) in your Azure DevOps account. E. Create a service hook in Azure DevOps.
Your company has four projects. The version control requirements for each project are shown in the following table. You plan to use Azure Repos for all the projects. Which version control system should you use for each project? To answer, drag the appropriate version control systems to the correct projects. Each version control system 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 Project 1 Project 2 Project 3 Project 4.
You are automating the build process for a Java-based application by using Azure DevOps. You need to add code coverage testing and publish the outcomes to the pipeline. What should you use? A. Bullseye Coverage B. JUnit C. JaCoCo D. MSTest.
You company uses Azure DevOps to deploy infrastructures to Azure. Pipelines are developed by using YAML. You execute a pipeline and receive the results in the web portal for Azure Pipelines as shown in the following exhibit. Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. one stage two stages three stages four stages five stages one job two jobs three jobs four jobs five jobs.
You are con guring Azure DevOps build pipelines. You plan to use hosted build agents. Which build agent pool should you use to compile each application type? To answer, drag the appropriate build agent pools to the correct application types. Each build agent pool 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. An application that runs on iOS An Internet Information Service (IIS) web application that runs in Docker.
You are automating the build process for a Java-based application by using Azure DevOps. You need to add code coverage testing and publish the outcomes to the pipeline. What should you use? A. Cobertura B. Bullseye Coverage C. MSTest D. Coverlet.
You have an existing build pipeline in Azure Pipelines. You need to use incremental builds without purging the environment between pipeline executions. What should you use? A. a self-hosted agent B. Microsoft-hosted parallel jobs C. a File Transform task.
You are designing YAML-based Azure pipelines for the apps shown in the following table. You need to configure the YAML strategy value for each app. The solution must minimize app downtime. Which value should you configure for each app? To answer, select the appropriate options in the answer area. canary rolling runonce canary rolling runonce.
You have a private project in Azure DevOps. You need to ensure that a project manager can create custom work item queries to report on the project's progress. The solution must use the principle of least privilege. To which security group should you add the project manager? A. Reader B. Project Collection Administrators C. Project Administrators D. Contributor.
Your company has a project in Azure DevOps for a new application. The application will be deployed to several Azure virtual machines that run Windows Server 2019. You need to recommend a deployment strategy for the virtual machines. The strategy must meet the following requirements: ✑ Ensure that the virtual machines maintain a consistent configuration. ✑ Minimize administrative effort to configure the virtual machines. What should you include in the recommendation? A. Azure Resource Manager templates and the PowerShell Desired State Configuration (DSC) extension for Windows B. Deployment YAML and Azure pipeline deployment groups C. Azure Resource Manager templates and the Custom Script Extension for Windows D. Deployment YAML and Azure pipeline stage templates.
You have an Azure DevOps project that uses many package feeds. You need to simplify the project by using a single feed that stores packages produced by your company and packages consumed from remote feeds. The solution must support public feeds and authenticated feeds. What should you enable in DevOps? A. Universal Packages B. upstream sources C. views in Azure Artifacts D. a symbol server.
Your company has two virtual machines that run Linux in a third-party public cloud. You plan to use the company's Azure Automation State Configuration implementation to manage the two virtual machines and detect configuration drift. You need to onboard the Linux virtual machines. You install PowerShell Desired State Configuration (DSC) on the virtual machines, and then run register.py. Which three actions should you perform next in sequence? To answer, move the actions from the list of actions to the answer area and arrange them in the correct order. Create a DSC meta configuration Copy the metaconfiguration to the virtual machines. Add the virtual machines as DSC nodes in Azure Automation Install Windows Managment Framework 5.1 on the virtual machines From the virtual machines ,run setdsclocalconfigurationmanager.py.
SIMULATION - You plan to deploy a runbook that will create Azure AD user accounts. You need to ensure that runbooks can run the Azure PowerShell cmdlets for Azure Active Directory. To complete this task, sign in to the Microsoft Azure portal. Azure Automation now ships with the Azure PowerShell module of version 0.8.6, which introduced the ability to non-interactively authenticate to Azure using OrgId (Azure Active Directory user) credential-based authentication. Using the steps below, you can set up Azure Automation to talk to Azure using this authentication type. Step 1: Find the Azure Active Directory associated with the Azure subscription to manage: 1. Log in to the Azure portal as the service administrator for the Azure subscription you want to manage using Azure Automation. You can find this user by logging in to the Azure portal as any user with access to this Azure subscription, then clicking Settings, then Administrators. 2. Note the name of the directory associated with the Azure subscription you want to manage. You can nd this directory by clicking Settings, then Subscriptions. Step 2: Create an Azure Active Directory user in the directory associated with the Azure subscription to manage: You can skip this step if you already have an Azure Active Directory user in this directory. and plan to use this OrgId to manage Azure. 1. In the Azure portal click on Active Directory service. 2. Click the directory name that is associated with this Azure subscription. 3. Click on the Users tab and then click the Add User button. 4. For type of user, select ג€New user in your organization.ג€ Enter a username for the user to create. 5. Fill out the user's pro le. For role, pick ג€User.ג€ Don't enable multi-factor authentication. Multi-factor accounts cannot be used with Azure Automation. 6. Click Create. 7. Jot down the full username (including part after @ symbol) and temporary password. Step 3: Allow this Azure Active Directory user to manage this Azure subscription. 1. Click on Settings (bottom Azure tab under StorSimple) 2. Click Administrators 3. Click the Add button. Type the full user name (including part after @ symbol) of the Azure Active Directory user you want to set up to manage Azure. For subscriptions, choose the Azure subscriptions you want this user to be able to manage. Click the check mark. Step 4: Con gure Azure Automation to use this Azure Active Directory user to manage this Azure subscription Create an Azure Automation credential asset containing the username and password of the Azure Active Directory user that you have just created. You can create a credential asset in Azure Automation by clicking into an Automation Account and then clicking the Assets tab, then the Add Setting button. Per me shume lexo pyetjen 24.
You are creating a container for an ASP.NET Core app. You need to create a Docker le le to build the image. The solution must ensure that the size of the image is minimized. How should you con gure the le? To answer, drag the appropriate values to the correct targets. Each value 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. FROM RUN FROM.
You are configuring the settings of a new Git repository in Azure Repos. You need to ensure that pull requests in a branch meet the following criteria before they are merged: ✑ Committed code must compile successfully. ✑ Pull requests must have a Quality Gate status of Passed in SonarCloud. Which policy type should you configure for each requirement? To answer, drag the appropriate policy types to the correct requirements. Each policy type 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. Committed code must compile successfully Pull requests must have a Quality Gate status of Passed in Sonar Cloud .
You use a Git repository in Azure Repos to manage the source code of a web application. Developers commit changes directly to the default branch. You need to implement a change management procedure that meets the following requirements: ✑ The default branch must be protected, and new changes must be built in the feature branches first. ✑ Changes must be reviewed and approved by at least one release manager before each merge. ✑ Changes must be brought into the default branch by using pull requests. What should you configure in Azure Repos? A. branch policies of the default branch B. Services in Project Settings C. Deployment pools in Project Settings D. branch security of the default branch.
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. Your company uses Azure DevOps to manage the build and release processes for applications. You use a Git repository for applications source control. You need to implement a pull request strategy that reduces the history volume in the master branch. Solution: You implement a pull request strategy that uses fast-forward merges. Does this meet the goal? yes no.
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. Your company uses Azure DevOps to manage the build and release processes for applications. You use a Git repository for applications source control. You need to implement a pull request strategy that reduces the history volume in the master branch. Solution: You implement a pull request strategy that uses squash merges. Does this meet the goal yes no.
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. Your company uses Azure DevOps to manage the build and release processes for applications. You use a Git repository for applications source control. You need to implement a pull request strategy that reduces the history volume in the master branch. Solution: You implement a pull request strategy that uses an explicit merge. Does this meet the goal? yes no.
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. Your company uses Azure DevOps to manage the build and release processes for applications. You use a Git repository for applications source control. You need to implement a pull request strategy that reduces the history volume in the master branch. Solution: You implement a pull request strategy that uses a three-way merge. Does this meet the goal? yes no.
You need to recommend a Docker container build strategy that meets the following requirements: ✑ Minimizes image sizes ✑ Minimizes the security surface area of the nal image What should you include in the recommendation? A. multi-stage builds B. PowerShell Desired State Con guration (DSC) C. Docker Swarm D. single-stage builds.
You plan to create an image that will contain a .NET Core application. You have a Dockerfile file that contains the following code. (Line numbers are included for reference only.)You need to ensure that the image is as small as possible when the image is built. Which line should you modify in the le? 1 3 4 7.
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. Your company has a project in Azure DevOps for a new web application. You need to ensure that when code is checked in, a build runs automatically. Solution: From the Triggers tab of the build pipeline, you select Batch changes while a build is in progress. Does this meet the goal? yes no.
HOTSPOT - You need to deploy Azure Kubernetes Service (AKS) to host an application. The solution must meet the following requirements: ✑ Containers must only be published internally. ✑ AKS clusters must be able to create and manage containers in Azure. What should you use for each requirement? To answer, select the appropriate options in the answer area. Azure Container Instances Azure Container Registry Dockerfile An Azure Active Directory (Azure AD) group An Azure Automation account An Azure service principal.
You have 50 Node.js-based projects that you scan by using WhiteSource. Each project includes Package.json, Package-lock.json, and Npm- shrinkwrap.json les. You need to minimize the number of libraries reports by WhiteSource to only the libraries that you explicitly reference. What should you do? A. Configure the File System Agent plug-in. B. Add a devDependencies section to Package-lock.json. C. Configure the Artifactory plug-in. D. Delete Package-lock.json.
Your company deploys applications in Docker containers. You want to detect known exploits in the Docker images used to provision the Docker containers. You need to integrate image scanning into the application lifecycle. The solution must expose the exploits as early as possible during the application lifecycle. What should you configure? A. a task executed in the continuous integration pipeline and a scheduled task that analyzes the image registry B. manual tasks performed during the planning phase and the deployment phase C. a task executed in the continuous deployment pipeline and a scheduled task against a running production container D. a task executed in the continuous integration pipeline and a scheduled task that analyzes the production container.
Your company has a hybrid cloud between Azure and Azure Stack. The company uses Azure DevOps for its full CI/CD pipelines. Some applications are built by using Erlang and Hack. You need to ensure that Erlang and Hack are supported as part of the build strategy across the hybrid cloud. The solution must minimize management overhead. What should you use to execute the build pipeline? A. a Microsoft-hosted agent B. Azure DevOps self-hosted agents on Azure DevTest Labs virtual machines. C. Azure DevOps self-hosted agents on Hyper-V virtual machines D. Azure DevOps self-hosted agents on virtual machines that run on Azure Stack.
Your company has an Azure DevOps project, The source code for the project is stored in an on-premises repository and uses on an on-premises build server. You plan to use Azure DevOps to control the build process on the build server by using a self-hosted agent. You need to implement the self-hosted agent. You download and install the agent on the build server. Which two actions should you perform next? Each correct answer presents part of the solution. A. From Azure, create a shared access signature (SAS). B. From the build server, create a certificate, and then upload the certificate to Azure Storage. C. From the build server, create a certificate, and then upload the certificate to Azure Key Vault. D. From DevOps, create a personal access token (PAT). E. From the build server, run con g.cmd.
You have an Azure subscription that contains an Azure Active Directory (Azure AD) tenant. You are con guring a build pipeline in Azure Pipelines that will include a task named Task1. Task1 will authenticate by using an Azure AD service principal. Which three values should you con gure for Task1? Each correct answer presents part of the solution. A. the tenant ID B. the subscription ID C. the client secret D. the app ID E. the object ID.
You are deploying a new application that uses Azure virtual machines. You plan to use the Desired State Con guration (DSC) extension on the virtual machines. You need to ensure that the virtual machines always have the same Windows feature installed. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Configure the DSC extension on the virtual machine Create a YAML configuration file Load the file to Azure Blob storage Configure the Custom Script Extension on the virtual machines. Load the file to Azure Files Create a PowerShell configuration le.
You need to execute inline testing of an Azure DevOps pipeline that uses a Docker deployment model. The solution must prevent the results from being published to the pipeline. What should you use for the inline testing? A. a single stage Docker le B. an Azure Kubernetes Service (AKS) pod C. a multi-stage Docker le D. a Docker Compose le.
You are designing an Azure DevOps strategy for your company's development team. You suspect that the team's productivity is low due to accumulate technical debt. You need to recommend a metric to assess the amount of the team's technical debt. What should you recommend? A. the number of code modules in an application B. the number of unit test failures C. the percentage of unit test failures D. the percentage of overall time spent on rework.
You are developing an open source solution that uses a GitHub repository. You create a new public project in Azure DevOps. You plan to use Azure Pipelines for continuous build. The solution will use the GitHub Checks API. Which authentication type should you use? A. OpenID B. GitHub App C. a personal access token (PAT) D. SAML.
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. Your company has a project in Azure DevOps for a new web application. You need to ensure that when code is checked in, a build runs automatically. Solution: From the Continuous deployment trigger settings of the release pipeline, you enable the Pull request trigger setting. Does this meet the goal? yes no.
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. Your company has a project in Azure DevOps for a new web application. You need to ensure that when code is checked in, a build runs automatically. Solution: From the Pre-deployment conditions settings of the release pipeline, you select After stage. Does this meet the goal? yes no.
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. Your company has a project in Azure DevOps for a new web application. You need to ensure that when code is checked in, a build runs automatically. Solution: From the Pre-deployment conditions settings of the release pipeline, you select Batch changes while a build is in progress. Does this meet the goal? yes no.
You have an Azure DevOps release pipeline as shown in the following exhibit. You need to complete the pipeline to configure OWASP ZAP for security testing. Which five Azure CLI tasks should you add in sequence? To answer, move the tasks from the list of tasks to the answer area and arrange them in the correct order. Convert Report Format Build machine image Publish Test Results Destroy OWASP Container Call the Baseline Scan Docker CLI installer Download the file.
You company uses a Git source-code repository. You plan to implement GitFlow as a work ow strategy. You need to identify which branch types are used for production code and preproduction code in the strategy. Which branch type should you identify for each code type? To answer, select the appropriate options in the answer area. Master Feature Develop Master Feature Develop.
You have a build pipeline in Azure Pipelines that uses different jobs to compile an application for 10 different architectures. The build pipeline takes approximately one day to complete. You need to reduce the time it takes to execute the build pipeline. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. Move to a blue/green deployment pattern B. Create a deployment group C. Increase the number of parallel jobs D. Reduce the size of the repository E. Create an agent pool.
You are creating a build pipeline in Azure Pipelines. You de ne several tests that might fail due to third-party applications. You need to ensure that the build pipeline completes successfully if the third-party applications are unavailable. What should you do? A. Configure the build pipeline to use parallel jobs B. Configure aky tests C. Increase the test pass percentage D. Add the Requirements quality widget to your dashboard.
You have an Azure subscription that contains a resources group named RG1. RG1 contains the following resources: ✑ Four Azure virtual machines that run Windows Server and have Internet Information Services (IIS) installed. ✑ SQL Server on an Azure virtual machine. ✑ An Azure Load Balancer. You need to deploy an application to the virtual machines in RG1 by using Azure Pipelines. Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Create an agent pool Add the Puppet Agent extension to the virtual machines Add the configure a deployment group job for the pipeline Add the Azure Pipelines Agent extension to the virtual machines Create a deployment group Execute the pipeline.
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. Your company has a project in Azure DevOps for a new web application. You need to ensure that when code is checked in, a build runs automatically. Solution: From the Triggers tab of the build pipeline, you select Enable continuous integration. Does this meet the goal? yes no.
You have an Azure DevOps organization named Contoso and an Azure DevOps project named Project1. You plan to use Microsoft-hosted agents to build container images that will host full Microsoft .NET Framework apps in a YAML pipeline in Project1. What are two possible virtual machine images that you can use for the Microsoft-hosted agent pool? Each correct answer presents a complete solution. A. vs2017-win2016 B. ubuntu-16.04 C. win1803 D. macOS-10.13 E. vs.2015-win2012r2.
You currently use JIRA, Jenkins, and Octopus as part of your DevOps processes. You plan to use Azure DevOps to replace these tools. Which Azure DevOps service should you use to replace each tool? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Boards Build pipelines Release pipelines Repos Boards Build pipelines Release pipelines Boards Build pipelines Release pipelines.
Your company has a project in Azure DevOps. You need to ensure that when there are multiple builds pending deployment, only the most recent build is deployed. What should you use? A. deployment conditions B. deployment queue settings C. release gates D. pull request triggers.
Your company develops a client banking application that processes a large volume of data. Code quality is an ongoing issue for the company. Recently, the code quality has deteriorated because of an increase in time pressure on the development team. You need to implement static code analysis. During which phase should you use static code analysis? A. integration testing B. staging C. production release D. build.
You have a project in Azure DevOps that uses packages from multiple public feeds. Some of the feeds are unreliable. You need to consolidate the packages into a single feed. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Modify the configuration files to reference the Azure Artifacts feed Run an initial package restore Create a Micrtosoft Visual Studio project that includes all the packages Create an Azure Artifacts feed that uses upstream sources Create a NuGet package. Create a npm package.
You have the Azure DevOps pipeline shown in the following exhibit.Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. 0 1 4 0 1 4.
SIMULATION - You have an Azure function hosted in an App Service plan named az400-123456789-func1. You need to configure az400-123456789-func1 to upgrade the functions automatically whenever new code is committed to the master branch of https:// github.com/Azure-Samples/functions-quickstart. To complete this task, sign in to the Microsoft Azure portal. Correct Answer: See explanation below. 1. Open Microsoft Azure Portal 2. Log into your Azure account, select App Services in the Azure portal left navigation, and then select configure az400-123456789-func1. 3. On the app page, select Deployment Center in the left menu. 4. On the Build provider page, select Azure Pipelines (Preview), and then select Continue. 5. On the Configure page, in the Code section: For GitHub, drop down and select the Organization, Repository, and Branch you want to deploy continuously. 6. Select Continue. 7. On the Test page, choose whether to enable load tests, and then select Continue. 8. Depending on your App Service plan pricing tier, you may see a Deploy to staging page. Choose whether to enable deployment slots, and then select Continue. 9. After you configure the build provider, review the settings on the Summary page, and then select Finish. Reference: https://docs.microsoft.com/en-us/azure/app-service/deploy-continuous-deployment Per me shume info lexo pyetjen 60.
You need to use Azure Automation State Configuration to manage the ongoing consistency of virtual machine configurations. Which five actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. Select and Place Onboard the virtual machines to Azure State Con guration Check the compliance status of the node. Create a management group Assign the node configuration. Compile a configuration into a node configuration Upload a con guration to Azure Automation State Con guration. Assign tags to the virtual machines.
You are developing an application. The application source has multiple branches. You make several changes to a branch used for experimentation. You need to update the main branch to capture the changes made to the experimentation branch and override the history of the Git repository. Which Git option should you use? A. Rebase B. Fetch C. Merge D. Push.
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 use Azure Pipelines to build and test a React.js application. You have a pipeline that has a single job. You discover that installing JavaScript packages from npm takes approximately five minutes each time you run the pipeline. You need to recommend a solution to reduce the pipeline execution time. Solution: You recommend defining a container job that uses a custom container that has the JavaScript packages preinstalled. Does this meet the goal? yes no.
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 use Azure Pipelines to build and test a React.js application. You have a pipeline that has a single job. You discover that installing JavaScript packages from npm takes approximately five minutes each time you run the pipeline. You need to recommend a solution to reduce the pipeline execution time. Solution: You recommend enabling pipeline caching. Does this meet the goal? yes no.
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 use Azure Pipelines to build and test a React.js application. You have a pipeline that has a single job. You discover that installing JavaScript packages from npm takes approximately five minutes each time you run the pipeline. You need to recommend a solution to reduce the pipeline execution time. Solution: You recommend enabling parallel jobs for the pipeline. Does this meet the goal? yes no.
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 plan to create a release pipeline that will deploy Azure resources by using Azure Resource Manager templates. The release pipeline will create the following resources: ✑ Two resource groups ✑ Four Azure virtual machines in one resource group ✑ Two Azure SQL databases in other resource group You need to recommend a solution to deploy the resources. Solution: Create two standalone templates, each of which will deploy the resources in its respective group. Does this meet the goal? yes no.
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 plan to create a release pipeline that will deploy Azure resources by using Azure Resource Manager templates. The release pipeline will create the following resources: ✑ Two resource groups ✑ Four Azure virtual machines in one resource group ✑ Two Azure SQL databases in other resource group You need to recommend a solution to deploy the resources. Solution: Create a single standalone template that will deploy all the resources. Does this meet the goal? yes no.
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 have an Azure DevOps project. Your build process creates several artifacts. You need to deploy the artifacts to on-premises servers. Solution: You deploy a Kubernetes cluster on-premises. You deploy a Helm agent to the cluster. You add a Download Build Artifacts task to the deployment pipeline. Does this meet the goal? yes no.
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 have an Azure DevOps project. Your build process creates several artifacts. You need to deploy the artifacts to on-premises servers. Solution: You deploy a Docker build to an on-premises server. You add a Download Build Artifacts task to the deployment pipeline. Does this meet the goal? yes no.
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 have an Azure DevOps project. Your build process creates several artifacts. You need to deploy the artifacts to on-premises servers. Solution: You deploy an Azure self-hosted agent to an on-premises server. You add a Copy and Publish Build Artifacts task to the deployment pipeline. Does this meet the goal? yes no.
You have a project in Azure DevOps named Project1. Project1 contains a pipeline that builds a container image named Image1 and pushes Image1 to an Azure container registry named ACR1. Image1 uses a base image stored in Docker Hub. You need to ensure that Image1 is updated automatically whenever the base image is updated. What should you do? A. Enable the Azure Event Grid resource provider and subscribe to registry events. B. Add a Docker Hub service connection to Azure Pipelines. C. Create and run an Azure Container Registry task. D. Create a service hook in Project1.
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 have an Azure DevOps project. Your build process creates several artifacts. You need to deploy the artifacts to on-premises servers. Solution: You deploy an Octopus Deploy server. You deploy a polled Tentacle agent to an on-premises server. You add an Octopus task to the deployment pipeline. Does this meet the goal? yes no.
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 plan to create a release pipeline that will deploy Azure resources by using Azure Resource Manager templates. The release pipeline will create the following resources: ✑ Two resource groups ✑ Four Azure virtual machines in one resource group ✑ Two Azure SQL databases in other resource group You need to recommend a solution to deploy the resources. Solution: Create a main template that will deploy the resources in one resource group and a nested template that will deploy the resources in the other resource group. Does this meet the goal? yes no.
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 plan to create a release pipeline that will deploy Azure resources by using Azure Resource Manager templates. The release pipeline will create the following resources: ✑ Two resource groups ✑ Four Azure virtual machines in one resource group ✑ Two Azure SQL databases in other resource group You need to recommend a solution to deploy the resources. Solution: Create a main template that has two linked templates, each of which will deploy the resources in its respective group. Does this meet the goal? yes no.
DRAG DROP - You are building an application that has the following assets: ✑ Source code ✑ Logs from automated tests and builds ✑ Large and frequently updated binary assets ✑ A common library used by multiple applications Where should you store each asset? To answer, drag the appropriate Azure services to the correct assets. Each service may be used once. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point. Source code: A common library used by multiple applications Logs from automated tests and builds Large and frequently updated binary assets.
You plan to share packages that you wrote, tested, validated, and deployed by using Azure Artifacts. You need to release multiple builds of each package by using a single feed. The solution must limit the release of packages that are in development. What should you use? A. local symbols B. views C. global symbols D. upstream sources.
You have a project in Azure DevOps named Project1. Project1 contains a build pipeline named Pipe1 that builds an application named App1. You have an agent pool named Pool1 that contains a Windows Server 2019-based self-hosted agent. Pipe1 uses Pool1. You plan to implement another project named Project2. Project2 will have a build pipeline named Pipe2 that builds an application named App2. App1 and App2 have con icting dependencies. You need to minimize the possibility that the two build pipelines will con ict with each other. The solution must minimize infrastructure costs. What should you do? A. Add another self-hosted agent. B. Add a Docker Compose task to the build pipelines. C. Change the self-hosted agent to use Red Hat Enterprise Linux (RHEL) 8. D. Create two container jobs.
SIMULATION - You plan to store signed images in an Azure Container Registry instance named az4009940427acr1. You need to modify the SKU for az4009940427acr1 to support the planned images. The solution must minimize costs. To complete this task, sign in to the Microsoft Azure portal. Simulation.
You manage build pipelines and deployment pipelines by using Azure DevOps. Your company has a team of 500 developers. New members are added continually to the team. You need to automate the management of users and licenses whenever possible. Which task must you perform manually? A. modifying group memberships B. adding users C. assigning entitlements D. procuring licenses.
Your company uses Team Foundation Server 2013 (TFS 2013). You plan to migrate to Azure DevOps. You need to recommend a migration strategy that meets the following requirements: ✑ Preserves the dates of Team Foundation Version Control changesets ✑ Preserves the changed dates of work items revisions Minimizes migration effort - ✑ Migrates all TFS artifacts What should you recommend? To answer, select the appropriate options in the answer area. Install the TFS Java SDK Upgrade TFS to the most recent RTW release. Upgrade to the most recent version of PowerShell Core Copy the assets manually Use public API-based tools Use the TFS Database Import Service Use the TFS Integration Platform.
Your company is building a new solution in Java. The company currently uses a SonarQube server to analyze the code of .NET solutions. You need to analyze and monitor the code quality of the Java solution. Which task types should you add to the build pipeline? A. Octopus B. Chef C. CocoaPods D. Gradle.
Your company is building a new solution in Java. The company currently uses a SonarQube server to analyze the code of .NET solutions. You need to analyze and monitor the code quality of the Java solution. Which task types should you add to the build pipeline? A. Maven B. CocoaPods C. Xcode D. Gulp.
You have an Azure subscription named Subscription1 that contains a custom Azure policy named Policy1. Policy1 is an audit policy that monitors naming convention compliance for the resources deployed to Subscription1. You have a pipeline named Pipeline1 in Azure Pipelines. Pipeline1 deploys Azure Resource Manager (ARM) resources to Subscription1. You need to ensure that the resources deployed by Pipeline1 comply with Policy1. What should you add to Pipeline1? A. a pre-deployment task that runs a security and compliance assessment B. a post-deployment task that runs a security and compliance assessment C. an ARM template deployment task to assign Policy1 to Subscription1 D. an ARM template deployment task to deploy Policy1 to Subscription1.
You plan to use Desired State Configuration (DSC) to maintain the configuration state of virtual machines that run Windows Server. You need to perform the following: ✑ Install Internet Information Services (IIS) on the virtual machines. ✑ Update the default home page of the IIS web server. How should you configure the DSC configuration le? To answer, select the appropriate options in the answer area. Service WindowsFeature WindowsOptionalFeature WindowsProcess Archive File Package Scripts.
You have a project in Azure DevOps. You need to push notifications about pull requests to a Microsoft Teams channel. The solution must minimize development effort. What should you do? A. Install the Azure Pipelines app for Teams and con gure a subscription to receive noti cations in the channel. B. Use Azure Automation to connect to the Azure DevOps REST API and send messages to Teams. C. Install the Azure Repos app for Teams and configure a subscription to receive notifications in the channel. D. Use an Azure function to connect to the Azure DevOps REST API and send messages to Teams.
You are creating a YAML-based Azure pipeline to deploy an Azure Data Factory instance that has the following requirements: ✑ If a Data Factory instance exists already, the instance must be overwritten. ✑ No other resources in a resource group named Fabrikam must be affected. How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Create Or Update Resource Group Select Resource Group Start Complete Incremental Validation Only.
You have an Azure DevOps project that produces Node Package Manager (npm) packages. Multiple projects consume the packages. You need to configure Azure Artifacts to ensure that both the latest and pre-release versions of the packages are available for consumption.What should you do? A. Create two feed views named @prerelease and @release, Set @release as the default view. Configure a release pipeline that tags the packages as release after successful testing. B. Create a feed view named @prerelease. Configure a release pipeline that tags the packages as release after successful testing. C. Create two feed views named @prerelease and @default. Configure a release pipeline that promotes a package to the @default view after successful testing. D. Create two feed views named @prerelease and @release. Set @release as the default view. Configure a release pipeline that promotes a package to the @release view after successful testing.
You have an Azure subscription that contains the resources shown in the following table.Project produces npm packages that are published to Feed1. Feed1 is consumed by multiple projects. You need to ensure that only tested packages are available for consumption. The solution must minimize development effort.What should you do? A. Create a feed view named @release and set @release as the default view. After the npm packages test successfully, con gure a release pipeline that promotes a package to the @release view. B. Create a feed view named @release and set @release as the default view. After the npm packages test successfully, configure a release pipeline that tags the packages as release. C. Create a feed view named @default. After the npm packages test successfully, configure a release pipeline that tags the packages as release. D. Create a feed view named @default. After the npm packages test successfully, configure a release pipeline that promotes a package to the @default view.
Your company has an Azure DevOps project that produces Node Package Manager (npm) packages. Multiple projects consume the packages.You need to minimize the amount of disk space used by older packages in Azure Artifacts. A. the retention settings of the project’s release B. the retention settings of the project’s pipeline C. the retention settings of the project’s tests D. the retention settings of the company pipeline.
You have an Azure DevOps pipeline that is used to deploy a Node.js app. You need to ensure that the dependencies are cached between builds. How should you configure the deployment YAML? To answer, drag the appropriate values to the correct targets. Each value 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. always () build.sh eq (variables.CACHE_RESTORED, 'true' ) integrationtest.sh ne (variables.CACHE_RESTORED, 'true') npm install.
You manage the Git repository for a large enterprise application. You need to minimize the data size of the repository. How should you complete the commands? To answer, select the appropriate options in the answer area. aggressive auto force no-prune merge prune rebase reset.
SIMULATION - You plan to deploy a template named D:\Deploy.json to a resource group named Deploy-lod123456789. You need to modify the template to meet the following requirements, and then to deploy the template: ✑ The address space must be reduced to support only 256 total IP addresses. ✑ The subnet address space must be reduced to support only 64 total IP addresses. To complete this task, sign in to the Microsoft Azure portal. Correct Answer: See explanation below. 1. Sign in to the portal. 2. Choose template Deploy-lod123456789 3. Select Edit template, and then paste your JSON template code into the code window. 4. Change the ASddressPre xes to 10.0.0.0/24 in order to support only 256 total IP addresses. addressSpace":{"addressPre xes": ["10.0.0.0/24"]}, 5. Change the rstSubnet addresspre x to 10.0.0.0/26 to support only 64 total IP addresses. "subnets":[ { "name":" rstSubnet", "properties":{ "addressPre x":"10.0.0.0/24" } 6. Select Save. 7. Select Edit parameters, provide values for the parameters that are shown, and then select OK. 8. Select Subscription. Choose the subscription you want to use, and then select OK. 9. Select Resource group. Choose an existing resource group or create a new one, and then select OK. 10. Select Create. A new tile on the dashboard tracks the progress of your template deployment .
SIMULATION - You need to con gure an Azure web app named az400-123456789-main to contain an environmental variable named `MAX_ITEMS`. The environmental variable must have a value of 50. To complete this task, sign in to the Microsoft Azure portal. Correct Answer: See explanation below. 1. In the Azure portal, navigate to the az400-123456789-main app's management page. In the app's left menu, click Con guration > Application settings. 2. Click New Application settings 3. Enter the following: ✑ Name: MAX_ITEMS ✑ Value: 50 .
You provision an Azure Kubernetes Service (AKS) cluster that has RBAC enabled. You have a Helm chart for a client application. You need to configure Helm and Tiller on the cluster and install the chart. Which three commands should you recommend be run in sequence? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order. helm install kubectl create helm completion helm init helm serve.
Your company builds a multi-tier web application. You use Azure DevOps and host the production application on Azure virtual machines. Your team prepares an Azure Resource Manager template of the virtual machine that you will use to test new features. You need to create a staging environment in Azure that meets the following requirements: ✑ Minimizes the cost of Azure hosting ✑ Provisions the virtual machines automatically ✑ Uses the custom Azure Resource Manager template to provision the virtual machines What should you do? A. In Azure Cloud Shell, run Azure CLI commands to create and delete the new virtual machines in a staging resource group. B. In Azure DevOps, configure new tasks in the release pipeline to deploy to Azure Cloud Services. C. From Azure Cloud Shell, run Azure PowerShell commands to create and delete the new virtual machines in a staging resource group. D. In Azure DevOps, configure new tasks in the release pipeline to create and delete the virtual machines in Azure DevTest Labs.
You are implementing an Azure DevOps strategy for mobile devices using App Center. You plan to use distribution groups to control access to releases. You need to create the distribution groups shown in the following table. Which type of distribution group should you use for each group? To answer, drag the appropriate group types to the correct locations. Each group type 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. Group 1 Group 2 Group 3.
SIMULATION - You need to ensure that the https://contoso.com/statushook webhook is called every time a repository named az400123456789acr1 receives a new version of an image named dotnetapp. To complete this task, sign in to the Microsoft Azure portal. Correct Answer: See explanation below. 1. Sign in to the Azure portal. 2. Navigate to the container registry az400123456789acr1. 3. Under Services, select Webhooks. 4. Select the existing webhook https://contoso.com/statushook, and double-click on it to get its properties. 5. For Trigger actions select image push Example web hook: .
You need to create deployment files for an Azure Kubernetes Service (AKS) cluster. The deployments must meet the provisioning storage requirements shown in the following table.Which resource type should you use for each deployment? To answer, select the appropriate options in the answer area. driver: secrets-store.csi.k8s.io blobfuse-flexvol provisioner: kubernetes.io/azure-disk provisioner: kubernetes.io/azure- file driver: secrets-store.csi.k8s.io blobfuse-flexvol provisioner: kubernetes.io/azure-disk provisioner: kubernetes.io/azure- file driver: secrets-store.csi.k8s.io.
Your company uses Azure DevOps to manage the build and release processes for applications. You use a Git repository for applications source control. You plan to create a new branch from an existing pull request. Later, you plan to merge the new branch and the target branch of the pull request. You need to use a pull request action to create the new branch. The solution must ensure that the branch uses only a portion of the code in the pull request. Which pull request action should you use? A. Set as default branch B. Approve with suggestions C. Cherry-pick D. Reactivate E. Revert.
You manage the Git repository for a large enterprise application. During the development of the application, you use a le named Con g.json. You need to prevent Con g.json from being committed to the source control whenever changes to the application are committed. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Delete and recreate the repository Run the git reflog expire command Add Config.json to the .gitignore file Add Config.json to the .gitignore file Run the git commit command.
You are designing a build pipeline in Azure Pipelines. The pipeline requires a self-hosted agent. The build pipeline will run once daily and will take 30 minutes to complete. You need to recommend a compute type for the agent. The solution must minimize costs. What should you recommend? A. an Azure Kubernetes Service (AKS) cluster B. Azure Container Instances C. an Azure virtual machine scale set D. Azure virtual machines.
You are nalizing a release in GitHub. You need to apply the following labels to the release: ✑ Name ✑ Email ✑ Release v3.0 ✑ Release date How should you complete the git command? To answer, select the appropriate options in the answer area. add commit push tag -a -b -c -a -b -m.
You have a project in Azure DevOps. You have an Azure Resource Group deployment project in Microsoft Visual Studio that is checked in to the Azure DevOps project. You need to create a release pipeline that will deploy resources by using Azure Resource Manager templates. The solution must minimize administrative effort. Which task type should you include in the solution? A. Azure Cloud Service Deployment B. Azure RM Web App Deployment C. Azure PowerShell D. Azure App Service Manage.
Your company has a project in Azure DevOps. You plan to create a release pipeline that will deploy resources by using Azure Resource Manager templates. The templates will reference secrets stored in Azure Key Vault. You need to recommend a solution for accessing the secrets stored in the key vault during deployments. The solution must use the principle of least privilege. What should you include in the recommendation? To answer, drag the appropriate configurations to the correct targets. Each configuration 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. Restrict access to delete the key vault Resttric access to the secrets in Key Vault by using.
As part of your application build process, you need to deploy a group of resources to Azure by using an Azure Resource Manager template located on GitHub. Which three action should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Set the template parameters Create a package Create a release pipeline Create a job agent Add an Azure Resource Group Deployment task .
You have an Azure DevOps project that contains a release pipeline and a Git repository. When a new code revision is committed to the repository, a build and release is triggered. You need to ensure that release information for the pipeline is added automatically to the work items associated to the Git commit. What should you do? A. Modify the Integrations options for the pipeline. B. Modify the post-deployment conditions for the last stage of the pipeline. C. Add an agentless job to the pipeline. D. Modify the service hooks for the project.
SIMULATION - You plan to add a new web farm that will be published by using an IP address of 10.0.0.5. You need to allow tra c from the web farm to an Azure Database for MySQL server named az400-123456789-mysql. To complete this task, sign in to the Microsoft Azure portal. Server-level rewall rules can be used to manage access to an Azure Database for MySQL Server from a speci ed IP address or a range of IP addresses. Create a server-level rewall rule in the Azure portal 1. On the MySQL server page, under Settings heading, click Connection Security to open the Connection Security page for the Azure Database for MySQL. 2. In the rewall rules for the Azure Database for MySQL, you can specify a single IP address or a range of addresses. If you want to limit the rule to a single IP address, type the same address in the Start IP and End IP elds. Opening the rewall enables administrators, users, and application to access any database on the MySQL server to which they have valid credentials. 3. Click Save on the toolbar to save this server-level rewall rule. Wait for the con rmation that the update to the rewall rules is successful. Reference:.
Your company has a release pipeline in an Azure DevOps project. You plan to deploy to an Azure Kubernetes Services (AKS) cluster by using the Helm package and deploy task. You need to install a service in the AKS namespace for the planned deployment. Which service should you install? A. Azure Container Registry B. Chart C. Kubectl D. Tiller.
SIMULATION - You need to create a virtual machine template in an Azure DevTest Labs environment named az400-123456789-dtl1. The template must be based on Windows Server 2019 Datacenter. Virtual machines created from the template must include the selenium tool and the Google Chrome browser. To complete this task, sign in to the Microsoft Azure portal. Correct Answer: See explanation below. 1. Open Microsoft Azure Portal 2. Select All Services, and then select DevTest Labs in the DEVOPS section. 3. From the list of labs, select the az400-123456789-dtl1 lab. 4. On the home page for your lab, select + Add on the toolbar. 5. Select the Windows Server 2019 Datacenter base image for the VM. 6. Select automation options at the bottom of the page above the Submit button. 7. You see the Azure Resource Manager template for creating the virtual machine. 8. The JSON segment in the resources section has the de nition for the image type you selected earlier .
You are configuring a release pipeline in Azure DevOps as shown in the exhibit.Use the drop-down menus to select the answer choice that answers each question based on the information presented in the graphic. NOTE: Each correct selection is worth one point. 5 The Internal Review stage.
Your company plans to deploy an application to the following endpoints: ✑ Ten virtual machines hosted in Azure ✑ Ten virtual machines hosted in an on-premises data center environment All the virtual machines have the Azure Pipelines agent. You need to implement a release strategy for deploying the application to the endpoints. What should you recommend using to deploy the application to the endpoints? To answer, drag the appropriate components to the correct endpoints. 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. Ten virtual machines hosted in Azure Ten virtual machines hosted in an on-permises data center environment.
You plan to use Terraform to deploy an Azure resource group from a Windows system. You need to install the required frameworks to support the planned deployment. Which two frameworks should you install? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. Vault B. Terratest C. Node.js D. Yeoman E. Tiller.
SIMULATION - You plan to implement a CI/CD strategy for an Azure Web App named az400-123456789-main. You need to configure a staging environment for az400-123456789-main. To complete this task, sign in to the Microsoft Azure portal. Add a slot - 1. In the Azure portal, search for and select App Services and select your app az400-123456789-main. 2. In the left pane, select Deployment slots > Add Slot. 3. In the Add a slot dialog box, give the slot a name, and select whether to clone an app configuration from another deployment slot. Select Add to continue. 4. After the slot is added, select Close to close the dialog box. The new slot is now shown on the Deployment slots page. .
SIMULATION - You have several apps that use an Azure SQL Database named db1. You need to ensure that queries to db1 are tuned by Azure over time. The solution must only apply to db1. To complete this task, sign in to the Microsoft Azure portal. 1. To enable automatic tuning on a single database, navigate to the database in the Azure portal and select Automatic tuning. 2. Select the automatic tuning options you want to enable and select Apply. Note: Individual automatic tuning settings can be separately configured for each database. You can manually configure an individual automatic tuning option, or specify that an option inherits its settings from the server.
HOTSPOT - You use Azure Pipelines to manage the build and deployment of apps. You are planning the release strategies for a new app. You need to choose strategies for the following scenarios: Releases will be made available to users who are grouped by their tolerance for software faults. ✑ Code will be deployed to enable functionality that will be available in later releases of the app. ✑ When a new release occurs, the existing deployment will remain active to minimize recovery time if a return to the previous version is required. Which strategy should you choose for each scenario? To answer, select the appropriate options in the answer area. Progressive exposure Blue/green Feature flags Progressive exposure Blue/green Feature flags Progressive exposure Blue/green Feature flags .
You have a project in Azure DevOps. You need to associate an automated test to a test case. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Debug the project Create a test project Create a work item Check in a project to the Azure DevOps repository Add the automated test to a build pipeline.
You have an Azure Kubernetes Service (AKS) cluster. You need to deploy an application to the cluster by using Azure DevOps. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Create a service account in the cluster Create a service principle in Azure Active Directory (Azure AD) Add an Azure Function App for the Container task to the deployment pipeline Add a Helm package and deploy a task to the deployment pipeline Add a Docker Compose task to the deployment pipeline. Configure RBAC roles in the cluster.
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 have an approval process that contains a condition. The condition requires that releases be approved by a team leader before they are deployed. You have a policy stating that approvals must occur within eight hours. You discover that deployment fail if the approvals take longer than two hours. You need to ensure that the deployments only fail if the approvals take longer than eight hours. Solution: From Post-deployment conditions, you modify the Time between re-evaluation of gates option. Does this meet the goal? yes no.
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 have an approval process that contains a condition. The condition requires that releases be approved by a team leader before they are deployed. You have a policy stating that approvals must occur within eight hours. You discover that deployment fail if the approvals take longer than two hours. You need to ensure that the deployments only fail if the approvals take longer than eight hours. Solution: From Pre-deployment conditions, you modify the Time between re-evaluation of gates option. Does this meet the goal? yes no.
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 have an approval process that contains a condition. The condition requires that releases be approved by a team leader before they are deployed. You have a policy stating that approvals must occur within eight hours. You discover that deployment fail if the approvals take longer than two hours. You need to ensure that the deployments only fail if the approvals take longer than eight hours. Solution: From Pre-deployment conditions, you modify the Timeout setting for pre-deployment approvals. Does this meet the goal? yes no.
You are defining release strategies for two applications as shown in the following table. Which release strategy should you use for each application? To answer, drag the appropriate release strategies to the correct applications. Each release strategy 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. APP1 APP2.
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 have an approval process that contains a condition. The condition requires that releases be approved by a team leader before they are deployed. You have a policy stating that approvals must occur within eight hours. You discover that deployment fail if the approvals take longer than two hours. You need to ensure that the deployments only fail if the approvals take longer than eight hours. Solution: From Post-deployment conditions, you modify the Timeout setting for post-deployment approvals. Does this meet the goal? yes no.
You have an Azure DevOps organization named Contoso. You have 10 Azure virtual machines that run Windows Server 2019. The virtual machines host an application that you build and deploy by using Azure Pipelines. Each virtual machine has the Web Server (IIS) role installed and con gured. You need to ensure that the web server con gurations on the virtual machines is maintained automatically. The solution must provide centralized management of the con guration settings and minimize management overhead. Which four actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. Create an Azure Automation account. Install the custom Desired State Configuration (DSC) extension on the virtual machines Create a .zip file and upload it to Azure Blob Storage Onboard the virtual machines to the Azure Automation account Compile the Desired State Configuration (DSC) configuration.
You have a free tier of an Azure DevOps organization named Contoso. Contoso contains 10 private projects. Each project has multiple jobs with no dependencies. The build process requires access to resource les located in an on-premises le system. You frequently run the jobs on five self-hosted agents but experience long build times and frequently queued builds. You need to minimize the number of queued builds and the time it takes to run the builds. What should you do? A. Configure the pipelines to use the Microsoft-hosted agents. B. Register additional self-hosted agents. C. Purchase self-hosted parallel jobs. D. Purchase Microsoft-hosted parallel jobs.
SIMULATION - You need to ensure that an Azure web app named az400-123456789-main supports rolling upgrades. The solution must ensure that only 10 percent of users who connect to az400-123456789-main use update versions of the app. The solution must minimize administrative effort. To complete this task, sign in to the Microsoft Azure portal. Set up staging environments in Azure App Service 1. Open Microsoft Azure Portal 2. Log into your Azure account, select your app's resource page, in the left pane, select Deployment slots > Add Slot. 3. In the Add a slot dialog box, give the slot a name, and select whether to clone an app configuration from another deployment slot. Select Add to continue. 4. After the slot is added, select Close to close the dialog box. The new slot is now shown on the Deployment slots page. By default, Tra c % is set to 0 for the new slot, with all customer tra c routed to the production slot. 5. Select the new deployment slot to open that slot's resource page. 6. Change TRAFFIC % to 10 .
You have an Azure DevOps project named Project1 and an Azure subscription named Sub1. Sub1 contains an Azure SQL database named DB1. You need to create a release pipeline that uses the Azure SQL Database Deployment task to update DB1. Which artifact should you deploy? A. a BACPAC B. a DACPAC C. an LDF le D. an MDF le.
You have a project in Azure DevOps. You plan to create a build pipeline that will deploy resources by using Azure Resource Manager templates. The templates will reference secrets stored in Azure Key Vault. You need to ensure that you can dynamically generate the resource ID of the key vault during template deployment. What should you include in the template? "Microsoft.KeyVault/vaults" "Microsoft.Resources/deployments" "Microsoft.Resources/deployments" "deployment" "template" "templateLink".
Your company has a project in Azure DevOps for a new web application. The company uses ServiceNow for change management. You need to ensure that a change request is processed before any components can be deployed to the production environment. What are two ways to integrate ServiceNow into the Azure DevOps release pipeline? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Define a deployment control that invokes the ServiceNow REST API. B. Define a pre-deployment gate before the deployment to the Prod stage. C. Define a deployment control that invokes the ServiceNow SOAP API. D. Define a post-deployment gate after the deployment to the QA stage.
Your company develops an application named App1 that is deployed in production. As part of an application update, a new service is being added to App1. The new service requires access to an application named App2 that is currently in development. You need to ensure that you can deploy the update to App1 before App2 becomes available. You must be able to enable the service in App1 once App2 is deployed. A. Implement a feature ag. B. Create a fork in the build. C. Create a branch in the build. D. Implement a branch policy.
You have a private distribution group that contains provisioned and unprovisioned devices. You need to distribute a new iOS application to the distribution group by using Microsoft Visual Studio App Center. What should you do? A. Request the Apple ID associated with the user of each device. B. Register the devices on the Apple Developer portal. C. Create an active subscription in App Center Test. D. Add the device owner to the organization in App Center.
You are developing an iOS application by using Azure DevOps. You need to test the application manually on 10 devices without releasing the application to the public. Which two actions should you perform? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. Create a Microsoft Intune device compliance policy. B. Deploy a certificate from an internal certification authority (CA) to each device. C. Register the application in the iTunes store. D. Onboard the devices into Microsoft Intune. E. Distribute a new release of the application. F. Register the IDs of the devices in the Apple Developer portal.
You have a private distribution group that contains provisioned and unprovisioned devices. You need to distribute a new iOS application to the distribution group by using Microsoft Visual Studio App Center. What should you do? A. Select Register devices and sign my app. B. Create an active subscription in App Center Test. C. Create an unsigned build. D. Add the device owner to the collaborators group.
SIMULATION - You plan to deploy a website that will be hosted in two Azure regions. You need to create an Azure Tra c Manager pro le named az400123456789n1-tm in a resource group named RG1lod123456789. The solution must ensure that users will always connect to a copy of the website that is in the same country. To complete this task, sign in to the Microsoft Azure portal. 1. Go to the Azure portal, navigate to Tra c Manager pro les and click on the Add button to create a routing profile. 2, In the Create Tra c Manager pro le, enter, or select these settings: Name: az400123456789n1-tm - Routing method: Geographic - Resource group: RG1lod123456789 - .
Your company has an on-premises Bitbucket Server that is used for Git-based source control. The server is protected by a firewall that blocks inbound Internet trafic. You plan to use Azure DevOps to manage the build and release processes. Which two components are required to integrate Azure DevOps and Bitbucket? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. a deployment group B. a Microsoft-hosted agent C. service hooks D. a self-hosted agent E. an External Git service connection.
HOTSPOT - Your company uses Git as a source code control system for a complex app named App1. You plan to add a new functionality to App1. You need to design a branching model for the new functionality. Which branch lifetime and branch time should you use in the branching model? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Long-lived Short-lived Master Feature Integration.
You have a project in Azure DevOps. You plan to deploy a self-hosted agent by using an unattended configuration script. Which two values should you define in the configuration script? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. authorization credentials B. the project name C. the deployment group name D. the organization URL E. the agent pool name.
HOTSPOT - You have an Azure virtual machine named VM1 that runs Linux. You plan to deploy the Desired State Configuration (DSC) extension to VM1. You need to grant the Log Analytics agent the appropriate directory permissions. How should you complete the command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. r x rx rwx /lib /etc /tmp /usr.
HOTSPOT - You are using PowerShell to administer Azure Log Analytics workspaces. You need to list the available workspaces and their properties. How should you complete the command? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point. Get-AzResource Get-AzResourceGroup Get-AzResourceProvider ResourceGroupName Resourceld ResourceType.
You have Azure Pipelines and GitHub integrated as a source code repository. The build pipeline has continuous integration enabled. You plan to trigger an automated build whenever code changes are committed to the repository. You need to ensure that the system will wait until a build completes before queuing another build. What should you implement? A. path filters B. batch changes C. scheduled builds D. branch filters.
You are using GitHub as a source code repository. You create a client-side Git hook on the commit-msg event. The hook requires that each commit message contain a custom work item tag. You need to make a commit that does not have a work item tag. Which git commit parameter should you use? A. --squash B. --no-verify C. --message '' D. --no-post-rewrite.
You have a private distribution group that contains provisioned and unprovisioned devices. You need to distribute a new iOS application to the distribution group by using Microsoft Visual Studio App Center. What should you do? A. Select Register devices and sign my app. B. Create an active subscription in App Center Test. C. Add the device owner to the organization in App Center. D. Create an unsigned build.
DRAG DROP - You need to deploy Internet Information Services (IIS) to an Azure virtual machine that runs Windows Server 2019. How should you complete the Desired State Configuration (DSC) configuration script? To answer, drag the appropriate values to the correct locations. Each value 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. Configuration DependsOn File IncludeAllSubFeature WindowsFeature.
HOTSPOT - You plan to use Desired State Configuration (DSC) to maintain the configuration of a server that runs Windows Server 2019. The server must have the following features installed: ✑ A web server ✑ An email server How should you complete the DSC configuration file? To answer, select the appropriate options in the answer area. =@("Mail-Server","IIS") =@("SMTP-Server","IIS") =@("Mail-Server","IIS") =@("SMTP-Server", "Web-Server") Install Ensure Enforce Required.
You have a private distribution group that contains provisioned and unprovisioned devices. You need to distribute a new iOS application to the distribution group by using Microsoft Visual Studio App Center. What should you do? A. Register the devices on the Apple Developer portal. B. Add the device owner to the organization in App Center. C. Create an unsigned build. D. Add the device owner to the collaborators group.
Your company uses Azure Artifacts for package management. You need to configure an upstream source in Azure Artifacts for Python packages. Which repository type should you use as an upstream source? A. npmjs.org B. PyPI C. Maven Central D. third-party trusted Python.
You have a GitHub repository that contains workflows. The workflows contain steps that execute predefined actions. Each action has one or more versions. You need to request the specific version of an action to execute. Which three attributes can you use to identify the version? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. the SHA-based hashes B. the tag C. the runner D. the branch E. the serial.
You have an Azure subscription that contains multiple Azure pipelines. You need to deploy a monitoring solution for the pipelines. The solution must meet the following requirements: ✑ Parse logs from multiple sources. ✑ Identify the root cause of issues. What advanced feature of a monitoring tool should you include in the solution? A. analytics B. synthetic monitoring C. directed monitoring D. Alert Management.
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 use Azure Pipelines to build and test a React.js application. You have a pipeline that has a single job. You discover that installing JavaScript packages from npm takes approximately ve minutes each time you run the pipeline. You need to recommend a solution to reduce the pipeline execution time. Solution: You recommend using pipeline artifacts. Does this meet the goal? yes no.
You use GitHub for source control of .NET applications. You need to deploy a documentation solution that meets the following requirements: ✑ Documents will be written in Markdown as developers make code changes. ✑ Changes to the documents will trigger the recompilation of a static website. ✑ Users will access the documents from the static website. ✑ Documents will be stored in a GitHub repository. Which two tools can you use to compile the website? Each correct answer presents a complete solution. NOTE: Each correct selection is worth one point. A. Word Press B. Jekyll C. DocFX D. caret E. Medium.
You have an on-premises app named App1 that accesses Azure resources by using credentials stored in a configuration file. You plan to upgrade App1 to use an Azure service principal. What is required for App1 to programmatically sign in to Azure Active Directory (Azure AD)? A. the application ID, a client secret, and the object ID B. a client secret, the object ID, and the tenant ID C. the application ID, a client secret, and the tenant ID D. the application ID, a client secret, and the subscription ID.
HOTSPOT - You have a virtual machine that runs Windows Server 2019 and is managed by using Desired State Configuration (DSC). You have the following DSC configuration.You have the following Local Con guration Manager (LCM) con guration. yes no yes no yes no.
You have an Azure subscription that contains 50 virtual machines. You plan to manage the configuration of the virtual machines by using Azure Automation State Configuration. You need to create the Desired State Configuration (DSC) configuration files. How should you structure the code blocks? A. Node > Configuration > Resource B. Configuration > Resource > Node C. Resource > Configuration > Node D. Configuration > Node > Resource.
Your team uses Azure Pipelines to deploy applications. You need to ensure that when a failure occurs during the build or release process, all the team members are notified by using Microsoft Teams. The solution must minimize development effort. What should you do? A. Install the Azure Boards app for Teams and configure a subscription to receive notifications in a channel. B. Use Azure Automation to connect to the Azure DevOps REST API and notify the team members. C. Use an Azure function to connect to the Azure DevOps REST API and notify the team members. D. Install the Azure Pipelines app for Teams and configure a subscription to receive notifications in a channel.
DRAG DROP - You have an app named App1. You have a Log Analytics workspace named Workspace1 that contains a table named AppEvents. App1 writes logs to Workspace1. You need to query the AppEvents table. The solution must meet the following requirements: ✑ Only query rows for a column named Name that starts with the following text: "Clicked Create New Ticket." ✑ Calculate the number of daily clicks per user. ✑ Return the top 10 users based on their number of clicks for any day. ✑ Sort the results based on the highest number of clicks. ✑ Ignore any users who have less than three daily clicks. In which order should you arrange the query statements? To answer, move all statements from the list of statements to the answer area and arrange them in the correct order. | summarize NumberOfCliks = count () by bin (TimeGenerated, Id), UserId AppEvents | top 10 by NumberOfCliks desc | where NumberOfCliks >=3 | where Name startswitch "Clicked Create New Ticket.
HOTSPOT You have an Azure subscription that contains two resource groups named ContosoRG and ContosoDev, an Azure data factory named Contoso Data Factory, and a release pipeline in Azure Pipelines named Pipeline1. You plan to deploy Contoso Data Factory to ContosoRG by using Pipeline1. You add the Azure Resource Manager (ARM) template deployment task shown in the following exhibit. Action Template location Deployment mode Deployment scope output of the continuous integration build location specified in the Linked artifact variable default branch of the Git repository of Contoso Data Factory.
You have an Azure Pipeline.You need to store configuration values as variables.At which four scopes can the variables be defined, and what is the precedence of the variables from the highest precedence to lowest precedence? To answer, move the appropriate scope from the list of scopes to the answer area and arrange them in the correct order. stage job pipeline settings UI pipeline root task.
You have a project in Azure DevOps named Project1 that contains two environments named environment1 and environment2.When a new version of Project is released, the latest version is deployed to environment2, and the previous version is redeployed to environment1.You need to distribute users across the environments. The solution must meet the following requirements:• New releases must be available to only a subset of the users. • You must gradually increase the number of users that can access environment2. A. VIP swaping B. web app deployment slots C. Azure Load Balancer D. Azure Tra c Manager.
You are designing a versioning strategy for Git-based packages.You plan to use a Semantic Versioning (SemVer)-based strategy.You need to identify when to change the build version. What should you identify for each scenario? To answer, drag the appropriate versions to the correct scenarios. Each version 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. You rename a parameter in an API You deprecate functionality in an API You add feature and maintain backwards compatibility.
You use Calendar Versioning (CalVer) for code assets.You need to store an optional tag of beta as part of the version.Which part of the version should you use for the tag? A. minor B. major C. micro D. modifier.
You have an Azure subscription that uses Azure Automation State Configuration to manage the configuration of virtual machines.You need to identify which nodes are noncompliant.How should you complete the query? To answer, drag the appropriate values to the correct targets. Each value 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. Where Where Where.
You have a project in Azure DevOps named Project1.You need to ensure that all new pipelines in Project1 execute three specific tasks during pipeline execution.What should you create? A. a task group B. a JSON template C. a YAML template D. a PowerShell task.
You have a project in Azure DevOps that contains a release pipeline. The pipeline contains two stages named QA and Prod. QA deploys code to an Azure web app named webapp1. Prod deploys code to an Azure web app named webapp2. You need to ensure that code deployments to webapp2 are blocked if Azure Application Insights generates Failed requests alerts following the deployment of new code to webapp1. What should you do for each stage? To answer, select the appropriate options in the answer area. Add a task to configure alert rules in Application Insights Configure a gate in the pre-deployment conditions Configure an auto-redeploy trigger in the post-deployment conditions Configure a post-deployment approval in the post-deployment conditions Add a task to configure alert rules in Application Insights Configure a gate in the pre-deployment conditions Configure an auto-redeploy trigger in the post-deployment conditions Configure a post-deployment approval in the post-deployment conditions.
You use Azure DevOps processes to build and deploy code.You need to compare how much time is spent troubleshooting issues found during development and how much time is spent troubleshooting issues found in released code.Which KPI should you use? A. defect escape rate B. unplanned work rate C. defect rate D. rework .
You have a project in Azure DevOps named Project1.You implement a Continuous Integration/Continuous Deployment (CI/CD) pipeline that uses PowerShell Desired State Configuration (DSC) to configure the application infrastructure.You need to perform a unit test and an integration test of the configuration before Project1 is deployed. A. the PSScriptAnalyzer tool B. the Pester test framework C. the PSCodeHealth module D. the Test-DscCon guration cmdlet.
You use Azure Repos to manage source code and Azure Pipelines to implement continuous integration and continuous deployment (CI/CD).You need to ensure that all comments on pull requests are resolved before the pull requests are included in a build. The solution must minimize administrative effort.What should you include in the solution? A. a custom action B. a post-deployment gate C. a branch policy D. a pre-deployment gate.
You have a project in Azure DevOps named Project that has a release pipeline in Azure Pipeline named ReleaseP1.You need to ensure that when a new release is generated for ReleaseP1, a new release note document is created. The release notes must contain new features and bug fixes.Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. NOTE: More than one order of answer choices is correct. You will receive credit for any of the correct orders you select. Create a personal access token (PAT) Create a service principal Create a PowerShell task in ReleaseP1 that writes the retrieved data to a markdown file Create a query that retrieves the feature and bug fix information Add a dashboard widget that retrieves the feature and bug fix information.
Report abuse