Tag: AB-620 Practice Exam Questions

AB-620 Practice Exam #4 (30 questions)

This practice exam is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.

Question 1 (Scenario-Based)

A multinational retailer plans to implement a conversational AI platform. The architecture must meet these requirements:

  • Customer conversations begin with a single entry point.
  • Pricing data is stored in Dataverse.
  • Product manuals reside in SharePoint.
  • Inventory information is retrieved from SAP in real time.
  • Specialized fulfillment, returns, and warranty teams manage their own agents independently.

Which architecture best satisfies these requirements?

A. Build one agent with all business logic and duplicate each department’s topics.

B. Use Connected Agents, Azure AI Search (or approved enterprise knowledge grounding) for manuals, Connector/REST API Tools for SAP and Dataverse, and delegate specialized tasks to department-owned agents.

C. Store inventory inside SharePoint and answer all questions using Generative Answers.

D. Create separate standalone agents without communication.

Answer: B

Explanation:
This design separates static knowledge from transactional data, supports independent ownership through Connected Agents, and retrieves live business data from authoritative systems.


Question 2 (Multiple Answer)

Which TWO characteristics describe an effective enterprise grounding strategy?

A. Use trusted organizational knowledge sources.

B. Ground responses using public internet content whenever possible.

C. Refresh indexes as enterprise content changes.

D. Store transactional ERP data inside conversation topics.

Answers: A, C


Question 3 (Single Answer)

Which scenario most strongly favors a Connector Tool over a REST API Tool?

A. Accessing a well-supported Microsoft 365 service through an existing connector

B. Calling a proprietary HTTP endpoint with no available connector

C. Querying Azure AI Search

D. Displaying an Adaptive Card

Answer: A

Explanation:
When a supported connector already exists, it typically reduces development effort and maintenance compared to implementing a custom REST integration.


Question 4 (Fill in the Blank)

Adaptive Cards primarily improve the __________ experience during conversations.

A. indexing

B. retrieval

C. authentication

D. user interaction

Answer: D


Question 5 (Match the Answers)

Match each capability with the most appropriate use case.

CapabilityUse Case
1. Generative AnswersA. Retrieve enterprise knowledge
2. REST API ToolB. Execute live business transaction
3. Connected AgentC. Collaborate across independently managed agents
4. Adaptive CardD. Collect structured user input

Answer

  • 1 → A
  • 2 → B
  • 3 → C
  • 4 → D

Question 6 (Scenario-Based)

Users report that AI-generated responses frequently cite outdated procedures even though newer documents exist.

What should be investigated first?

A. Conversation greetings

B. Knowledge source synchronization and indexing

C. Trigger phrase wording

D. Child Agent configuration

Answer: B


Question 7 (Multiple Answer)

Which TWO design decisions improve long-term maintainability?

A. Isolate reusable business capabilities.

B. Create highly specialized agents with clear ownership.

C. Duplicate conversation logic across agents.

D. Combine unrelated business domains into one topic.

Answers: A, B


Question 8 (Single Answer)

Which architecture best supports independent deployment cycles across business units?

A. Large monolithic agent

B. Connected Agents

C. Single topic with branches

D. Adaptive Cards

Answer: B


Question 9 (Scenario-Based)

An airline wants multiple AI systems developed by different vendors to exchange requests without requiring proprietary integrations.

Which capability is specifically intended for this scenario?

A. Connector Tools

B. Azure AI Search

C. Agent2Agent protocol

D. Adaptive Cards

Answer: C


Question 10 (Single Answer)

What is the primary purpose of MCP?

A. Replace Azure AI Search

B. Replace REST APIs

C. Standardize communication with external tools and services

D. Replace Connected Agents

Answer: C


Question 11 (Multiple Answer)

Which TWO actions should occur before invoking an operation that modifies customer records?

A. Authenticate the user.

B. Validate required inputs.

C. Display an image.

D. Perform semantic search.

Answers: A, B


Question 12 (Scenario-Based)

A company stores millions of engineering documents in multiple repositories.

Employees ask natural language questions requiring semantic understanding.

Which capability should provide the primary grounding layer?

A. Adaptive Cards

B. Trigger phrases

C. Topics

D. Azure AI Search

Answer: D


Question 13 (Single Answer)

A Child Agent should ideally be responsible for:

A. One cohesive business capability

B. Every conversation in the solution

C. User authentication

D. Conversation analytics

Answer: A


Question 14 (Multiple Answer)

Which TWO situations justify using REST API Tools?

A. Real-time order status

B. Account balance lookup

C. Employee handbook retrieval

D. Vacation policy search

Answers: A, B


Question 15 (Scenario-Based)

A logistics organization wants warehouse, transportation, customs, and billing agents maintained by separate teams while preserving conversational context.

Which design is MOST appropriate?

A. Child Topics

B. Connected Agents

C. Static Topics

D. Azure AI Search

Answer: B


Question 16 (Single Answer)

Which statement best describes semantic search?

A. Searches only exact keywords.

B. Understands intent and contextual meaning.

C. Searches images only.

D. Retrieves only structured databases.

Answer: B


Question 17 (Match the Answers)

Match each technology with its primary purpose.

TechnologyPurpose
1. Connector ToolA. Prebuilt application integration
2. REST API ToolB. Custom HTTP integration
3. MCPC. External tool interoperability
4. Agent2AgentD. Agent-to-agent collaboration

Answer

  • 1 → A
  • 2 → B
  • 3 → C
  • 4 → D

Question 18 (Scenario-Based)

A support agent occasionally generates responses that are technically correct but reference obsolete procedures.

Which corrective action is MOST appropriate?

A. Increase greeting length.

B. Review knowledge governance, source quality, and grounding configuration.

C. Add more trigger phrases.

D. Create additional topics.

Answer: B


Question 19 (Multiple Answer)

Which TWO production metrics provide the strongest indication of agent effectiveness?

A. Successful task completion rate

B. Escalation rate

C. Number of Adaptive Cards displayed

D. Number of topics created

Answers: A, B


Question 20 (Single Answer)

Which design principle best supports enterprise scalability?

A. Modular business capabilities

B. Large conversation topics

C. Duplicate workflows

D. Static conversations

Answer: A


Question 21 (Scenario-Based)

A healthcare provider requires public health information to be available anonymously while patient-specific information requires authentication.

Which approach should be implemented?

A. Require authentication for every conversation.

B. Authenticate only before protected operations.

C. Disable anonymous access entirely.

D. Authenticate after returning patient data.

Answer: B


Question 22 (Fill in the Blank)

Conversation analytics primarily help identify opportunities to improve agent __________.

A. licensing

B. responsiveness and effectiveness

C. storage

D. deployment frequency

Answer: B


Question 23 (Single Answer)

Which capability enables users to complete structured forms directly within conversations?

A. Generative Answers

B. Azure AI Search

C. Topics

D. Adaptive Cards

Answer: D


Question 24 (Multiple Answer)

Which TWO activities should be included in production validation?

A. Verify API integrations.

B. Test delegation paths.

C. Disable analytics.

D. Remove authentication.

Answers: A, B


Question 25 (Scenario-Based)

A financial institution wants AI-generated investment guidance to reference only approved internal research while excluding public internet sources.

Which design is most appropriate?

A. Ground Generative Answers using approved enterprise repositories only.

B. Enable unrestricted internet search.

C. Store research inside Adaptive Cards.

D. Replace Generative Answers with greeting topics.

Answer: A


Question 26 (Single Answer)

Which statement best explains why Connected Agents are preferred over one monolithic agent in large organizations?

A. They allow teams to independently develop, deploy, and maintain specialized capabilities.

B. They eliminate the need for testing.

C. They replace Azure AI Search.

D. They require fewer APIs.

Answer: A


Question 27 (Multiple Answer)

Which TWO capabilities primarily support enterprise integrations?

A. Connector Tools

B. REST API Tools

C. Adaptive Cards

D. Trigger phrases

Answers: A, B


Question 28 (Scenario-Based)

An organization has adopted MCP to standardize integrations with external AI tools. A new partner introduces an AI service that also supports MCP.

What is the primary architectural benefit?

A. Existing integration patterns can be reused with minimal custom development.

B. Azure AI Search is no longer required.

C. REST APIs become unsupported.

D. Connected Agents are automatically replaced.

Answer: A


Question 29 (Single Answer)

What is the primary responsibility of Agent2Agent (A2A)?

A. Authenticating users

B. Indexing enterprise documents

C. Displaying Adaptive Cards

D. Standardizing communication between compatible AI agents

Answer: D


Question 30 (Complex Architecture Scenario)

A multinational enterprise is modernizing its customer engagement platform.

Requirements include:

  • One customer-facing entry-point agent.
  • Independent development teams for Finance, Sales, HR, Logistics, and Customer Support.
  • More than 50 million enterprise documents.
  • AI responses must cite trusted internal knowledge.
  • Customer account information must always come directly from operational systems.
  • Third-party AI services should participate without proprietary integrations.
  • Future business domains should be added with minimal redesign.
  • Administrators want detailed production analytics and continuous monitoring after deployment.

Which architecture BEST satisfies all requirements?

A. One monolithic agent using only Generative Answers.

B. Connected Agents with Generative Answers grounded on trusted enterprise knowledge (such as Azure AI Search), Connector and REST API Tools for live business transactions, Agent2Agent and MCP for interoperable integrations, and continuous monitoring with analytics after deployment.

C. Multiple isolated agents with nightly synchronization.

D. Child Agents with all operational data indexed into enterprise search.

Answer: B

Explanation:
This architecture aligns with Microsoft-recommended enterprise design principles:

  • Connected Agents provide scalable orchestration across independently managed business domains.
  • Enterprise knowledge is grounded using trusted repositories (for example, Azure AI Search).
  • Connector Tools and REST API Tools retrieve authoritative, real-time operational data rather than relying on indexed copies.
  • Agent2Agent enables interoperable communication among compatible AI agents.
  • MCP standardizes interactions with external tools and AI services.
  • Continuous analytics and monitoring support ongoing optimization, governance, and operational excellence.

Go to the AB-620 Exam Prep Hub main page

AB-620 Practice Exam #3 (30 questions)

This practice exam is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.

Question 1 (Scenario-Based)

A global insurance company is building a customer support solution. A front-door agent must answer policy questions, submit claims, check claim status, and schedule inspections. Specialized teams own each business capability and deploy their own agents independently.

Which architecture provides the greatest scalability while minimizing maintenance?

A. Create one large agent containing all business logic.

B. Use Connected Agents with specialized agents for claims, inspections, and policies.

C. Create separate topics for every department inside one agent.

D. Create multiple child topics within a single conversation.

Answer: B

Explanation:
Connected Agents allow independently managed agents to collaborate while preserving conversational context. This architecture scales better than a monolithic agent.


Question 2 (Multiple Answer)

An enterprise architect wants to reduce hallucinations generated by AI responses.

Which TWO actions should be recommended?

A. Ground responses using trusted enterprise knowledge.

B. Increase the number of greeting topics.

C. Restrict generative responses to approved knowledge sources.

D. Duplicate trigger phrases across topics.

Answers: A, C

Explanation:
Grounding responses with trusted knowledge sources significantly reduces hallucinations and improves factual accuracy.


Question 3 (Single Answer)

Which situation is the best candidate for using a REST API Tool instead of Generative Answers?

A. Retrieving company vacation policy

B. Looking up product documentation

C. Answering frequently asked questions

D. Checking the real-time balance of a customer’s account

Answer: D

Explanation:
REST API Tools are intended for transactional or live operational data.


Question 4 (Fill in the Blank)

When designing reusable conversations, business logic should remain independent of the __________ layer.

A. authentication

B. presentation

C. storage

D. analytics

Answer: B


Question 5 (Match the Answers)

Match each capability with the primary scenario.

CapabilityScenario
1. Child AgentA. Enterprise semantic search
2. MCPB. Specialized delegated capability
3. Azure AI SearchC. External tool interoperability
4. Adaptive CardD. Interactive user experience

Answer

  • 1 → B
  • 2 → C
  • 3 → A
  • 4 → D

Question 6 (Scenario-Based)

Your company maintains over 15 million engineering documents.

Employees frequently ask technical questions using natural language.

Which solution provides the highest quality retrieval?

A. Manual topics

B. SharePoint folders only

C. Azure AI Search with semantic and vector search

D. Adaptive Cards

Answer: C


Question 7 (Multiple Answer)

A parent agent delegates requests to several child agents.

Which TWO design practices improve maintainability?

A. Assign each child agent a single business responsibility.

B. Allow every child agent to perform every task.

C. Reuse child agents across multiple parent conversations.

D. Duplicate business logic inside every child.

Answers: A, C


Question 8 (Single Answer)

A conversation requires collecting several related inputs before calling an external system.

Which approach provides the cleanest user experience?

A. Multiple sequential text questions

B. Adaptive Card form

C. Multiple trigger phrases

D. Generative Answers

Answer: B


Question 9 (Scenario-Based)

A multinational organization acquires another company whose AI agents were built using different technologies.

Management wants both ecosystems to communicate without rewriting either platform.

Which capability best satisfies this requirement?

A. Child Agents

B. Connected Topics

C. Agent2Agent protocol

D. Azure AI Search

Answer: C


Question 10 (Single Answer)

Which statement about MCP is TRUE?

A. It replaces Azure AI Search.

B. It standardizes integration with external tools and services.

C. It replaces REST APIs.

D. It stores conversation history.

Answer: B


Question 11 (Multiple Answer)

An enterprise wants secure enterprise integrations.

Which TWO actions are recommended?

A. Authenticate users before sensitive operations.

B. Use least-privilege permissions for external systems.

C. Store passwords inside topics.

D. Disable authentication during production.

Answers: A, B


Question 12 (Scenario-Based)

A customer asks:

“Has my refund been processed?”

The answer must always reflect the current ERP status.

Which design should be implemented?

A. Store refund status in SharePoint.

B. Use Generative Answers.

C. Invoke a REST API Tool.

D. Create additional trigger phrases.

Answer: C


Question 13 (Single Answer)

Which design principle best improves long-term maintainability?

A. Centralize reusable business capabilities.

B. Create duplicate business logic.

C. Increase conversation depth.

D. Build larger topics.

Answer: A


Question 14 (Multiple Answer)

Which TWO scenarios are appropriate for Generative Answers?

A. Employee handbook questions

B. Company policy retrieval

C. Credit card authorization

D. Live inventory reservation

Answers: A, B


Question 15 (Scenario-Based)

Several specialized agents must collaborate while preserving the conversation context and allowing each department to deploy independently.

Which solution should you recommend?

A. Child Agents

B. Azure AI Search

C. Adaptive Cards

D. Connected Agents

Answer: D


Question 16 (Single Answer)

Which capability is primarily responsible for grounding AI responses using indexed enterprise content?

A. Adaptive Cards

B. Azure AI Search

C. Trigger phrases

D. Topics

Answer: B


Question 17 (Match the Answers)

Match each technology to its purpose.

TechnologyPurpose
1. Connector ToolA. Enterprise application integration
2. REST API ToolB. Custom HTTP endpoint
3. Connected AgentC. Multi-agent collaboration
4. TopicD. Conversation flow

Answer

  • 1 → A
  • 2 → B
  • 3 → C
  • 4 → D

Question 18 (Scenario-Based)

Users report that responses became less accurate after several new document repositories were connected.

What should be investigated FIRST?

A. Adaptive Card layout

B. Knowledge source quality and grounding configuration

C. Trigger phrase length

D. Topic names

Answer: B


Question 19 (Multiple Answer)

Which TWO metrics best evaluate production quality?

A. Successful task completion

B. Escalation percentage

C. Number of Adaptive Cards

D. Number of trigger phrases

Answers: A, B


Question 20 (Single Answer)

What is the primary benefit of semantic search over simple keyword search?

A. Lower storage costs

B. Better understanding of user intent

C. Faster authentication

D. Reduced API usage

Answer: B


Question 21 (Scenario-Based)

A banking organization wants every transaction request to require customer authentication while allowing public FAQ access anonymously.

What should you configure?

A. Authenticate every conversation immediately.

B. Require authentication only before protected actions.

C. Disable anonymous access.

D. Store authentication inside Adaptive Cards.

Answer: B


Question 22 (Fill in the Blank)

The primary objective of production monitoring is to continuously improve __________ and reliability.

A. storage

B. usability

C. performance

D. deployment frequency

Answer: C


Question 23 (Single Answer)

Which statement best describes Connected Agents?

A. They replace REST APIs.

B. They allow independently managed agents to collaborate.

C. They replace child agents in every scenario.

D. They perform semantic search.

Answer: B


Question 24 (Multiple Answer)

Which TWO tasks belong to production validation before deployment?

A. Test API integrations

B. Validate conversation routing

C. Delete historical analytics

D. Disable monitoring

Answers: A, B


Question 25 (Scenario-Based)

A healthcare organization wants clinicians to ask natural language questions while ensuring responses come only from approved medical documentation.

Which solution best satisfies the requirement?

A. Public internet search

B. Azure AI Search with approved medical repositories

C. Adaptive Cards

D. Trigger phrase expansion

Answer: B


Question 26 (Single Answer)

Why are modular conversation designs generally preferred?

A. Easier testing, maintenance, and reuse

B. More authentication

C. More trigger phrases

D. Less integration

Answer: A


Question 27 (Multiple Answer)

Which TWO capabilities are specifically intended for enterprise system integration?

A. Connector Tools

B. REST API Tools

C. Adaptive Cards

D. Trigger phrases

Answers: A, B


Question 28 (Scenario-Based)

A manufacturing company has independent Procurement, Inventory, Maintenance, and Shipping agents.

Executives want one customer-facing entry point while allowing each department to maintain its own release schedule.

Which architecture is MOST appropriate?

A. One large parent topic

B. One monolithic agent

C. Connected Agents

D. Azure AI Search only

Answer: C


Question 29 (Single Answer)

Which capability is responsible for presenting rich forms, buttons, and images within conversations?

A. Azure AI Search

B. Topics

C. Adaptive Cards

D. REST API Tools

Answer: C


Question 30 (Complex Scenario)

A multinational enterprise is building an intelligent service platform.

Requirements include:

  • Customer conversations begin with a single entry-point agent.
  • Business domains are maintained by independent development teams.
  • Enterprise knowledge exceeds 25 million documents.
  • AI responses must be grounded using semantic retrieval.
  • Customer account information must always be retrieved in real time.
  • External AI systems from partner organizations must participate in workflows.
  • Future integrations should require minimal architectural changes.

Which solution BEST satisfies all requirements?

A. Build one monolithic agent using Generative Answers for every request.

B. Build separate agents without communication and synchronize data nightly.

C. Use Child Agents, storing all customer information in Azure AI Search.

D. Use Connected Agents, Azure AI Search for enterprise grounding, REST API Tools for transactional data, and Agent2Agent/MCP for interoperable external integrations.

Answer: D

Explanation:
This design follows Microsoft’s recommended architectural principles:

  • Connected Agents provide scalable orchestration.
  • Azure AI Search grounds responses over large enterprise repositories.
  • REST API Tools retrieve authoritative live transactional data.
  • Agent2Agent enables communication between heterogeneous AI agents.
  • MCP provides standardized interoperability with external tools and services.

Go to the AB-620 Exam Prep Hub main page

AB-620 Practice Exam #2 (30 questions)

This practice exam is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.

Question 1 (Scenario-Based)

A multinational company is building a customer service agent. Product documentation is stored in SharePoint, technical manuals are indexed in Azure AI Search, and warranty information is available through a REST API.

The agent should answer questions using documentation whenever possible but retrieve live warranty information only when customers ask about an individual product.

Which design best satisfies these requirements?

A. Place all warranty data inside SharePoint.

B. Configure Generative Answers for all data sources, including the REST API.

C. Use Generative Answers for documentation and invoke a REST API Tool only when warranty information is required.

D. Build separate agents for documentation and warranties without delegation.

Answer: C

Explanation:
Generative Answers should retrieve static enterprise knowledge, while live transactional data should be obtained through REST API Tools only when needed.


Question 2 (Multiple Answer)

A company wants to reduce maintenance effort when building dozens of conversational workflows.

Which TWO design practices should be recommended?

A. Create reusable child topics for common business processes.

B. Duplicate topics for each business unit.

C. Build modular conversation flows.

D. Store business logic inside Adaptive Cards.

Answers: A, C

Explanation:
Reusable, modular conversation design significantly improves maintainability.


Question 3 (Single Answer)

Which characteristic best distinguishes Connected Agents from Child Agents?

A. Connected Agents can communicate across independently managed agents.

B. Child Agents always require REST APIs.

C. Connected Agents cannot return conversation context.

D. Child Agents require Azure AI Search.

Answer: A

Explanation:
Connected Agents enable collaboration among independently managed agents, whereas Child Agents are subordinate components of a parent agent.


Question 4 (Fill in the Blank)

Adaptive Cards primarily separate the presentation layer from the ________ layer.

A. Storage

B. Authentication

C. Business logic

D. Analytics

Answer: C


Question 5 (Match the Answers)

Match each component to its primary responsibility.

ComponentResponsibility
1. TopicA. Enterprise knowledge retrieval
2. Connector ToolB. Conversation workflow
3. Azure AI SearchC. External application integration
4. Adaptive CardD. Interactive user interface

Answer

  • 1 → B
  • 2 → C
  • 3 → A
  • 4 → D

Question 6 (Scenario)

A support agent retrieves outdated answers after documentation has been updated.

What should be investigated FIRST?

A. Trigger phrases

B. Azure AI Search index synchronization

C. Adaptive Card layout

D. Conversation variables

Answer: B

Explanation:
Knowledge freshness depends on indexing and synchronization.


Question 7 (Multiple Answer)

Which TWO situations justify using Child Agents?

A. Isolating reusable business capabilities

B. Delegating specialized business functions

C. Displaying images

D. Storing authentication credentials

Answers: A, B


Question 8 (Single Answer)

A conversation requires collecting multiple user inputs before submitting a service request.

Which feature provides the best user experience?

A. Trigger phrases

B. Adaptive Cards

C. Azure AI Search

D. Generative Answers

Answer: B


Question 9 (Scenario)

A company wants independent AI agents developed by external vendors to collaborate without exposing proprietary implementation details.

Which technology best addresses this requirement?

A. Power Automate

B. Child Agents

C. Agent2Agent protocol

D. Adaptive Cards

Answer: C


Question 10 (Single Answer)

Why should business transactions generally avoid relying solely on Generative Answers?

A. They require deterministic execution.

B. They cannot access SharePoint.

C. They require Adaptive Cards.

D. They cannot use connectors.

Answer: A


Question 11 (Multiple Answer)

An architect is designing a financial services agent.

Which TWO actions should require authenticated users?

A. Viewing account balances

B. Resetting passwords

C. Reading public FAQs

D. Viewing office hours

Answers: A, B


Question 12 (Single Answer)

Which capability provides semantic ranking across enterprise content?

A. Adaptive Cards

B. Azure AI Search

C. Topics

D. Power Automate

Answer: B


Question 13 (Scenario)

A parent agent delegates work to a child agent.

What should the child agent ideally return?

A. Raw API payloads only

B. Completed business result

C. Internal diagnostic logs

D. Azure Search indexes

Answer: B


Question 14 (Multiple Answer)

Which TWO characteristics describe REST API Tools?

A. Execute HTTP requests

B. Support authentication

C. Replace Azure AI Search

D. Eliminate connectors

Answers: A, B


Question 15 (Single Answer)

Which design principle minimizes duplicated business logic?

A. Long conversation topics

B. Reusable child agents

C. Multiple greeting topics

D. Static responses

Answer: B


Question 16 (Scenario)

A healthcare organization wants AI responses grounded only in approved clinical documentation.

Which solution is most appropriate?

A. Public web search

B. Azure AI Search over approved repositories

C. Trigger phrase expansion

D. Adaptive Cards

Answer: B


Question 17 (Fill in the Blank)

The ________ protocol standardizes interactions between AI agents developed by different vendors.

A. HTTPS

B. SOAP

C. Agent2Agent

D. TCP

Answer: C


Question 18 (Scenario)

A manufacturing agent should retrieve machine status from an operational system only after identifying the equipment number.

What should happen first?

A. Invoke the REST API immediately

B. Ask for equipment identification

C. Display an Adaptive Card after the API call

D. Perform Azure AI Search

Answer: B


Question 19 (Multiple Answer)

Which TWO activities improve conversation quality during testing?

A. Validate topic transitions

B. Verify connector responses

C. Disable analytics

D. Remove authentication

Answers: A, B


Question 20 (Single Answer)

Which statement best describes MCP?

A. A semantic search engine

B. A protocol for integrating external tools and services

C. A replacement for REST

D. A replacement for connectors

Answer: B


Question 21 (Scenario)

An enterprise agent must answer policy questions while ensuring responses always reference official documents.

What should you configure?

A. Static topics only

B. Generative Answers grounded on trusted knowledge sources

C. Adaptive Cards only

D. REST APIs

Answer: B


Question 22 (Single Answer)

Which capability allows agents to invoke hundreds of Microsoft and third-party applications with minimal development effort?

A. Connectors

B. Child Agents

C. Adaptive Cards

D. Azure AI Search

Answer: A


Question 23 (Multiple Answer)

Which TWO metrics are most valuable when evaluating production agents?

A. Resolution rate

B. Escalation frequency

C. CPU temperature

D. Tenant storage size

Answers: A, B


Question 24 (Scenario)

Several departments maintain their own specialized agents.

The organization wants each department to continue independent development while allowing seamless collaboration.

Which architecture should be recommended?

A. Single monolithic agent

B. Connected Agents

C. One large topic

D. Adaptive Cards

Answer: B


Question 25 (Single Answer)

Which benefit does modular topic design provide?

A. Easier reuse and maintenance

B. More trigger phrases

C. Higher API latency

D. Less testing

Answer: A


Question 26 (Match the Answers)

Match each technology with the appropriate scenario.

TechnologyScenario
1. Adaptive CardA. Interactive form
2. Azure AI SearchB. Enterprise document retrieval
3. REST API ToolC. Live business transaction
4. MCPD. Standardized external tool integration

Answer

  • 1 → A
  • 2 → B
  • 3 → C
  • 4 → D

Question 27 (Scenario)

A retail agent should automatically delegate shipping questions to a logistics agent while preserving conversation context.

Which feature best accomplishes this?

A. Connected Agents

B. Static Topics

C. Adaptive Cards

D. Azure AI Search

Answer: A


Question 28 (Multiple Answer)

Which TWO situations are appropriate for Azure AI Search grounding?

A. Large enterprise knowledge repositories

B. Frequently changing documentation

C. Live inventory lookup

D. Credit card authorization

Answers: A, B


Question 29 (Single Answer)

What is the primary objective of production monitoring?

A. Reduce document size

B. Identify failures and improve agent performance

C. Increase Adaptive Card complexity

D. Create additional topics

Answer: B


Question 30 (Scenario-Based)

A global enterprise is designing a Copilot Studio solution consisting of dozens of specialized agents maintained by separate teams. Customer conversations should begin with a single front-door agent, which delegates requests to specialized agents while preserving context. Enterprise documentation should be searchable using semantic and vector search, while live order status should always come directly from the ERP system.

Which architecture best satisfies these requirements?

A. Store all ERP data inside Azure AI Search.

B. Use one monolithic topic containing all business logic.

C. Use Connected Agents with Azure AI Search for knowledge retrieval and REST API Tools for live ERP transactions.

D. Replace Azure AI Search with Adaptive Cards.

Answer: C

Explanation:
This architecture separates static knowledge retrieval from transactional data access, enables scalable multi-agent collaboration through Connected Agents, and ensures that live business information is always retrieved directly from the source system rather than cached in a search index.


Go to the AB-620 Exam Prep Hub main page

AB-620 Practice Exam #1 (30 questions)

This practice exam is a part of the AB-620: Designing and Building Integrated AI Agent Solutions in Copilot Studio Exam Prep Hub.

Question 1 (Single Answer)

A company wants to build a Copilot Studio agent that consistently answers HR policy questions by referencing the latest employee handbook stored in SharePoint.

Which approach should you recommend?

A. Create multiple topics containing every policy manually.

B. Configure generative answers with SharePoint as a knowledge source.

C. Build a Power Automate flow that returns random policy documents.

D. Store all policies in Adaptive Cards.

Answer: B

Explanation:
Generative Answers is designed to retrieve information from trusted knowledge sources such as SharePoint, websites, Dataverse, and Azure AI Search. This reduces maintenance while ensuring responses stay current.


Question 2 (Multiple Answer)

You are designing topics for an enterprise support agent.

Which TWO principles help create maintainable conversations?

A. Use reusable topics whenever possible.

B. Place every business process into one large topic.

C. Use clear trigger phrases.

D. Create duplicate topics for every department.

Answers: A, C

Explanation:
Reusable topics reduce maintenance, while well-written trigger phrases improve topic selection. Large monolithic topics and unnecessary duplication reduce maintainability.


Question 3 (Scenario-Based)

A customer asks:

“I forgot my password.”

The agent should first verify the user’s identity before initiating a password reset.

Which Copilot Studio capability best supports this design?

A. Adaptive Cards

B. Conversation boosting

C. Authentication-aware conversation flow

D. Generative answers

Answer: C

Explanation:
Sensitive actions should include authentication or identity verification before execution.


Question 4 (Fill in the Blank)

Adaptive Cards primarily allow agents to present ________ user experiences inside conversations.

A. static PDF

B. structured and interactive

C. audio-only

D. encrypted

Answer: B

Explanation:
Adaptive Cards provide structured interactive interfaces including buttons, forms, images, and inputs.


Question 5 (Match the Answers)

Match each capability with its primary purpose.

CapabilityPurpose
1. Adaptive CardA. Search enterprise knowledge
2. Azure AI SearchB. Interactive response
3. TopicC. Conversation workflow
4. Connector ToolD. Invoke external system

Answer

  • 1 → B
  • 2 → A
  • 3 → C
  • 4 → D

Explanation:
Each component serves a different role within Copilot Studio.


Question 6 (Single Answer)

Which feature allows an agent to call Microsoft 365, Dynamics 365, or Salesforce without custom REST development?

A. Azure AI Search

B. Connector Tools

C. Generative Answers

D. Child Agents

Answer: B

Explanation:
Connector Tools leverage Power Platform connectors for external system integration.


Question 7 (Multiple Answer)

Which TWO situations are ideal for using Generative Answers?

A. Frequently changing documentation

B. Employee knowledge bases

C. Fixed mathematical calculations

D. Static greeting messages

Answers: A, B

Explanation:
Generative Answers excels with dynamic knowledge repositories.


Question 8 (Scenario)

An organization has separate Finance, HR, and IT agents.

Users should interact with a single entry point while requests are automatically routed.

What should you recommend?

A. Adaptive Cards

B. Connected Agents

C. Static Topics

D. Conversation Boosting

Answer: B

Explanation:
Connected Agents enable seamless delegation between specialized agents.


Question 9 (Single Answer)

Which statement best describes Child Agents?

A. They permanently replace parent agents.

B. They specialize in delegated tasks.

C. They store enterprise knowledge.

D. They generate Adaptive Cards.

Answer: B

Explanation:
Child Agents perform specialized work delegated by a parent agent.


Question 10 (Multiple Answer)

Which TWO benefits does Azure AI Search provide?

A. Semantic search

B. Vector search

C. Topic authoring

D. Power Automate execution

Answers: A, B

Explanation:
Azure AI Search provides modern semantic and vector retrieval capabilities.


Question 11 (Single Answer)

A REST API requires OAuth authentication.

Which Copilot Studio capability is most appropriate?

A. Adaptive Card

B. REST API Tool

C. Topic Trigger

D. Conversation History

Answer: B

Explanation:
REST API Tools support authenticated API calls.


Question 12 (Scenario)

A customer wants product recommendations displayed as images with action buttons.

Which feature should you use?

A. Adaptive Cards

B. Trigger phrases

C. Child Agents

D. Azure AI Search

Answer: A

Explanation:
Adaptive Cards provide interactive UI elements.


Question 13 (Single Answer)

Which design principle improves topic reuse?

A. Create one topic for every user

B. Build modular topics

C. Duplicate topics by department

D. Embed every API directly into each topic

Answer: B


Question 14 (Multiple Answer)

Which TWO capabilities help integrate enterprise systems?

A. REST API Tools

B. Connectors

C. Adaptive Cards

D. Azure Monitor

Answers: A, B

Explanation:
REST APIs and Connectors integrate business systems.


Question 15 (Scenario)

An organization wants several independent agents developed by different teams to communicate securely.

Which capability best supports this?

A. Agent2Agent Protocol

B. Trigger phrases

C. Adaptive Cards

D. Conversation Boosting

Answer: A

Explanation:
Agent2Agent enables interoperable multi-agent communication.


Question 16 (Single Answer)

Which knowledge source is optimized for enterprise-scale indexing?

A. Excel

B. Azure AI Search

C. Outlook

D. Teams Chat

Answer: B


Question 17 (Match)

Match the integration method.

ItemPurpose
1 REST API ToolA External REST service
2 ConnectorB Microsoft/third-party service
3 Azure AI SearchC Enterprise search
4 MCPD External AI tool

Answer

  • 1 → A
  • 2 → B
  • 3 → C
  • 4 → D

Question 18 (Single Answer)

What is the main advantage of using connectors instead of custom code?

A. Lower maintenance

B. Higher latency

C. Less security

D. More manual work

Answer: A


Question 19 (Scenario)

An agent frequently receives questions outside its expertise.

What should you configure?

A. Child Agent delegation

B. Longer greeting

C. Adaptive Cards

D. Multiple trigger phrases only

Answer: A


Question 20 (Multiple Answer)

Which TWO activities are part of testing an agent?

A. Validate topic routing

B. Test connector responses

C. Redesign Azure regions

D. Replace SharePoint

Answers: A, B


Question 21 (Single Answer)

Which metric most directly measures successful conversations?

A. CPU utilization

B. Resolution rate

C. Azure subscription count

D. Tenant size

Answer: B


Question 22 (Scenario)

Users report inconsistent answers after new documents were uploaded.

What should you investigate first?

A. Knowledge source indexing

B. Adaptive Card colors

C. Conversation greeting

D. Trigger phrase capitalization

Answer: A


Question 23 (Fill in the Blank)

The ________ protocol enables standardized communication among compatible AI agents.

A. REST

B. MCP

C. HTTPS

D. XML

Answer: B


Question 24 (Single Answer)

What is the primary purpose of MCP?

A. Store Dataverse records

B. Standardize communication with external tools and services

C. Replace Adaptive Cards

D. Build Power BI dashboards

Answer: B


Question 25 (Scenario)

A retail company has inventory stored in SAP.

The agent must retrieve live inventory during conversations.

Which solution is most appropriate?

A. Manual topics

B. REST API Tool

C. Adaptive Card only

D. Generative Answers only

Answer: B


Question 26 (Multiple Answer)

Which TWO practices improve enterprise agent governance?

A. Monitor conversation analytics

B. Regularly validate knowledge sources

C. Disable testing

D. Ignore failed API calls

Answers: A, B


Question 27 (Single Answer)

Why should child agents be designed around specialized business capabilities?

A. Easier maintenance and reuse

B. Larger conversations

C. More trigger phrases

D. Fewer APIs

Answer: A


Question 28 (Scenario)

A healthcare organization must ensure only authenticated users can retrieve patient information.

What should be implemented?

A. Anonymous conversations

B. Authentication before protected actions

C. Public websites

D. Conversation boosting only

Answer: B


Question 29 (Single Answer)

Which capability allows users to submit structured information directly inside a conversation?

A. Adaptive Cards

B. Azure AI Search

C. Trigger phrases

D. Topics

Answer: A


Question 30 (Multiple Answer)

Which TWO activities should occur before publishing an updated production agent?

A. Validate conversation paths

B. Test integrations

C. Delete analytics history

D. Disable monitoring

Answers: A, B


Go to the AB-620 Exam Prep Hub main page