Skip to main content
🎉 All exam preparation materials are available for free until 31 August 2026.

Last updated: May 2026

Practice Exam

AI-201Salesforce Certified Agentforce Specialist

Test your knowledge with official exam-style questions

Questions25Passing72%Exam time105 min

Questions and options are shuffled each attempt

Salesforce Certified Agentforce SpecialistPractice Set 4: All Questions & Explanations

Full question text, answer options, and explanations for this practice set — a spoiler-free alternative is the interactive quiz above for scored, shuffled practice.

  1. 1. A rep opens an Opportunity and needs the agent to draft a concise summary from record data for review before sending. What is the most appropriate feature?

    • A. Prompt Builder(correct)
    • B. A report formula
    • C. A validation rule
    • D. A dashboard filter

    Explanation: Prompt Builder is the AI text-generation feature for this use case. The other options do not generate reviewable natural language from record data.

  2. 2. Which template type is best when the generated response will be edited by the user before use?

    • A. Flex(correct)
    • B. Field Generation
    • C. Apex trigger
    • D. Quick Action

    Explanation: Flex templates are designed for reviewable, free-form output. Field Generation is better when the content goes straight into one field.

  3. 3. A customer asks the agent to answer from a large and changing product knowledge library. Which design is most aligned with the guide?

    • A. Ground the prompt on a Data 360 retriever(correct)
    • B. Hard-code the answer set in a static prompt
    • C. Use one merge field from Account
    • D. Turn off the Trust Layer

    Explanation: Retrieval is the correct fit for a large, changing document library. The other choices are too static or unrelated to grounding.

  4. 4. Which Trust Layer feature is about protecting private data before the LLM request is sent?

    • A. Data masking(correct)
    • B. Topic routing
    • C. Chunking
    • D. Action binding

    Explanation: Data masking protects sensitive values such as PII before the request leaves Salesforce. Chunking and action binding are separate agent/data concepts.

  5. 5. Which TWO statements about the Trust Layer are accurate? (Choose 2)

    • A. It supports auditability of prompt activity(correct)
    • B. It masks sensitive data before the prompt is sent(correct)
    • C. It replaces record-level security
    • D. It automatically turns every prompt into a Flow
    • E. It requires a human to approve every response

    Explanation: The Trust Layer provides masking and auditability. It does not replace Salesforce security, create Flows, or require manual approval for every response.

  6. 6. Why is chunking used in Data 360?

    • A. To make large content retrievable in smaller pieces(correct)
    • B. To create a permission set
    • C. To schedule a Flow
    • D. To send a callout to Slack

    Explanation: Chunking makes large content usable for retrieval by breaking it into smaller passages. It is not an access-control or integration feature.

  7. 7. A company wants employees to ask policy questions and get answers from uploaded documents with little setup. Which capability should they use?

    • A. Agentforce Data Library(correct)
    • B. Apex test data factories
    • C. Salesforce Chatter groups
    • D. Lightning pages only

    Explanation: Data Library is the low-code way to upload documents for retrieval by agents and prompt templates. The other options do not create that retrieval experience.

  8. 8. What should a retriever return?

    • A. The most relevant indexed chunks(correct)
    • B. A new Apex class
    • C. A report folder
    • D. A permission set group

    Explanation: Retrievers return relevant indexed chunks so the model can ground its answer. They do not create code or security metadata.

  9. 9. What is the purpose of indexing in the grounding pipeline?

    • A. Create a searchable representation of chunked content(correct)
    • B. Route a conversation to a human
    • C. Change the user's permission set
    • D. Generate a summary email

    Explanation: Indexing makes the chunked content searchable for retrieval. The other options are not part of the indexing step.

  10. 10. An admin is choosing chunk sizes for lengthy policy PDFs. What is the main trade-off?

    • A. Precision versus surrounding context(correct)
    • B. User licenses versus storage limits
    • C. Debug logs versus transaction logs
    • D. Profiles versus roles

    Explanation: Smaller chunks improve precision but may lose context, while larger chunks preserve context but can add noise. The other pairs are unrelated to retrieval design.

  11. 11. What is the role of an Action in Agentforce?

    • A. A discrete capability the agent can invoke(correct)
    • B. A report folder
    • C. A set of sharing rules
    • D. A page layout section

    Explanation: Actions are the executable parts of the agent. They are not reporting, sharing, or layout features.

  12. 12. A company wants a chat assistant for customers on a public support site. Which agent type should they choose?

    • A. Service Agent(correct)
    • B. Employee Agent
    • C. Admin Agent
    • D. Sandbox Agent

    Explanation: Service Agents are intended for external customer support scenarios. Employee Agents are for authenticated internal users.

  13. 13. A builder needs an agent to invoke a custom tax calculator service and continue the conversation with the result. What should be configured?

    • A. A custom Agent Action backed by Flow or Apex(correct)
    • B. A larger chunk size
    • C. A report subscription
    • D. A new profile

    Explanation: A custom action is the supported extension point when the standard actions do not cover the integration. The other options do not provide runtime service invocation.

  14. 14. Which THREE channels are valid agent connection points in the guide? (Choose 3)

    • A. Digital experience(correct)
    • B. Slack(correct)
    • C. Voice(correct)
    • D. Excel macro
    • E. Printer tray

    Explanation: The exam guide lists digital experience, Slack, and voice among the supported connection points. The remaining options are not channels.

  15. 15. The agent must stop after two failed attempts to collect a missing field and hand the user to a human. Which design choice is best?

    • A. Use filters and variables to enforce the stop condition(correct)
    • B. Make the prompt longer
    • C. Set the model temperature to maximum
    • D. Turn off analytics

    Explanation: Deterministic stop conditions should be enforced with explicit controls, not model creativity. Filters and variables are the guide's mechanisms for this behavior.

  16. 16. Why is agent security context important for actions?

    • A. It controls what the action can read or write(correct)
    • B. It sets the org's currency
    • C. It determines the chatter feed theme
    • D. It replaces sandbox refreshes

    Explanation: The security context determines the actual data access available to the action. It does not change org settings or lifecycle operations.

  17. 17. Which scenario is the best fit for Agent API?

    • A. A retail mobile app needs programmatic access to an existing agent(correct)
    • B. A user wants a formula field updated
    • C. A report needs more rows
    • D. A profile needs to be cloned

    Explanation: Agent API is for external applications that want to interact with an existing agent. The other options are unrelated to agent conversations.

  18. 18. What is the best description of a Topic?

    • A. A subject area that groups instructions and actions(correct)
    • B. A field in a report
    • C. A data encryption key
    • D. A browser extension

    Explanation: A Topic scopes the conversation around a subject area and organizes actions. It is not a reporting or security artifact.

  19. 19. A builder already has a standard Knowledge search action that solves the requirement. No custom filtering or logging is needed. What is the best choice?

    • A. Use the standard action(correct)
    • B. Build a custom action anyway
    • C. Move the requirement to Data Library
    • D. Use Multi-Agent Orchestration

    Explanation: When a standard action already meets the need, it is the preferred choice because it is maintained and simpler to manage. A custom wrapper is only justified by an extra business requirement.

  20. 20. An admin wants to know whether a newly built agent behaves well on a fixed set of test prompts before deployment. Which feature should they use?

    • A. Testing Center(correct)
    • B. Login History
    • C. Data Loader
    • D. Dashboard Builder

    Explanation: Testing Center is specifically for validating agent outputs against curated inputs. The other options do not evaluate agent behavior.

  21. 21. What is the supported path for moving agent metadata to production?

    • A. Metadata deployment tools(correct)
    • B. Copy and paste from Setup pages
    • C. A report export
    • D. A static resource upload

    Explanation: Agent metadata should be promoted using standard deployment tools. Manual copy-and-paste and unrelated file uploads are not the deployment path.

  22. 22. Which TWO checks matter before deploying a prompt template? (Choose 2)

    • A. Production has access to the model used by the template(correct)
    • B. All referenced fields and grounding sources exist in production(correct)
    • C. The sandbox org is refreshed
    • D. Users have a Slack workspace
    • E. The template is converted into Apex

    Explanation: Template deployment depends on model access and the existence of every referenced component in production. The other items are not the core deployment prerequisites.

  23. 23. Which capability is used to inspect how an agent is performing over time?

    • A. Agent analytics(correct)
    • B. Page Layout Editor
    • C. Permission Set Groups
    • D. Translation Memory

    Explanation: Agent analytics provides visibility into performance and usage. The other choices do not monitor agent behavior.

  24. 24. A builder sees that a topic is underperforming after launch. What is the best next step?

    • A. Use analytics to identify failing conversations, then refine and retest(correct)
    • B. Delete all actions
    • C. Disable permissions globally
    • D. Move the agent to another channel without changes

    Explanation: The exam guide's optimization loop starts with analytics and then iterates on the topic, grounding, and testing. The other options do not address the performance issue directly.

  25. 25. The business wants one focused agent for support and is debating whether to force a multi-agent architecture from the start. What is the most aligned recommendation?

    • A. Start with Single-Agent architecture unless the use case truly requires multiple agents(correct)
    • B. Always split into multiple agents immediately
    • C. Wait until every department agrees
    • D. Avoid open standards like MCP and A2A

    Explanation: The guide recommends SOMA for well-scoped problems because it keeps complexity lower and control higher. Multi-agent protocols are for cases where coordination really matters.