Pre-Winter Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: best70

GH-600 Developing in Agentic AI Systems Questions and Answers

Questions 4

You need to resolve the issue of the agents generating conflicting output. The solution must meet the implementation guidelines.

What should you do?

Options:

A.

Configure each agent to work on a separate branch and add a required status check that detects file-level overlap before either pull request can be merged.

B.

Configure tools: [ ' read ' , ' search ' ] in both agent profiles to prevent either agent from writing files.

C.

Add shared/config.yaml to a CODEOWNERS file that requires SG_Review approval before any changes can be merged.

D.

Configure a concurrency group on both agent workflows so that only one workflow runs at a time.

Buy Now
Questions 5

You need to configure agent1 to support the planned changes.

What should you do?

Options:

A.

Add Use all available tools to the instructions in the agent configuration.

B.

Add the mcp-servers property to the agent configuration.

C.

In the agent configuration, replace line 05 with the following: tools: []

D.

Add Use all available tools to the .github/copilot-instructions.md file.

E.

Delete line 05 from the agent configuration.

Buy Now
Questions 6

You need to make changes to repo1 to support the planned changes for the developers.

What should you modify?

Options:

A.

< project > /.mcp/server.json

B.

.github/agents/*.agent.md

C.

.vscode/mcp.json

D.

.vscode/settings.json

Buy Now
Questions 7

After App1 is upgraded to meet the technical requirements, you need to validate the output.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

GH-600 Question 7

Options:

Buy Now
Questions 8

You need to implement agent2 to meet the technical requirements.

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

NOTE: Each correct selection is worth one point.

HOTSPOT

name: implementation-planner

description: Creates detailed implementation plans and technical specifications in markdown format

tools: [

< Dropdown 1 > ,

< Dropdown 2 > ,

' microsoftdocs/mcp/docs_search ' ,

' microsoftdocs/mcp/docs_fetch '

]

The accompanying image includes empty dropdown controls and recreated practice alternatives.

GH-600 Question 8

Options:

Buy Now
Questions 9

You need to troubleshoot the issue reported by Dev1.

What should you review?

Options:

A.

The GitHub Actions usage metrics of repo1.

B.

The agent session log in the Agents panel.

C.

The GitHub Actions runner log for the session job.

D.

The GITHUB_TOKEN permissions block in the agent1 workflow.

Buy Now
Questions 10

You need to enable Copilot memory to support the planned changes.

What should you configure?

Options:

A.

The personal Copilot settings of each developer

B.

The Copilot settings of each repository

C.

The agent profile of agent1

D.

The Copilot settings of the organization

Buy Now
Questions 11

You need to make changes to repo1 to support the planned changes for the agents.

What should you modify?

Options:

A.

< project > /.mcp/server.json

B.

.vscode/settings.json

C.

.github/agents/*.agent.md

D.

.vscode/mcp.json

Buy Now
Questions 12

You use the GitHub Copilot CLI in ephemeral dev containers.

You need to provide Copilot with reusable guidance for a specific task only. The guidance must be stored in the repository and invoked only when the task is relevant.

What should you do?

Options:

A.

Create a skill under .github/skills/ < skill-name > /SKILL.md.

B.

Create a skill under .copilot/skills/ < skill-name > /SKILL.md.

C.

Add repository-wide custom instructions to .github/copilot-instructions.md.

D.

Add personal custom instructions to the user’s Copilot settings.

Buy Now
Questions 13

You have multiple GitHub Copilot coding agents that run tasks concurrently.

You live stream the session log output and see the following.

• agent execution (ID 987654321)

Run ./scripts/agent-run.sh

--------------------------------

[agent] Starting task: Clean up infra configs

[agent] Executing step: Remove unused files

rm -rf /infra

Error: Command blocked by policy

Reason: destructive_operation_detected

[agent] Escalating to human review...

X Run agent task

X Process completed with exit code 1

X agent-execution failed

What is a possible cause of the error?

Options:

A.

a preToolUse hook

B.

a postToolUse hook

C.

a Copilot firewall policy

D.

a GitHub app installation policy

Buy Now
Questions 14

You have a GitHub repository that uses GitHub Copilot Chat in Microsoft Visual Studio Code. Custom agents are stored in the repository under version control.

Your team uses a multi-agent workflow where a planner agent produces an implementation plan that is then handed off to an implementation agent to make changes.

Recent prompts cause the planner agent to start editing files and running commands before the plan is approved.

You need to configure the planner agent to meet the following requirements:

    Use only read-only tools.

    Hand off to the implementation agent only after the plan is approved.

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

GH-600 Question 14

Options:

Buy Now
Questions 15

You have a GitHub Enterprise Cloud repository that uses GitHub Actions for CI and requires pull requests for all changes.

You are planning a GitHub Actions workflow where a coding agent drafts implementation changes and tests from GitHub issues, and an automated review runs before human review.

You need the agent to draft changes from an assigned issue, open a pull request, and add an automated review to the pull request before requesting a human review.

What should you do? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

GH-600 Question 15

Options:

Buy Now
Questions 16

You have a GitHub Enterprise organization that uses GitHub Copilot.

You discover that GitHub Copilot Chat responses in Microsoft Visual Studio Code are influenced by earlier, unrelated troubleshooting prompts from the same conversation.

You need to ensure that the Copilot Chat conversation context is limited to information relevant to the current work item. The solution must minimize effort.

What should you do? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

GH-600 Question 16

Options:

Buy Now
Questions 17

You are running a long GitHub Copilot CLI session. The session has been running for several hours, and you have made significant progress on a multi-file implementation.

Suddenly, you see the Compaction completed message appear without running a command.

What caused the compaction to occur?

Options:

A.

The session state file reached the maximum file size.

B.

The agent automatically switched to a model that has a larger context window.

C.

The conversation approached 95 percent of the context-window capacity.

D.

The session exceeded the maximum allowed duration.

Buy Now
Questions 18

You have a GitHub Copilot coding agent that has completed a pull request for a security fix in your repository.

Before merging, you need to evaluate the quality of the agent’s work by using both automated evaluation signals and human review.

You review the session log and the pull request.

What are two automated security scanning signals available for the pull request? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Linting errors from the repository’s CI pipeline configured in GitHub Actions

B.

CodeQL findings that identify security vulnerabilities in the generated code

C.

The detection of hardcoded secrets, such as API keys and tokens

D.

Dependency alerts that identify vulnerable package versions in the repository

E.

The median time to merge metric reported on the Copilot usage metrics dashboard

Buy Now
Questions 19

You need to implement the security requirements for agent1.

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.

GH-600 Question 19

Options:

Buy Now
Questions 20

You have a GitHub Enterprise organization that has Copilot memory enabled.

You create a new repository.

What are two ways that memories will be deleted from the repository? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

manually by repository members

B.

when the repository is archived

C.

when the code that created the memory is deleted

D.

automatically after 28 days

E.

when pull requests are merged

Buy Now
Questions 21

You have a GitHub Enterprise Cloud organization that uses the GitHub Copilot coding agent to resolve issues asynchronously.

When an issue is assigned to GitHub Copilot, the agent creates a draft pull request, but your team cannot always tell whether the agent is actively working, has completed its session, or is awaiting workflow approval.

Which execution context does each signal indicate? To answer, drag the appropriate context to the correct signals.

GH-600 Question 21

Options:

Buy Now
Questions 22

You have a GitHub Enterprise Cloud organization that uses a custom coding agent to run GitHub Actions workflows that create branches, open pull requests, and merge changes after required checks pass.

You need to log all agent-initiated actions and ensure that the logs are retained for two years.

What should you do?

Options:

A.

Configure audit log streaming.

B.

Enable log forwarding.

C.

Enable Git events in the audit log.

Buy Now
Exam Code: GH-600
Exam Name: Developing in Agentic AI Systems
Last Update: Sep 22, 2026
Questions: 106

PDF + Testing Engine

$144.99

Testing Engine

$109.99

PDF (Q&A)

$94.99