Weekend Sale Special - 75% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save75geek

GH-600 Developing in Agentic AI Systems Questions and Answers

Questions 4

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 5

While upgrading App1, the agent identifies 47 issues, including a security vulnerability, and 46 API incompatibilities across different projects.

Which two actions are unsafe to delegate to the agent and require human involvement? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Generate the assessment.md file.

B.

Approve all Git commits.

C.

Validate whether the tasks.md file exists.

D.

Validate the assessment.md file for accuracy.

E.

Review the plan.md file for dependencies.

Buy Now
Questions 6

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 7

You are evaluating the logs of the multi-agent workflow in repo2.

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

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 8

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.

Options:

Buy Now
Questions 9

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 10

You have a private GitHub repository that has Copilot memory enabled.

Several developers who have write access to the repository make changes across multiple branches, including creating some pull requests that are later closed without merging.

Your team needs to understand how GitHub Copilot ensures that only task-relevant, up-to-date information influences code suggestions, even when older memories exist.

How does Copilot manage memories?

Options:

A.

Copilot stores memories indefinitely until a repository administrator deletes them manually.

B.

Copilot automatically blocks memory creation from pull requests that are closed without merging, to prevent outdated information from being stored.

C.

Copilot stores memories per user, ensuring that only the developer who created a memory can trigger the memory in future sessions.

D.

Copilot validates each memory’s citations against the current branch before using the memory, and ignores the memory if the referenced code no longer exists.

Buy Now
Questions 11

You use the GitHub Copilot CLI in a developer terminal.

You plan to use Copilot CLI programmatically to summarize recent commits.

You need to ensure that Copilot performs a low-risk, read-only action without granting Copilot broad write or execution capability.

Which Copilot CLI configuration should you use?

Options:

A.

copilot -p " < prompt > " --allow-all-tools

B.

copilot -p " < prompt > " --deny-tool ' shell(git) '

C.

copilot -p " < prompt > " --allow-tool ' shell(git) '

D.

copilot -p " < prompt > " --allow-tool ' write '

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 a GitHub repository that uses GitHub Actions for CI.

Your team is piloting the GitHub Copilot coding agent to autonomously create branches and open pull requests. The repository follows trunk-based development that uses main as the default branch.

You need to ensure that the agent meets the following requirements:

    Changes to main can occur only by using pull requests that have at least one approval.

    When a pull request is opened, a validation workflow runs.

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

Options:

Buy Now
Questions 14

You assigned an issue to the Copilot coding agent, and it opened a pull request. You want to inspect exactly what code changes were made before merging. Which CLI slash command lets you view the change set directly in the terminal?

Options:

A.

/context

B.

/diff

C.

/compact

D.

/plan

Buy Now
Questions 15

You have a GitHub repository that uses the GitHub Copilot coding agent. The repository uses strict branch protections on the main branch.

You maintain a long-lived branch named release/1.4 that has different dependencies and CI checks.

You need the agent to create a hotfix that is implemented and validated against the release/1.4 branch. The solution must prevent the agent from basing its work on main.

What should you do?

Options:

A.

Add concurrency: release/1.4 to .github/workflows/copilot-setup-steps.yml.

B.

Require human reviews on changes to main.

C.

In .github/copilot-instructions.md, instruct the agent to always check out release/1.4 instead of main when creating hotfixes.

D.

Select the repository and the release/1.4 branch in the Copilot agents UI before you run the agent task.

Buy Now
Questions 16

You need to provide access to the API key of MCP1. The solution must meet the security requirements.

What should you do?

Options:

A.

Store the API key as a secret in the Copilot environment of product-api by using a name prefix of COPILOT_MCP_, and then reference the variable name in the mcp.json configuration.

B.

In the product-api repository settings, add the API key directly to the .mcp/server.json file by using a plaintext apiKey field.

C.

Store the API key as a GitHub Codespaces user secret scoped to product-api.

D.

In product-api, add the API key as a GitHub Actions encrypted secret and reference the secret by using ${{ secrets.KEY }} in the workflow YAML of agent1.

Buy Now
Questions 17

You need to resolve the scoping issue associated to agent1.

What should you do?

Options:

A.

To the profile of agent1, add a custom instruction specifying that the agent must NOT access billing-service or infra-terraform.

B.

Add a permissions block to the agent1 workflow in product-api.

C.

Create a fine-grained personal access token (PAT) scoped to product-api and store the PAT as a GitHub Actions secret for agent1 to use.

D.

Create a ruleset for billing-service and infra-terraform that blocks push access from the github-actions bot account.

Buy Now
Questions 18

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 19

You are evaluating how agent1 will behave after you implement the planned changes.

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

NOTE: Each correct selection is worth one point.

Options:

Buy Now
Questions 20

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
Exam Code: GH-600
Exam Name: Developing in Agentic AI Systems
Last Update: Sep 19, 2026
Questions: 106
GH-600 pdf

GH-600 PDF

$23.75  $94.99
GH-600 Engine

GH-600 Testing Engine

$27.5  $109.99
GH-600 PDF + Engine

GH-600 PDF + Testing Engine

$36.25  $144.99