Free Salesforce Agentforce Specialist practice questions

10 free Salesforce Agentforce Specialist practice questions with the correct answer and a full explanation for each, taken from the CertStash pack of 158 questions. Work through them, then open each answer to check your reasoning.

Question 1

Universal Containers has grounded a prompt template with a related list. During user acceptance testing (UAT), users are not getting the correct responses.

What is causing this issue?

  1. The related list is not on the parent object’s page layout.
  2. The related list prompt template option is not enabled.
  3. The related list is Read Only.
Show answer and explanation

Correct answer: A. The related list is not on the parent object’s page layout.

For a prompt template with a related list to function correctly during UAT, the related list must be present on the parent object's page layout. Without it being added to the page layout, the prompt template cannot access or display the related list data, resulting in users not receiving the correct responses. The related list prompt template option being enabled and the read-only status are secondary concerns that only apply once the related list is properly configured on the layout.

Why the other options are wrong

  • B. The related list prompt template option being enabled is necessary but insufficient without the related list actually being on the page layout.
  • C. A read-only related list can still function with prompt templates; the primary issue is the list's presence on the page layout.

Question 2

Amid their busy schedules, sales reps at Universal Containers dedicate time to follow up with prospects and existing clients via email regarding renewals or new deals. They spend many hours throughout the week reviewing past communications and details about their customers before performing their outreach.

Which standard Agent action helps sales reps draft personalized emails to prospects by generating text based on previous successful communications?

  1. Agent Action: Draft of Revise Sales Email
  2. Agent Action: Summarize Record
  3. Agent Action: Find Similar Opportunities
Show answer and explanation

Correct answer: A. Agent Action: Draft of Revise Sales Email

The Agent Action: Draft or Revise Sales Email is specifically designed to help sales representatives generate personalized email content based on previous communications and customer details. It leverages historical data to create contextually relevant outreach messages. Summarize Record would only provide record summaries, and Find Similar Opportunities focuses on opportunity matching rather than email composition.

Why the other options are wrong

  • B. Summarize Record generates summaries of records but does not help draft or compose personalized emails.
  • C. Find Similar Opportunities helps identify comparable opportunities but is not designed for email composition.

Question 3

Universal Containers has an active standard email prompt template that does not fully deliver on the business requirements.

Which steps should an Agentforce Specialist take to use the content of the standard prompt email template in question and customize it to fully meet the business requirements?

  1. Save as New Version and edit as needed.
  2. Clone the existing template and modify as needed.
  3. Save as New Template and edit as needed.
Show answer and explanation

Correct answer: C. Save as New Template and edit as needed.

Standard prompt templates shipped by Salesforce are read only, so they cannot be edited or versioned in place. In Prompt Builder you open the standard email template and choose Save as New Template, which produces an editable custom template that carries over the original content. The specialist then edits that copy until it meets the business requirements, leaving the standard template untouched.

Why the other options are wrong

  • A. Save as New Version only applies to custom templates you already own and does not make a standard template editable.
  • B. Prompt Builder does not expose a Clone action for standard prompt templates; the supported path is Save as New Template.

Question 4

Universal Containers (UC) recently rolled out Einstein Generative AI capabilities and has created a custom prompt to summarize case records.

Users have reported that the case summaries generated are not returning the appropriate information.

What is a possible explanation for the poor prompt performance?

  1. The prompt template version is incompatible with the chosen LLM.
  2. The Einstein Trust Layer is incorrectly configured.
  3. The data being used for grounding is incorrect or incomplete.
Show answer and explanation

Correct answer: C. The data being used for grounding is incorrect or incomplete.

When a prompt template generates poor-quality summaries, the root cause is typically that the data being used for grounding, the case record fields and information, is incorrect, incomplete, or irrelevant to what the prompt is trying to summarize. The prompt relies on quality input data to produce quality output. LLM version compatibility and Einstein Trust Layer configuration would typically cause complete failures or security issues rather than inconsistent or inappropriate information in summaries.

Why the other options are wrong

  • A. Prompt template version incompatibility with an LLM would typically prevent execution entirely rather than cause poor information quality.
  • B. Einstein Trust Layer misconfiguration would affect data handling and compliance rather than the accuracy or appropriateness of the generated content.

Question 5

Universal Containers (UC) plans to implement prompt templates that utilize the standard foundation models.

What should UC consider when building prompt templates in Prompt Builder?

  1. Ask it to role-play as a character in the prompt template to provide more context to the LLM.
  2. Include multiple-choice questions within the prompt to test the LLM’s understanding of the context.
  3. Train LLM with data using different writing styles including word choice, intensifiers, emojis, and punctuation.
Show answer and explanation

Correct answer: A. Ask it to role-play as a character in the prompt template to provide more context to the LLM.

Role-playing instructions in prompt templates provide context and guidance to the LLM about the persona or perspective it should adopt, which improves the quality and relevance of responses. This is a recognized best practice in prompt engineering. Multipl-hoice testing within prompts wastes tokens and is inefficient, and training the foundation model with varied writing styles would require model retraining, which is not how standard foundation models in Prompt Builder are customized.

Why the other options are wrong

  • B. Including multiple-choice questions within prompts to test the LLM's understanding is inefficient and wastes token allocation.
  • C. Foundation models cannot be trained with custom data within Prompt Builder; they are pre-trained and accessed through standard configurations.

Question 6

Universal Containers implements Custom Agent Actions to enhance its customer service operations. The development team needs to understand the core components of a Custom Agent Action to ensure proper configuration and functionality.

What should the development team review in the Custom Agent Action configuration to identify one of the core components of a Custom Agent Action?

  1. Instructions
  2. Output Types
  3. Action Triggers
Show answer and explanation

Correct answer: A. Instructions

Instructions are a core component of a Custom Agent Action. They tell the large language model what the action does, when to use it, and how to interpret the data it works with, which is what drives correct action selection and execution. Reviewing the instructions is therefore the way the team identifies a defining piece of the action's configuration.

Why the other options are wrong

  • B. Output data is inherited from the underlying flow, Apex, or API and is described through output instructions, not a separate configurable element called Output Types.
  • C. Action Triggers are not part of a Custom Agent Action; the agent's topic and instructions determine when an action runs.

Question 7

What is true of Agentforce Testing Center?

  1. Running tests risks modifying CRM data in a production environment.
  2. Agentforce Testing Center can only be used in a production environment.
  3. Running tests does not consume Einstein Requests.
Show answer and explanation

Correct answer: A. Running tests risks modifying CRM data in a production environment.

Agentforce Testing Center executes the agent's real actions during a test run, which means flows, Apex, and record operations actually fire. Because of that, tests can create or update CRM data, so running them in production carries real data risk and Salesforce recommends testing in a sandbox first.

Why the other options are wrong

  • B. Testing Center is available in sandbox as well as production, and sandbox is the recommended environment.
  • C. Test runs invoke the model just like live conversations, so they do consume Einstein Requests.

Question 8

Universal Containers built a Field Generation prompt template that worked for many records, but users are reporting random failures with token limit errors.

What is the cause of the random nature of this error?

  1. The number of tokens that can be processed by the LLM varies with total user demand.
  2. The number of tokens generated by the dynamic nature of the prompt template will vary by record.
  3. The template type needs to be switched to Flex to accommodate the variable amount of tokens generated by the prompt grounding.
Show answer and explanation

Correct answer: B. The number of tokens generated by the dynamic nature of the prompt template will vary by record.

Random token limit errors in a Field Generation prompt template occur because the number of tokens generated varies depending on the specific data within each record. Different records contain different amounts of text in grounded fields, resulting in variable token consumption. When a record contains more data, it may exceed the token limit while others do not, creating the appearance of random failures. System-wide token availability does not fluctuate with user demand in this manner, and the template type is not the issue.

Why the other options are wrong

  • A. LLM token processing limits are fixed and do not vary with total user demand across the system.
  • C. Switching template types does not address the root cause of variable token generation based on record content.

Question 9

Universal Containers (UC) is creating a new custom prompt template to populate a field with generated output. UC enabled the Einstein Trust Layer to ensure AI Audit data is captured and monitored for adoption and possible enhancements.

Which prompt template type should UC use and which consideration should UC review?

  1. Flex, and that Dynamic Fields is enabled
  2. Field Generation, and that Dynamic Forms is enabled
  3. Field Generation, and that Dynamic Fields is enabled
Show answer and explanation

Correct answer: B. Field Generation, and that Dynamic Forms is enabled

A Field Generation prompt template is the type designed to write generated content straight into a record field, which matches UC's goal. The key consideration is that the Lightning record page must use Dynamic Forms, because generated fields can only be surfaced and placed on a page built with Dynamic Forms. With the Einstein Trust Layer enabled, the audit trail for those generations is captured automatically for monitoring and tuning.

Why the other options are wrong

  • A. Flex is a general purpose template type invoked from flows, Apex, or the API, and it is not the type used to populate a record field.
  • C. The template type is right, but Dynamic Fields is not the prerequisite: field generation depends on the record page using Dynamic Forms.

Question 10

Universal Containers (UC) wants to build an Agentforce Service Agent that provides the latest, active, and relevant policy and compliance information to customers. The agent must:

Semantically search HR policies, compliance guidelines, and company procedures.

Ensure responses are grounded on published Knowledge.

Allow Knowledge updates to be reflected immediately without manual reconfiguration.

What should UC do to ensure the agent retrieves the right information?

  1. Manually add policy responses into the AI model to prevent hallucinations.
  2. Set up an Agentforce Data Library to store and index policy documents for AI retrieval.
  3. Enable the agent to search all internal records and past customer inquiries.
Show answer and explanation

Correct answer: B. Set up an Agentforce Data Library to store and index policy documents for AI retrieval.

The Agentforce Data Library is the correct solution for storing, indexing, and semantically searching policy documents while ensuring responses are grounded in published Knowledge. It allows knowledge updates to be reflected immediately without manual reconfiguration, enabling the agent to retrieve current, relevant, and accurate information with each query.

Why the other options are wrong

  • A. Manually adding responses into the AI model creates inflexibility, prevents real-time updates, and does not leverage semantic search capabilities.
  • C. Searching all internal records and past inquiries introduces noise and irrelevant data, reducing accuracy and potentially including outdated or non-authoritative information.

That was 10 of 158.

The full Salesforce Agentforce Specialist pack has all 158 questions, each with the answer, the explanation and why the other options are wrong, plus a questions-only copy for timed runs. US$39, paid once, with free monthly updates and a pass-or-your-money-back guarantee.

Get the full pack