You use GitHub for source control and project-related discussions.
You receive a notification when an entry is made to any team discussion.
You need to ensure that you receive email notifications only for discussions in which you commented or in which you are mentioned.
Which two Notifications settings should you clear? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Automatically watch teams
B. Participating
C. Automatically watch repositories
D. Watching
Show Answer
Correct Answer: A, C
Explanation: To receive email notifications only when you participate in or are mentioned in a discussion, you must prevent GitHub from automatically subscribing you to discussions you have not engaged in. Clearing **Automatically watch teams** stops notifications for all team discussions by default, and clearing **Automatically watch repositories** stops automatic watching of repositories and their discussions. The **Participating** setting should remain enabled to receive notifications when you comment or are mentioned.
Question 231
You use release pipelines in Azure Pipelines to deploy an app. Secrets required be the pipeline are stored as pipeline variables. Logging of commands is enabled for the Azure Pipelines agent.
You need to prevent the values of the secrets from being logged.
What should you do?
A. Store the secrets in the environment variables instead of the pipeline variables.
B. Pass the secrets on the command line instead of in the pipeline variables.
C. Apply a prefix of secret to the name of the variables.
D. Echo the values of the secrets to the command line.
Show Answer
Correct Answer: A
Explanation: With command logging enabled, secrets can be exposed if they are echoed or passed on the command line. Azure Pipelines guidance explicitly states to never pass secrets on the command line and instead map secrets into environment variables, which are automatically masked and not logged unless explicitly echoed. Prefixing variable names with 'secret' does not mark them as secret and is actually a reserved prefix that makes variables unavailable. Therefore, storing secrets in environment variables is the correct way to prevent them from being logged.
Question 232
You build an iOS app.
You receive crash reports from Crashlytics.
You need to capture the following data:
✑ Crash-free users
✑ Custom events
✑ Breadcrumbs
What should you do?
A. Configure the xcworkspace file in the project
B. Add the GoogleAnalytics pod to the app.
C. Configure the Crashlytics pod in the app.
D. Import the Firebase module to UIApplicationDelegate.
Show Answer
Correct Answer: D
Explanation: Crash-free users, custom events, and breadcrumbs in Crashlytics rely on Firebase Analytics integration. The question states that crash reports are already being received, so Crashlytics itself is working. To enable these additional analytics-related features, Firebase must be initialized in the app, which on iOS is done by importing Firebase and calling FirebaseApp.configure() in the UIApplicationDelegate (or App). Simply configuring the Crashlytics pod alone is not sufficient.
Question 233
You need to the merge the POC branch into the default branch. The solution must meet the technical requirements.
Which command should you run?
A. git rebase
B. git merge --squash
C. git push
D. git merge --allow-unrelated-histories
Show Answer
Correct Answer: A
Explanation: The requirement implies that the commit history of the POC branch should become the history of the default branch (i.e., the default branch is overridden by POC). Rebasing the default branch onto the POC branch applies the default branch commits on top of POC, effectively making POC’s history the new base. The other options either just combine changes (merge --squash), only push changes, or handle unrelated histories without replacing history.
Question 234
You need to meet the technical requirements for monitoring App1.
What should you use?
A. Splunk
B. Azure Application Insights
C. Azure Advisor
D. App Service logs
Show Answer
Correct Answer: B
Explanation: Azure Application Insights is designed to monitor application performance and usage, including metrics such as page load times, request rates, failures, and end‑user experience. These capabilities meet typical technical monitoring requirements for an application like App1, whereas the other options focus on log collection, recommendations, or infrastructure-level logging.
Question 235
You plan to deploy a new database environment. The solution must meet the technical requirements.
You need to prepare the database for the deployment.
How should you format the export?
A. NDF
B. BACPAC
C. DACPAC
D. MDF
Show Answer
Correct Answer: B
Explanation: The requirement is to prepare a database for deployment where the initial databases must contain both schema and data (including reference data). A BACPAC export includes both the database schema and the data, making it suitable for deploying a complete initial database to a new environment. A DACPAC primarily contains schema (and only limited static data if explicitly configured), while MDF/NDF are physical files not used for this type of deployment.
Question 236
You are designing a YAML template for use with Azure Pipelines. The template will include the outputfile parameter.
Which two methods can you use to reference the parameter? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. ${{parameters.outputfile}}
B. $(parameters['outputfile'])
C. $(parameters.outputfile)
D. $(parameters[outputfile])
E. ${{parameters['outputfile']}}
Show Answer
Correct Answer: A, E
Explanation: In Azure Pipelines YAML templates, parameters are referenced using template expressions (${{ }}), which are evaluated at compile time. There are two valid syntaxes: property dereference (${{ parameters.outputfile }}) and index syntax (${{ parameters['outputfile'] }}). The $(...) macro syntax is for runtime variables, not template parameters, so options using $() are invalid for parameters.
Question 237
You have an Azure virtual machine that is monitored by using Azure Monitor.
The virtual machine has the Azure Log Analytics agent installed.
You plan to deploy the Service Map solution from the Azure Marketplace.
What should you deploy to the virtual machine to support the Service Map solution?
A. the Dependency agent
B. the Telegraf agent
C. the Windows Azure diagnostics extension (WAD)
D. the Azure monitor agent
Show Answer
Correct Answer: A
Explanation: Azure Service Map requires the Dependency agent on the virtual machine to collect process-level and network dependency data. With the Log Analytics agent already installed, adding the Dependency agent enables Service Map to discover and visualize dependencies. Other agents listed do not provide this capability.
Question 238
HOTSPOT -
You have a project in Azure DevOps that contains a Continuous Integration/Continuous Deployment (CI/CD) pipeline.
You need to enable detailed logging by defining a pipeline variable.
How should you configure the variable? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Show Answer
Correct Answer: Name: System.Debug
Value: true
Explanation: In Azure DevOps pipelines, setting the predefined variable System.Debug to true enables detailed (verbose) logging for the pipeline run.
Question 239
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 organization named Contoso and an Azure subscription. The subscription contains an Azure virtual machine scale set named VMSS1 that is configured for autoscaling.
You have a project in Azure DevOps named Project1. Project1 is used to build a web app named App1 and deploy App1 to VMSS1.
You need to ensure that an email alert is generated whenever VMSS1 scales in or out.
Solution: From Azure DevOps, configure the Notifications settings for Project1.
Does this meet the goal?
A. Yes
B. No
Show Answer
Correct Answer: B
Explanation: Azure DevOps project Notifications apply only to events within Azure DevOps (such as builds, releases, repos, or work items). VMSS scale-in and scale-out events are Azure resource–level events and must be monitored using Azure Monitor autoscale settings and action groups (email alerts). Therefore, configuring Notifications in Project1 does not meet the goal.
$19
Get all 531 questions with detailed answers and explanations
Instant download HTML + PDF delivered the moment payment clears.
Secure Stripe checkout we never see or store your card details.
7-day refund if files are defective see our refund policy.