Courseiva

Salesforce AI Associate AI Associate (AI Associate) — Questions 601675

753 questions total · 11pages · All types, answers revealed

Page 8

Page 9 of 11

Page 10
601
MCQmedium

A sales manager wants to automatically log emails from a specific customer domain to Salesforce, but exclude internal company emails and spam. Which feature should they configure?

A.Einstein Activity Capture
B.Einstein Email Insights
C.Einstein Lead Scoring
D.Einstein Conversation Insights
AnswerA

Activity Capture logs emails and events to Salesforce and supports excluded addresses configuration.

Why this answer

Einstein Activity Capture is the correct feature because it automatically logs emails and events from supported email clients (like Gmail and Outlook) into Salesforce, with configurable rules to include or exclude specific domains. This allows the sales manager to set a rule to log emails from the customer domain while excluding internal company emails and spam, without requiring manual user action or complex automation.

Exam trap

The trap here is that candidates confuse Einstein Activity Capture (which handles automatic email logging with domain rules) with Einstein Email Insights (which only provides analytics on already-logged emails), leading them to pick the wrong feature for a configuration task.

How to eliminate wrong answers

Option B is wrong because Einstein Email Insights is an analytics tool that surfaces email engagement metrics (like open rates and reply times) and does not provide automatic logging or domain-based filtering. Option C is wrong because Einstein Lead Scoring uses predictive models to rank leads based on conversion likelihood, not to manage email logging or domain exclusions. Option D is wrong because Einstein Conversation Insights analyzes voice call recordings and transcripts for coaching insights, not email logging or domain-based filtering.

602
Multi-Selectmedium

Which TWO data preparation steps are critical for ensuring high-quality training data?

Select 2 answers
A.Increasing dataset size by adding noise.
B.Removing duplicate records.
C.Normalizing all features.
D.Handling missing values appropriately.
E.Using only labeled data.
AnswersB, D

Duplicates can overrepresent certain patterns and skew model training.

Why this answer

Duplicate records in a dataset can cause the model to overfit to repeated patterns, biasing the learned distribution and reducing generalization. Removing duplicates ensures each data point contributes equally to training, which is essential for robust model performance.

Exam trap

Salesforce often tests the distinction between data preparation steps that ensure data quality (like removing duplicates and handling missing values) versus optional preprocessing or augmentation techniques, leading candidates to mistakenly select normalization or noise addition as critical steps.

603
MCQeasy

A marketing manager wants to recommend products to visitors on a community site based on their browsing behavior. Which Salesforce feature is designed for this use case?

A.Einstein Recommendation Builder
B.Einstein Prediction Builder
C.Einstein Next Best Action
D.Einstein Article Recommendations
AnswerA

Correct feature for product/content recommendations in Experience Cloud.

Why this answer

Einstein Recommendation Builder is the correct feature because it is specifically designed to generate personalized product or content recommendations based on user behavior, such as browsing history and past interactions on a community site. It uses collaborative filtering and deep learning models to surface relevant items, matching the marketing manager's goal of recommending products to visitors.

Exam trap

The trap here is that candidates often confuse Einstein Next Best Action (a decision engine for guided actions) with Einstein Recommendation Builder (a product recommendation engine), because both involve 'recommendations' but serve fundamentally different purposes.

How to eliminate wrong answers

Option B is wrong because Einstein Prediction Builder is used to create custom predictive models (e.g., predicting churn or conversion likelihood) based on historical data, not to generate real-time product recommendations from browsing behavior. Option C is wrong because Einstein Next Best Action is a decision engine that recommends the next best action (e.g., a specific offer or step) in a guided process, not a product recommendation system based on browsing history. Option D is wrong because Einstein Article Recommendations is tailored for recommending knowledge articles (e.g., help docs or FAQs) within Service Cloud, not products for a community site.

604
MCQeasy

A company plans to train an AI model using data from Salesforce CRM and an external marketing automation platform. What is the first step to unify these data sources in Data Cloud?

A.Define a Data Model that maps fields from both sources to a unified customer object
B.Create two separate Data Streams to bring data in
C.Build a Calculated Insight to merge the data
D.Set up a Data Transformation to blend the sources
AnswerA

Unifies the schema before ingestion.

Why this answer

Creating a data model that maps fields from both sources to a common object ensures consistency. Option B is wrong because data streams come after the model. Option C is wrong because Calculated Insights are for aggregations.

Option D is wrong because data transformations are applied later.

605
MCQeasy

A marketing team wants to use AI to predict which leads are most likely to convert. The CRM contains historical lead data with conversion outcomes. Which type of machine learning should be used?

A.Unsupervised learning
B.Generative AI
C.Reinforcement learning
D.Supervised learning
AnswerD

Supervised learning uses labeled historical data to train a model to predict conversion probability.

Why this answer

Supervised learning uses labeled data (historical outcomes) to predict future outcomes, making it ideal for lead scoring.

606
MCQhard

A company uses Einstein Prediction Builder to predict customer churn. They notice the model is less accurate for a certain segment. What is the best approach to mitigate bias?

A.Increase model complexity
B.Add more features
C.Remove the segment from training
D.Retrain with balanced data
AnswerD

Correct. Balanced data helps the model perform consistently across segments.

Why this answer

Retraining with balanced data directly addresses the root cause of bias: an imbalanced training set where the model underperforms for a specific segment. By ensuring the segment is adequately represented, the model learns more equitable patterns, reducing bias without sacrificing overall accuracy. This aligns with ethical AI practices in Einstein Prediction Builder, where data quality and representation are critical for fair predictions.

Exam trap

Salesforce often tests the misconception that bias is a technical problem solvable by adding complexity or features, when in fact it is a data representation issue requiring balanced training data.

How to eliminate wrong answers

Option A is wrong because increasing model complexity (e.g., adding more layers or interactions) can exacerbate overfitting and may amplify existing biases rather than mitigate them, especially if the biased segment is underrepresented. Option B is wrong because adding more features does not guarantee bias reduction; irrelevant or proxy features can introduce new biases or reinforce existing ones, and the core issue is data imbalance, not feature insufficiency. Option C is wrong because removing the segment from training eliminates the model's ability to predict for that segment entirely, which is a form of exclusion bias and violates ethical AI principles of fairness and inclusivity.

607
MCQhard

A system administrator receives an error when running a Data Cloud data transform: 'Row-level security settings are preventing access to the source data.' The admin has appropriate permissions. What is the most likely cause?

A.The target object has field-level security.
B.The data stream is scheduled during maintenance.
C.The data transform is set to run as the admin's default user.
D.The source object has sharing rules that restrict access for the data transform's running user.
AnswerD

Row-level security is about sharing; the running user may not see all rows.

Why this answer

Data Cloud data transforms run under a specific running user context, and row-level security (RLS) settings on the source object can restrict that user's access to rows, even if the admin has broad permissions. The error indicates that the running user lacks visibility to certain source data rows due to sharing rules or RLS policies, which is a common cause of this specific error message.

Exam trap

Salesforce often tests the distinction between row-level security and field-level security, and candidates mistakenly choose field-level security (Option A) because they confuse the two concepts, not realizing the error message explicitly points to row-level restrictions.

How to eliminate wrong answers

Option A is wrong because field-level security (FLS) controls access to fields, not rows, and the error explicitly mentions 'row-level security,' not field-level. Option B is wrong because scheduled maintenance would typically cause a different error (e.g., 'service unavailable' or timeout), not a row-level security access denial. Option C is wrong because running as the admin's default user would inherit the admin's permissions, which should have access; the error states the admin has appropriate permissions, so the issue is with the running user context, not the default user setting.

608
Multi-Selecthard

An admin is training an Einstein Prediction Builder model for binary classification (lead conversion). The model performance is poor. Which THREE actions should the admin take to improve it?

Select 3 answers
A.Increase the number of records in the training dataset
B.Use fewer records to avoid overfitting
C.Remove features that have little correlation with conversion
D.Add more features, even if they are not related
E.Ensure the prediction field value (e.g., converted) is well-represented in the data
AnswersA, C, E

More data generally improves model accuracy.

Why this answer

Increasing the number of records in the training dataset provides more examples for the model to learn patterns from, which is critical for binary classification tasks like lead conversion. In Einstein Prediction Builder, a larger dataset helps reduce variance and improves the model's ability to generalize, especially when the initial performance is poor due to insufficient data.

Exam trap

The AI Associate exam often tests the misconception that reducing data prevents overfitting, but in Einstein Prediction Builder, overfitting is more commonly caused by too many irrelevant features or insufficient regularization, not by having too many records.

609
MCQmedium

A customer service manager wants to use Einstein Bots to handle common inquiries. They are concerned about the bot generating offensive responses. Which Einstein Trust Layer feature should they enable to minimize this risk?

A.Zero Data Retention
B.Grounding
C.Toxicity detection
D.PII masking
AnswerC

Toxicity detection scans for harmful language and can block or flag responses, ensuring the bot is safe for customers.

Why this answer

Toxicity detection is a feature of the Einstein Trust Layer that identifies and filters harmful or offensive language before it is sent to customers. This directly addresses the concern about offensive responses, aligning with the Safety principle.

610
Multi-Selecthard

An AI system used for recruitment has been found to be biased. Which THREE steps should be taken to address this? (Choose three.)

Select 3 answers
A.Deploy the model without changes
B.Audit the training data for bias
C.Retrain the model with a balanced dataset
D.Remove demographic data from the model
E.Monitor outcomes for disparate impact
AnswersB, C, E

Correct. Auditing identifies sources of bias.

Why this answer

Auditing training data, retraining with balanced data, and monitoring outcomes are essential corrective actions.

611
Multi-Selectmedium

A sales operations manager wants to improve the accuracy of Einstein Opportunity Scoring. Which TWO actions should they take? (Choose two.)

Select 2 answers
A.Ensure that historical opportunity data includes both won and lost records
B.Use Einstein Discovery to analyze the same data
C.Increase the number of records by duplicating existing opportunities
D.Select only the most relevant fields as factors in the model setup
E.Manually override scores for high-value opportunities
AnswersA, D

The model needs examples of both outcomes to learn effectively.

Why this answer

Einstein Opportunity Scoring is a predictive model that learns from historical opportunity data to identify patterns that lead to wins or losses. Including both won and lost records ensures the model has a balanced training set, which is essential for accurately distinguishing between likely wins and losses. Without lost records, the model would be biased and unable to effectively predict negative outcomes.

Exam trap

The trap here is that candidates often think more data is always better (Option C) or that manual adjustments can improve accuracy (Option E), but Salesforce specifically tests the understanding that model accuracy depends on balanced, high-quality training data and automated feature selection.

612
MCQmedium

A Salesforce admin wants to create a prompt template that generates a custom field value for a record based on other field values. Which Prompt Builder template type should they use?

A.Flex Prompt
B.Case Summary
C.Field Generation
D.Sales Email
AnswerC

Field Generation template type is designed to generate field values for Salesforce records.

Why this answer

Field Generation is the correct Prompt Builder template type because it is specifically designed to automatically populate a custom field on a record by generating a value based on other field values within the same record. This template uses a Large Language Model (LLM) to analyze the provided field data and produce a deterministic output that is written directly to the field, fulfilling the admin's requirement.

Exam trap

The trap here is that candidates often confuse Field Generation with Flex Prompt, assuming any custom generation task requires a flexible template, but Field Generation is the only one that directly writes the output to a field on the record.

How to eliminate wrong answers

Option A is wrong because Flex Prompt is a free-form template used for general-purpose generative AI tasks like creating summaries or drafts, not for directly generating and writing a value into a specific custom field on a record. Option B is wrong because Case Summary is a template designed to generate a summary of a Case record's details, not to populate a custom field with a generated value based on other fields. Option D is wrong because Sales Email is a template intended for drafting email content for sales outreach, not for generating a field value on a record.

613
MCQmedium

A sales team wants to compare their own forecast amounts with an AI-generated prediction based on historical data and trends. Which Salesforce feature provides this comparison?

A.Einstein Opportunity Scoring
B.Einstein Forecasting
C.Einstein Lead Scoring
D.Einstein Prediction Builder
AnswerB

Einstein Forecasting uses AI to predict future sales and allows side-by-side comparison with rep commits.

Why this answer

Einstein Forecasting provides AI-generated predictions that can be compared against reps' commit forecasts, helping identify risks and opportunities.

614
Multi-Selectmedium

An admin wants to use Einstein Activity Capture to automatically log emails and events to Salesforce. Which TWO considerations are important when setting up this feature?

Select 2 answers
A.Events (meetings) are automatically created as Salesforce events.
B.It requires a separate license for each integration user.
C.Users must manually forward emails to Salesforce.
D.Excluded email addresses can be configured to prevent certain emails from being logged.
E.It only works with Outlook, not Gmail.
AnswersA, D

Correct. Synced events appear as Salesforce events.

Why this answer

Einstein Activity Capture automatically creates Salesforce event records for meetings (events) that are synced from connected email and calendar systems, such as Outlook or Google Calendar. This eliminates the need for manual entry, as the feature captures calendar events and logs them as Salesforce events based on configured settings.

Exam trap

The trap here is that candidates often assume Einstein Activity Capture requires manual user action (like forwarding emails) or is limited to a single email platform, when in fact it is fully automated and supports both major providers.

615
MCQhard

An organization is preparing data for Einstein Next Best Action. They have multiple action types (discounts, product suggestions, content). Which data model approach best ensures accurate recommendations?

A.Train a separate model per customer segment and then merge.
B.Create a separate model for each action type and combine results manually.
C.Build an ensemble of models and average their outputs.
D.Use a single model that includes all action types in the training data.
AnswerD

A unified model captures interactions between actions, leading to better optimization of the next best action.

Why this answer

Einstein Next Best Action is designed to learn from all action types simultaneously within a single model. By including all action types (discounts, product suggestions, content) in the training data, the model can capture cross-action patterns and relative effectiveness, leading to more accurate and contextually relevant recommendations. A unified model avoids fragmentation and ensures consistent scoring across actions.

Exam trap

Salesforce often tests the misconception that separate models per action or segment improve accuracy, when in fact Einstein Next Best Action requires a single unified model to learn cross-action patterns and deliver coherent recommendations.

How to eliminate wrong answers

Option A is wrong because training a separate model per customer segment and merging results introduces fragmentation and ignores cross-segment patterns, reducing the model's ability to generalize and leading to inconsistent recommendations. Option B is wrong because creating a separate model for each action type and manually combining results loses the interdependencies between actions, such as when a discount makes a product suggestion more effective, and adds unnecessary complexity without leveraging Einstein's built-in multi-action support. Option C is wrong because building an ensemble of models and averaging outputs does not align with Einstein Next Best Action's architecture, which expects a single unified model to optimize across all actions; averaging can dilute the signal from specific action types and reduce recommendation precision.

616
MCQhard

A data scientist notices that a sentiment analysis model performs well on general product reviews but fails to correctly classify negative sentiment in industry-specific jargon (e.g., 'the API is flaky'). The most likely cause is:

A.The training data lacked examples of industry-specific language
B.The model is overfitted to training data
C.The model architecture is too simple
D.Sentiment analysis cannot handle jargon
AnswerA

Correct: if training data does not include domain terms, the model cannot learn them.

Why this answer

The model was likely trained on general data and does not generalize to domain-specific language. This is a domain adaptation issue, which can be due to training data not being representative.

617
Multi-Selectmedium

Which two actions are consistent with Salesforce's ethical AI principles when deploying a custom AI model on Salesforce?

Select 2 answers
A.Use only structured data for training.
B.Use the model to make decisions without human review.
C.Optimize for accuracy over all other metrics.
D.Document the model's intended use and limitations.
E.Provide a mechanism for users to challenge model decisions.
AnswersD, E

Transparency is a core ethical principle.

Why this answer

Documenting intended use (transparency) and providing a challenge mechanism (accountability) align with ethical AI principles.

618
MCQeasy

A sales manager wants to use Einstein Activity Capture to log emails automatically. Which prerequisite must be met?

A.The org must be on Enterprise Edition or higher.
B.The user's email must be hosted on a supported platform (Gmail, Outlook).
C.The user must have an Einstein AI license.
D.The user must manually enable email logging in personal settings.
AnswerB

Einstein Activity Capture integrates with supported email providers.

Why this answer

Einstein Activity Capture requires that user emails be hosted on a supported platform (Gmail or Outlook/Exchange) because the feature uses server-side synchronization via APIs (Google Workspace APIs or Microsoft Graph) to automatically log emails and events into Salesforce. Without a supported email host, the service cannot connect to the mail server to capture activity data.

Exam trap

The trap here is that candidates often assume Einstein Activity Capture requires a higher edition (Enterprise+) or an AI license, when in fact the critical prerequisite is a supported email platform, not the edition or an add-on license.

How to eliminate wrong answers

Option A is wrong because Einstein Activity Capture is available on Professional, Enterprise, and Unlimited Editions, not exclusively on Enterprise Edition or higher. Option C is wrong because Einstein Activity Capture does not require an Einstein AI license; it is included with Sales Cloud or Service Cloud licenses that support the feature. Option D is wrong because email logging in Einstein Activity Capture is automatic once configured by an administrator; users do not need to manually enable it in personal settings.

619
Multi-Selectmedium

Which TWO statements correctly describe predictive AI compared to generative AI?

Select 2 answers
A.Generative AI is best suited for lead scoring
B.Predictive AI is used for forecasting numeric outcomes like churn probability
C.Generative AI produces new content such as text, images, or code
D.Both predictive and generative AI rely on the same algorithms
E.Predictive AI can generate realistic customer service responses
AnswersB, C

Predictive AI excels at regression and classification tasks.

Why this answer

Predictive AI forecasts outcomes (churn, CLV) using historical data, while generative AI creates new content like text or images.

620
MCQmedium

A developer creates a custom AI model using Salesforce's AI platform. They want to ensure the model is fair. What should they do first?

A.Use a pre-trained model
B.Test on a small sample
C.Collect diverse training data
D.Deploy and monitor
AnswerC

Correct. Diverse data helps prevent systemic bias.

Why this answer

Collecting diverse training data is the foundational step to ensure fairness in an AI model because it helps mitigate bias at the source. Without diverse data representing all relevant groups, the model may learn skewed patterns that lead to discriminatory outcomes, regardless of subsequent testing or monitoring.

Exam trap

Salesforce often tests the misconception that fairness can be achieved through post-hoc actions like testing or monitoring, rather than through proactive data collection, leading candidates to choose 'Test on a small sample' or 'Deploy and monitor' as the first step.

How to eliminate wrong answers

Option A is wrong because using a pre-trained model does not guarantee fairness; the pre-trained model may itself contain biases from its original training data, and the developer still needs to ensure the data used for fine-tuning or adaptation is diverse. Option B is wrong because testing on a small sample is insufficient to detect systemic bias; a small sample may not capture the full range of demographic or behavioral variations, leading to false confidence in fairness. Option D is wrong because deploying and monitoring comes after the model is built; without first ensuring diverse training data, monitoring will only detect issues after harm may have occurred, rather than preventing them at the source.

621
MCQmedium

A sales rep wants to automatically generate a personalized email draft to a lead based on recent account activity. Which Einstein feature should be used?

A.Einstein Activity Capture
B.Einstein Recommendation Builder
C.Einstein Opportunity Scoring
D.Einstein GPT - Sales GPT
AnswerD

Sales GPT can generate email drafts using CRM data and generative AI.

Why this answer

Sales GPT, part of Einstein GPT, is specifically designed to generate personalized email drafts using natural language generation (NLG) based on CRM data such as recent account activity. It leverages generative AI to create context-aware content, unlike other Einstein features that focus on prediction, scoring, or data capture.

Exam trap

The trap here is that candidates confuse Einstein Activity Capture (which logs emails) with generating emails, or assume Einstein Recommendation Builder (which suggests products) can also draft personalized messages.

How to eliminate wrong answers

Option A is wrong because Einstein Activity Capture is a data integration tool that automatically logs emails and events to Salesforce, not a content generation feature. Option B is wrong because Einstein Recommendation Builder is used to create product or content recommendations for websites or commerce, not for drafting personalized emails. Option C is wrong because Einstein Opportunity Scoring predicts the likelihood of an opportunity closing, using machine learning on historical data, and does not generate any email content.

622
MCQmedium

A company's Einstein Sentiment model is used to flag negative customer feedback. The model was trained on English reviews only. When deployed globally, it misclassifies positive reviews in Spanish as negative. What is the primary ethical concern?

A.The model is not interpretable.
B.The model has low accuracy for Spanish reviews.
C.The model is unfair to Spanish-speaking customers.
D.The model violates privacy regulations.
AnswerC

Lack of representation leads to unfair treatment.

Why this answer

The primary ethical concern is fairness: the model was trained exclusively on English reviews, so it systematically misclassifies Spanish positive feedback as negative. This creates a disparate impact on Spanish-speaking customers, violating the principle of algorithmic fairness. The issue is not just low accuracy but an unjust bias that disadvantages a specific linguistic group.

Exam trap

Salesforce often tests the distinction between a model's technical flaw (low accuracy) and the ethical principle it violates (fairness), tricking candidates into picking the symptom over the root ethical concern.

How to eliminate wrong answers

Option A is wrong because interpretability (explainability) is a separate concern; the model could be interpretable yet still unfair. Option B is wrong because low accuracy is a symptom, not the primary ethical concern—the core issue is the unfair bias against Spanish speakers, not mere performance degradation. Option D is wrong because the scenario involves no personal data collection or processing that would violate privacy regulations like GDPR or CCPA; the model only analyzes review text for sentiment.

623
MCQhard

An admin is using Einstein Prediction Builder to predict whether a case will escalate. They have selected the prediction field (binary) and the dataset. After training, they notice the model uses all available fields. What should they do to improve model performance and reduce noise?

A.Increase the dataset size
B.Use a different algorithm by default
C.Select relevant features (input fields) and exclude irrelevant ones
D.Change the prediction field to a different binary field
AnswerC

Feature selection improves model accuracy by removing noisy fields.

Why this answer

Einstein Prediction Builder automatically includes all available fields by default during training, which can introduce noise and reduce model accuracy. By manually selecting only relevant features (input fields) and excluding irrelevant ones, the admin reduces dimensionality, minimizes overfitting, and improves the model's predictive performance. This feature selection step is a standard best practice in machine learning to ensure the model focuses on meaningful predictors.

Exam trap

The trap here is that candidates may assume Einstein Prediction Builder automatically handles feature selection or that increasing data always improves performance, when in fact the tool requires manual feature selection to reduce noise and avoid overfitting.

How to eliminate wrong answers

Option A is wrong because simply increasing the dataset size does not address the core issue of irrelevant fields adding noise; more data with the same irrelevant features can amplify noise and degrade performance. Option B is wrong because Einstein Prediction Builder does not allow users to choose a different algorithm; it uses a default gradient-boosted tree model optimized for binary classification, and the algorithm is not user-selectable. Option D is wrong because changing the prediction field to a different binary field does not solve the problem of irrelevant input fields; the prediction field is the target variable, and altering it would change the prediction objective entirely, not reduce noise from input features.

624
MCQmedium

A sales operations manager wants to automatically prioritize leads based on their likelihood to convert. Which Einstein feature should they use to achieve this?

A.Einstein Prediction Builder
B.Einstein Discovery
C.Einstein Opportunity Scoring
D.Einstein Lead Scoring
AnswerD

Correct. Einstein Lead Scoring assigns a score based on conversion likelihood.

Why this answer

Einstein Lead Scoring is specifically designed to automatically prioritize leads based on their likelihood to convert. It uses a predictive model that analyzes historical lead data and assigns a score (0–100) to each lead, enabling sales teams to focus on high-conversion leads without manual effort.

Exam trap

The trap here is that candidates confuse Einstein Lead Scoring with Einstein Opportunity Scoring, as both use scoring terminology, but they apply to different objects (Lead vs. Opportunity) and serve different stages of the sales cycle.

How to eliminate wrong answers

Option A is wrong because Einstein Prediction Builder is a no-code tool for creating custom predictive models on any object or field, not a pre-built lead prioritization feature. Option B is wrong because Einstein Discovery is an analytics and insights tool that identifies patterns and root causes in data, but it does not automatically score or prioritize leads. Option C is wrong because Einstein Opportunity Scoring is designed to prioritize opportunities (deals) based on likelihood to close, not leads.

625
Multi-Selectmedium

A company wants to use AI to automatically route customer support emails to the appropriate department (billing, technical, sales). Which THREE AI capabilities are needed? (Choose three.)

Select 3 answers
A.Intent detection
B.Entity extraction
C.Sentiment analysis
D.Text classification
E.Generative AI
AnswersA, B, D

Identifies the customer's intent, which maps to a department.

Why this answer

Text classification categorizes emails, intent detection identifies the purpose, and entity extraction can identify account numbers or products to aid routing. Sentiment analysis is about emotion, not routing. Generative AI creates responses, not needed for routing.

626
MCQmedium

A model predicts customer churn with 95% accuracy, but most customers who actually churn are not flagged by the model. Which metric should the team improve?

A.Precision
B.Recall
C.Accuracy
D.F1 score
AnswerB

Recall measures the proportion of actual churners correctly predicted. Low recall indicates many churners are missed.

Why this answer

Recall (true positive rate) measures how many actual churners are correctly identified. High accuracy with low recall indicates the model is biased toward the majority class (non-churners). Precision focuses on how many flagged churners actually churn, F1 is a balance, and accuracy is already high.

627
MCQeasy

A sales rep wants to automatically generate a personalized email to a lead based on their recent activity. Which Einstein GPT feature should the rep use?

A.Sales GPT
B.Service GPT
C.Prompt Builder
D.Einstein Copilot
AnswerA

Sales GPT uses natural language generation to compose email body text from CRM data, directly fulfilling the requirement to generate a personalised email based on recent lead activity. This feature leverages generative AI within Salesforce’s Einstein platform, whereas other GPT tools focus on chat or content creation for different channels. The constraint of “personalised email” is satisfied by Sales GPT’s ability to pull activity history and tailor the output accordingly.

Why this answer

Sales GPT is the correct feature because it is specifically designed for sales use cases, such as generating personalized emails to leads based on their recent activity. It leverages Einstein GPT to create tailored sales communications, unlike Service GPT which focuses on service interactions.

Exam trap

The trap here is that candidates confuse the general-purpose Einstein Copilot or Prompt Builder with the specialized Sales GPT feature, overlooking that Sales GPT is the only option purpose-built for automated sales email generation.

How to eliminate wrong answers

Option B is wrong because Service GPT is built for service scenarios, like drafting case responses or knowledge articles, not for sales-driven lead outreach. Option C is wrong because Prompt Builder is a tool for creating custom prompts for generative AI models, not a prebuilt feature for generating personalized sales emails. Option D is wrong because Einstein Copilot is an assistant that helps users interact with Salesforce via natural language, but it does not automatically generate personalized emails to leads based on recent activity without additional configuration.

628
MCQmedium

A model predicts customer lifetime value with high precision but low recall on high-value customers. What is the business impact?

A.Many false negatives for high-value customers
B.The model is overfitted
C.Many false positives for high-value customers
D.High accuracy on low-value customers
AnswerA

Low recall means the model fails to identify many actual high-value customers.

Why this answer

Low recall means many high-value customers are missed, leading to lost opportunities to retain them.

629
MCQmedium

A sales team wants to automatically generate personalized follow-up emails after each meeting. Which Salesforce AI feature should they use?

A.Sales GPT
B.Prompt Builder
C.Einstein Activity Capture
D.Einstein Copilot
AnswerA

Sales GPT is designed to generate sales emails, call summaries, and meeting follow-ups using generative AI.

Why this answer

Sales GPT is the correct feature because it is specifically designed to generate personalized, AI-driven content like follow-up emails directly within Salesforce. It uses generative AI to create context-aware drafts based on meeting data, such as notes or summaries, without requiring custom prompts or additional configuration.

Exam trap

The trap here is that candidates confuse Sales GPT with Einstein Copilot, assuming both are interchangeable for content generation, but Einstein Copilot is a conversational assistant for general tasks, not a specialized email generator.

How to eliminate wrong answers

Option B (Prompt Builder) is wrong because it is a tool for creating and managing custom prompts for generative AI models, not a pre-built feature for automatically generating follow-up emails; it requires manual setup and integration. Option C (Einstein Activity Capture) is wrong because it focuses on logging and syncing email and calendar activities from external systems (e.g., Outlook or Gmail) into Salesforce, not on generating new email content. Option D (Einstein Copilot) is wrong because it is an AI-powered conversational assistant for answering questions and performing tasks via a chat interface, not a dedicated feature for generating personalized follow-up emails after meetings.

630
MCQhard

A predictive model for opportunity scoring shows high precision but low recall. Which business impact is most likely?

A.The model is overfitting to the training data
B.The sales team wastes time on many low-quality opportunities
C.The model overestimates the likelihood of conversion for most opportunities
D.The sales team misses some convertible opportunities
AnswerD

Low recall means many actual winners are not flagged, causing missed opportunities.

Why this answer

High precision means few false positives (won deals predicted correctly), but low recall means many actual wins are missed. The sales team will likely miss out on some convertible opportunities.

631
MCQhard

A healthcare organization needs to automatically classify incoming cases into predefined categories (e.g., billing, clinical, technical) based on the case description. They have historical case data with known categories. Which Einstein feature is most appropriate?

A.Einstein Vision and Language Platform
B.Einstein Case Classification
C.Einstein Prediction Builder
D.Einstein Next Best Action
AnswerB

This feature is specifically designed to auto-classify cases into fields like Type, Priority, and Reason.

Why this answer

Einstein Case Classification uses AI to automatically assign field values like Type, Priority, and Reason on cases based on historical data.

632
MCQmedium

A company deployed an AI chatbot for customer service. After a week, they receive complaints that the chatbot responds differently based on customer accent. The ethical issue is most likely due to:

A.Lack of personality in the chatbot responses
B.Insufficient computational resources allocated to the chatbot
C.Poor user interface design
D.Bias in the training data leading to discriminatory behavior
AnswerD

Bias in data is a common source of unfair AI behavior.

Why this answer

The chatbot's differing responses based on accent indicate bias in the training data or model. Option D (bias in training data leading to discriminatory behavior) is correct because AI models learn from data, and if the data contains accents correlated with negative outcomes, the model perpetuates that. Option A (insufficient compute resources) is unrelated.

Option B (lack of chatbot personality) is not ethical. Option C (user interface design) is not the cause.

633
Multi-Selecteasy

A company wants to use Einstein Relationship Intelligence to analyze email and calendar data for opportunity insights. Which two conditions must be met? (Select two answers.)

Select 2 answers
A.Exchange or Gmail must be used for email.
B.The feature is only available in Unlimited Edition.
C.Users must have the Einstein Relationship Intelligence permission set.
D.Einstein Relationship Intelligence must be enabled in the org.
E.All users must opt in to email logging.
AnswersC, D

The permission set allows users to view relationship insights.

Why this answer

The Einstein Relationship Intelligence permission set grants users access to the feature's insights and data processing capabilities. Without this permission set, users cannot view or interact with Einstein Relationship Intelligence data, even if the feature is enabled at the org level.

Exam trap

Salesforce often tests the distinction between org-level feature enablement and user-level permission assignment, leading candidates to select only one of these two required conditions.

634
MCQeasy

What type of AI is designed to perform a specific task, such as playing chess or recommending products?

A.Super AI
B.Reactive AI
C.Narrow AI
D.General AI
AnswerC

Narrow AI is specialized for specific tasks like recommendations.

Why this answer

Narrow AI, also called weak AI, is specialized for one task.

635
Multi-Selecteasy

A data analyst wants to use Einstein Discovery to understand factors driving case resolution time. Which TWO outputs does Einstein Discovery provide?

Select 2 answers
A.Bot analytics
B.Waterfall charts
C.Case classifications
D.Lead scores
E.Stories
AnswersB, E

Waterfall charts show how each factor contributes to the outcome.

Why this answer

Waterfall charts are a standard output of Einstein Discovery, used to visualize the contribution of different factors to a target outcome—in this case, case resolution time. They show how each predictor adds or subtracts from the predicted value, making it easy to identify the most influential drivers.

Exam trap

The trap here is that candidates confuse the various Einstein AI products (e.g., Einstein Discovery, Einstein Lead Scoring, Einstein Bots) and assume any output related to analytics or AI is valid, when in fact each product has distinct outputs like Waterfall charts and Stories for Discovery.

636
MCQmedium

A company wants to use AI to automatically extract invoice numbers, dates, and totals from scanned invoices. Which AI capability is MOST relevant?

A.Intent detection
B.Generative AI to create invoices
C.Sentiment analysis
D.Computer vision with entity extraction
AnswerD

Computer vision recognizes text in images, and entity extraction pulls out specific fields.

Why this answer

Computer vision can process images of documents, and entity extraction (often part of NLP) identifies specific data points. Sentiment analysis is for emotions, intent detection for purpose, and generative AI for content creation.

637
MCQmedium

A company wants to use Einstein GPT to generate personalized sales emails for their sales team. They need to ensure that the generated emails adhere to brand voice guidelines. Which tool should they use to define the prompt template for email generation?

A.Einstein Copilot
B.Einstein Discovery
C.Prompt Builder
D.Einstein Recommendation Builder
AnswerC

Correct. Prompt Builder is designed for creating and managing prompt templates for Einstein GPT features.

Why this answer

Prompt Builder is the correct tool because it allows users to create and manage prompt templates that define the structure, tone, and brand voice guidelines for generative AI outputs like sales emails. Unlike other Einstein tools, Prompt Builder is specifically designed to control the input and output of large language models (LLMs) within Salesforce, ensuring generated content adheres to predefined brand standards.

Exam trap

The trap here is that candidates may confuse Einstein Copilot's conversational prompt capability with the template-based prompt management of Prompt Builder, assuming any AI tool that uses prompts can serve the same purpose, but Copilot lacks the structured template creation and governance features required for consistent brand voice enforcement.

How to eliminate wrong answers

Option A is wrong because Einstein Copilot is a conversational AI assistant that uses prompts but does not provide a dedicated interface for defining and managing reusable prompt templates for email generation; it is designed for interactive Q&A and task automation, not template creation. Option B is wrong because Einstein Discovery is a predictive analytics and machine learning tool for uncovering insights and making predictions from data, not for generating natural language content or defining prompt templates. Option D is wrong because Einstein Recommendation Builder is used to create personalized product or content recommendations based on user behavior and business rules, not for generating sales emails or managing prompt templates.

638
MCQeasy

A company wants to use Einstein Article Recommendations to suggest knowledge articles to support agents. What is a prerequisite for this feature?

A.Articles must be of a specific type, such as FAQ.
B.The org must be enabled for Einstein features.
C.A case must be open for the recommendation to appear.
D.Knowledge articles must be created and published.
AnswerD

Articles must exist to be recommended.

Why this answer

Einstein Article Recommendations requires that knowledge articles are created and published in the Salesforce Knowledge base. The feature uses natural language processing (NLP) to match the context of a case or conversation with published articles, so unpublished or draft articles cannot be recommended. Without published articles, the AI model has no content to analyze or suggest.

Exam trap

Salesforce often tests the distinction between general Einstein enablement and feature-specific prerequisites, so candidates mistakenly select Option B thinking that enabling Einstein is the only requirement, when in fact published articles are the critical prerequisite for Article Recommendations to function.

How to eliminate wrong answers

Option A is wrong because Einstein Article Recommendations does not require articles to be of a specific type like FAQ; it works with any standard or custom article type defined in Salesforce Knowledge. Option B is wrong because while Einstein features generally require the org to be enabled for Einstein, this is a platform-level prerequisite for all Einstein services, not a specific prerequisite for Article Recommendations—the question asks for a prerequisite specific to this feature. Option C is wrong because a case does not need to be open for recommendations to appear; Einstein can also suggest articles in other contexts such as Chat, Email-to-Case, or even in the Knowledge tab without an open case.

639
MCQeasy

Refer to the exhibit. A data transformation configuration is shown. Which of the following describes the outcome of applying this transformation?

A.The transformation is invalid because one-hot encoding cannot be combined with scaling.
B.Only 'color' is transformed; 'price' and 'weight' are unchanged.
C.'color' is one-hot encoded into multiple binary columns; 'price' and 'weight' are standardized to have mean 0 and variance 1.
D.'color' is scaled to [0,1] and 'price', 'weight' are one-hot encoded.
AnswerC

Correct interpretation of the config.

Why this answer

The transformation configuration applies a one-hot encoder to the 'color' categorical column, creating multiple binary columns, and applies a standard scaler to the 'price' and 'weight' numerical columns, centering them to mean 0 and scaling to unit variance. This is a common preprocessing pipeline that handles mixed data types appropriately.

Exam trap

Salesforce often tests the ability to distinguish which transformation applies to which column type, trapping candidates who confuse scaling with encoding or assume that different transformations cannot coexist in a single pipeline.

How to eliminate wrong answers

Option A is wrong because one-hot encoding and scaling can be combined in a single transformation pipeline; they are applied to different columns (categorical vs. numerical) and are not mutually exclusive. Option B is wrong because the transformation explicitly applies a standard scaler to 'price' and 'weight', so they are not unchanged; they are standardized. Option D is wrong because it reverses the operations: 'color' is one-hot encoded, not scaled to [0,1], and 'price' and 'weight' are standardized, not one-hot encoded.

640
MCQeasy

A company wants to use Einstein Sentiment Analysis to classify customer feedback. What is the FIRST step they should take to ensure ethical use of customer data?

A.Set up an audit trail for all AI actions
B.Choose a pre-trained model to avoid using customer data
C.Obtain proper consent from customers for using their data in AI
D.Anonymize all customer feedback before analysis
AnswerC

Consent is the foundation of ethical data use. Without it, any further steps may violate privacy regulations.

Why this answer

Ethical AI begins with data governance. Obtaining proper consent from customers to use their feedback for AI analysis is a fundamental requirement under privacy regulations like GDPR and CCPA. It also aligns with the Trusted AI principle of Empathy, respecting customer autonomy.

641
MCQhard

An admin wants to use Einstein GPT to generate personalized sales emails for reps. They need to ensure the emails include the latest product inventory data from an external system. Which approach should they take?

A.Embed a report snapshot in the email using Einstein Analytics
B.Use Einstein Sales GPT with a standard template and manually update the inventory data weekly
C.Use Einstein Copilot to ask the rep to check inventory before sending each email
D.Create a Prompt Template in Prompt Builder that calls an Apex class to fetch inventory data, then use it in Sales GPT
AnswerD

Prompt Builder allows dynamic data retrieval via Apex, ensuring real-time inventory is included in the generated email.

Why this answer

It leverages Prompt Builder to create a custom prompt template that calls an Apex class, enabling real-time retrieval of external inventory data via an API callout. This ensures the personalized sales emails generated by Einstein Sales GPT always include the latest product inventory without manual intervention or stale data.

Exam trap

The trap here is that candidates may confuse static data embedding (like report snapshots) with dynamic data retrieval, or assume that Einstein Copilot can automatically fetch external data without custom Apex integration.

How to eliminate wrong answers

Option A is wrong because embedding a report snapshot from Einstein Analytics provides only static, point-in-time data that does not update dynamically when the email is generated, and it cannot pull live data from an external system. Option B is wrong because manually updating inventory data weekly defeats the purpose of automation and risks sending emails with outdated inventory, violating the requirement for the latest data. Option C is wrong because asking the rep to check inventory before sending each email is a manual workaround that does not automate the inclusion of inventory data in the email generation process, and Einstein Copilot is not designed to inject external data into Sales GPT prompts.

642
MCQhard

A global manufacturing company uses Sales Cloud and has implemented Einstein Opportunity Scoring to prioritize deals. The scoring model was trained on historical data and initially performed well. Over the past month, the scores have become less accurate, with many high-scoring opportunities not closing and some low-scoring ones closing. The admin notices that the sales team has been using a new discounting strategy that heavily influences deal outcomes. The admin wants to improve model performance without manual intervention. Which action should the admin take?

A.Manually adjust the field weights for discount-related fields in the model.
B.Retrain the Einstein Opportunity Scoring model with the latest opportunity data including discount information.
C.Run a data quality report to identify and clean missing discount data.
D.Create a custom field for discount percentage and add it to the model.
AnswerB

Retraining incorporates new patterns.

Why this answer

Retraining the Einstein Opportunity Scoring model with the latest opportunity data, including discount information, allows the machine learning model to automatically learn the new patterns introduced by the sales team's discounting strategy. This aligns with the AI Associate principle that models must be retrained on current data to maintain accuracy when business processes change, without requiring manual intervention.

Exam trap

Salesforce often tests the misconception that adding a field or cleaning data alone will improve model performance, when in fact the model must be retrained to incorporate the new data and learn the changed relationships.

How to eliminate wrong answers

Option A is wrong because manually adjusting field weights contradicts the 'without manual intervention' requirement and undermines the automated machine learning approach of Einstein Opportunity Scoring, which learns weights from data. Option C is wrong because running a data quality report to clean missing discount data addresses data completeness but does not cause the model to learn the new discounting strategy's impact on deal outcomes; the model still needs retraining to incorporate the changed behavior. Option D is wrong because creating a custom field for discount percentage and adding it to the model is a prerequisite step, but it alone does not improve model performance; the model must be retrained with the new field and latest data to adjust its scoring logic.

643
MCQeasy

Refer to the exhibit. What data quality issue does the exhibit reveal?

A.The Summer Sale campaign has duplicate records.
B.The Fall Clearance campaign has no response data.
C.The query syntax is incorrect.
D.The data is not normalized.
AnswerB

NonNullResponse is 0, meaning all responses are null.

Why this answer

The Fall Clearance campaign has zero non-null responses, indicating all response data is missing for that campaign.

644
MCQmedium

A sales leader wants to see an AI-generated forecast that compares the predicted revenue to the reps' commit amounts. Which feature provides this comparison?

A.Einstein Discovery
B.Einstein GPT
C.Einstein Forecasting
D.Einstein Opportunity Scoring
AnswerC

Einstein Forecasting provides AI-driven predictions that can be compared to rep commits.

Why this answer

Einstein Forecasting uses AI to generate predictions that can be compared to rep commit amounts in the forecast dashboard.

645
MCQhard

A Salesforce admin is configuring Einstein Conversation Insights. They want to automatically capture next steps from sales call recordings. Which component of Conversation Insights provides this functionality?

A.Next step capture (powered by Einstein NLP)
B.Call recording transcription
C.Keyword tracking
D.Talk-time metrics
AnswerA

This feature automatically identifies action items and next steps from the conversation.

Why this answer

Einstein Conversation Insights uses Einstein Natural Language Processing (NLP) to automatically analyze sales call transcripts and extract actionable next steps, such as follow-up tasks or commitments. This feature is specifically designed to identify and capture these items without manual effort, leveraging AI to parse conversational context.

Exam trap

The trap here is that candidates often confuse the transcription service (which is a prerequisite) with the AI-powered analysis layer, leading them to select call recording transcription instead of the NLP-driven next step capture.

How to eliminate wrong answers

Option B is wrong because call recording transcription is the underlying process of converting audio to text, not the component that extracts next steps; it provides raw data for analysis but does not perform the intelligent capture. Option C is wrong because keyword tracking is a simpler feature that matches predefined terms or phrases in transcripts, lacking the contextual understanding needed to identify dynamic next steps. Option D is wrong because talk-time metrics measure speaking duration or silence, which is unrelated to extracting action items from conversations.

646
MCQhard

Refer to the exhibit. An admin runs two queries on the Lead object. Both include the custom field Score__c used by Einstein Lead Scoring. The second query is significantly slower. What is the most likely cause?

A.The query is not using a selective filter on Score__c
B.The query uses a date function that is not selective
C.The Score__c field is indexed
D.The Einstein Lead Scoring job is running simultaneously
AnswerA

Large result set without index on Score__c causes slow performance.

Why this answer

Einstein Lead Scoring uses the Score__c field to store lead scores, and the field is not indexed by default. When a query filters on Score__c without an index, it forces a full table scan on the Lead object, which becomes significantly slower as the number of leads grows. The second query likely includes a non-selective filter on Score__c (e.g., a range or inequality), which cannot leverage any existing index and thus degrades performance.

Exam trap

Salesforce often tests the misconception that Einstein features automatically index their underlying fields, when in fact custom fields like Score__c are not indexed by default and require manual indexing for query performance.

How to eliminate wrong answers

Option B is wrong because the question explicitly states both queries include the custom field Score__c, and there is no mention of a date function in either query; the performance difference is due to the filter on Score__c, not a date function. Option C is wrong because Score__c is a custom field used by Einstein Lead Scoring and is not automatically indexed; if it were indexed, the second query would likely be faster, not slower. Option D is wrong because Einstein Lead Scoring jobs run asynchronously in the background and do not directly impact the performance of individual SOQL queries; the slowdown is due to query selectivity, not concurrent job execution.

647
MCQmedium

An admin is troubleshooting Einstein Sentiment. The model returns high confidence but wrong sentiment (e.g., positive reviews labeled negative). What is the most likely issue?

A.The model was not retrained after the last data load.
B.The training data contains predominantly neutral examples.
C.The training data has incorrect labels for sentiment.
D.The field mapping for the sentiment field is incorrect.
AnswerC

Garbage in, garbage out: mislabeled training data leads to confident but incorrect classifications.

Why this answer

If the training data contains incorrect labels for sentiment, the model learns from erroneous ground truth, leading to high confidence in wrong predictions. In Einstein Sentiment, the model's accuracy depends directly on the quality and correctness of the labeled training data; mislabeled examples cause the classifier to associate features with the wrong sentiment class, resulting in confident but incorrect outputs.

Exam trap

Salesforce often tests the concept that high confidence does not imply high accuracy; candidates mistakenly assume retraining or data volume issues are the root cause, rather than recognizing that garbage-in (incorrect labels) leads to garbage-out (confident wrong predictions).

How to eliminate wrong answers

Option A is wrong because retraining after a data load does not fix incorrect labels; it would only reinforce the existing mislabeled patterns. Option B is wrong because predominantly neutral examples would bias the model toward neutral predictions, not cause high-confidence wrong sentiment (e.g., positive labeled as negative). Option D is wrong because incorrect field mapping would typically result in missing or misaligned data, not high-confidence misclassification of sentiment; the model would fail to train or predict altogether.

648
MCQeasy

A government agency uses an AI system to allocate resources for public services such as healthcare and education. The system is designed to optimize overall efficiency based on historical usage data. After deployment, it becomes clear that underserved regions with less historical data receive significantly less funding than well-served regions. The agency's mission is to promote equity. The system's performance metrics show high efficiency, but community leaders protest the unfair distribution. What should the agency do?

A.Abandon the AI system and use a manual, rule-based allocation system.
B.Redesign the system to include fairness constraints that ensure minimum resource levels for underserved regions.
C.Collect more historical data from underserved regions before making adjustments.
D.Continue using the system as is, since it maximizes efficiency.
AnswerB

Fairness constraints balance efficiency with equity, meeting both goals.

Why this answer

Incorporating fairness constraints ensures equitable distribution while still using AI to optimize. Option A ignores the fairness issue. Option C is good but may not be sufficient if the model still biases against underrepresented areas.

Option D reverts to a less efficient system.

649
MCQmedium

An admin wants to create a prompt template that dynamically pulls the case subject and description to generate a knowledge article draft. Which prompt template type should they use in Prompt Builder?

A.Sales Email
B.Field Generation
C.Service GPT Reply Recommendation
D.Flex Prompt
AnswerB

Field Generation templates generate content for a target field like Knowledge Article Body.

Why this answer

Field Generation prompt templates are used to generate content for a specific field, such as a knowledge article draft.

650
MCQmedium

An AI model for predicting employee performance is found to have a higher false positive rate for women than for men. What is the best course of action?

A.Investigate the cause and retrain the model to reduce bias
B.Lower the decision threshold for women to equalize false positive rates
C.Proceed with deployment because the overall accuracy is acceptable
D.Use the model but require manual review for all female candidates
AnswerA

Retraining with fairness constraints mitigates bias.

Why this answer

A higher false positive rate for women indicates the model has learned biased patterns from the training data, likely due to imbalanced or skewed historical data. Investigating the cause—such as examining feature correlations, data distribution, and model architecture—allows for targeted retraining (e.g., reweighting, adversarial debiasing, or fairness constraints) to reduce bias without sacrificing overall performance. This aligns with ethical AI principles and regulatory expectations, ensuring the model is fair across demographic groups.

Exam trap

Salesforce often tests the misconception that adjusting thresholds or adding manual review can fix bias, when in fact these are superficial patches that do not address the root cause in the model's training data or architecture.

How to eliminate wrong answers

Option B is wrong because lowering the decision threshold for women artificially equalizes false positive rates but does not address the underlying bias; it may increase false negatives for women or degrade overall model calibration, leading to inconsistent and unfair outcomes. Option C is wrong because proceeding with deployment despite known bias violates fairness standards and can lead to discriminatory practices, legal liability, and reputational damage, even if overall accuracy is acceptable. Option D is wrong because requiring manual review for all female candidates introduces a separate, potentially biased human-in-the-loop process that is inefficient, costly, and does not fix the model's bias; it also creates a two-tier system that may still result in unfair treatment.

651
MCQhard

A data scientist wants to use Einstein Vision to detect defects in product images. Which type of model should they create?

A.Object detection
B.Image classification
C.Named entity recognition
D.Text classification
AnswerA

Object detection identifies and locates objects (defects) within an image.

Why this answer

Einstein Vision supports object detection models to identify and locate multiple objects in an image, suitable for defect detection.

652
MCQmedium

Refer to the exhibit. A Salesforce developer configures the Einstein Trust Layer as shown. What is the primary purpose of enabling data masking?

A.To improve the accuracy of sentiment analysis.
B.To reduce latency of the AI response.
C.To anonymize personally identifiable information (PII) in the model output.
D.To comply with Salesforce's service-level agreement.
AnswerC

The maskFields specify PII types to be hidden.

Why this answer

Enabling data masking in the Einstein Trust Layer ensures that personally identifiable information (PII) is anonymized before the model output is returned to the user. This protects sensitive data from exposure in AI-generated responses, which is a core requirement for privacy compliance and responsible AI use.

Exam trap

Salesforce often tests the distinction between data masking (which protects output privacy) and data encryption (which protects data in transit or at rest), leading candidates to confuse masking with security controls that affect latency or compliance with SLAs.

How to eliminate wrong answers

Option A is wrong because data masking does not improve sentiment analysis accuracy; it removes or obscures PII, which could actually reduce context for sentiment models if not handled carefully. Option B is wrong because data masking adds processing overhead to scan and redact PII, which may increase latency rather than reduce it. Option D is wrong because while data masking helps meet privacy regulations, it is not specifically tied to Salesforce's service-level agreement (SLA), which covers uptime and performance, not data anonymization.

653
MCQmedium

A company uses AI to automatically categorize customer support tickets into 'Billing', 'Technical', or 'General'. The model is trained on thousands of past tickets labeled by agents. What type of AI task is this?

A.Intent detection
B.Sentiment analysis
C.Named entity recognition
D.Text classification
AnswerD

Text classification assigns predefined labels to text, exactly matching the ticket categorization use case.

Why this answer

This is a text classification problem using supervised learning, where each ticket is assigned to a predefined category based on labeled training data.

654
MCQeasy

Refer to the exhibit. This JSON snippet is from the Einstein Trust Layer configuration. What is the purpose of this configuration?

A.To detect biased predictions based on gender and race
B.To block all predictions involving gender or race
C.To anonymize gender and race data
D.To remove gender and race from the model
AnswerA

Correct. The bias detection feature checks for disparities along these attributes.

Why this answer

The configuration enables bias detection on the specified sensitive attributes (gender and race).

655
MCQmedium

A healthcare provider uses an AI model to predict patient readmission risk. The model is trained on historical data that underrepresents minority populations. What is the MOST significant ethical risk?

A.The model may overfit to the majority population
B.The model cannot scale to real-time predictions
C.The model may produce biased predictions against minorities
D.The model lacks explainability
AnswerC

Underrepresentation in training data causes algorithmic bias, an ethical risk.

Why this answer

Training on historical data that underrepresents minority populations leads to a model that has insufficient examples to learn patterns for those groups, resulting in biased predictions that systematically disadvantage minorities. This is a direct violation of fairness in AI ethics, as the model's outputs will be less accurate or equitable for underrepresented groups, potentially causing harm in critical healthcare decisions like readmission risk assessment.

Exam trap

Salesforce often tests the distinction between a technical symptom (like overfitting) and the core ethical consequence (like biased predictions), so candidates may incorrectly choose overfitting as the most significant risk instead of recognizing that the ethical harm to minorities is the primary concern.

How to eliminate wrong answers

Option A is wrong because overfitting to the majority population is a symptom of the data imbalance, but the most significant ethical risk is the resulting bias and harm to minority groups, not the overfitting itself. Option B is wrong because the ability to scale to real-time predictions is a performance or deployment concern, not an ethical risk; the model could still be deployed in real-time while producing biased outputs. Option D is wrong because while lack of explainability can be an ethical concern, it is not the most significant risk here; the primary issue is the biased predictions caused by underrepresented data, which can occur even if the model is fully explainable.

656
MCQmedium

A company wants to build a chatbot for their customer portal that can handle returns and refunds. They want the bot to understand phrases like 'I want to return my order' or 'refund request'. What must they configure in Einstein Bots to recognize these variations?

A.Enable the Einstein Bots API for external integrations
B.Create a dialogue flow that asks clarifying questions
C.Define an intent named 'Return_Refund' and add training phrases like those examples
D.Set up bot analytics to monitor user utterances
AnswerC

Intents map user phrases to actions; training phrases teach the NLP model to recognize variations.

Why this answer

Intents represent the purpose of the user's input, and entities capture key details like order numbers. The bot uses NLP to match phrases to intents. Dialogues define the flow, and analytics track performance.

657
Multi-Selecteasy

A sales team wants to use AI to get product recommendations for customers. Which TWO types of machine learning could be used?

Select 2 answers
A.Generative AI
B.Reinforcement learning
C.Computer vision
D.Unsupervised learning
E.Supervised learning
AnswersD, E

Can cluster customers with similar behavior to recommend products others in the cluster bought.

Why this answer

Unsupervised learning can find patterns (e.g., customer segments) and supervised learning can predict likelihood to buy, both enabling recommendations.

658
MCQmedium

A company wants to use Einstein to forecast sales beyond simple manager rollups, comparing AI predictions with rep commitments. Which feature should they enable?

A.Einstein Discovery
B.Einstein Forecasting
C.Einstein Prediction Builder
D.Einstein Opportunity Scoring
AnswerB

Einstein Forecasting provides AI-enhanced predictions and comparison with rep commits.

Why this answer

Einstein Forecasting is the correct feature because it is specifically designed to generate AI-driven sales forecasts by analyzing historical data, pipeline trends, and external factors, then comparing those predictions against rep commitments. Unlike simple manager rollups, it provides a statistical baseline that helps identify gaps between AI predictions and human estimates, enabling more accurate revenue planning.

Exam trap

The trap here is that candidates confuse Einstein Forecasting with Einstein Opportunity Scoring, assuming that scoring individual deals is sufficient for forecasting, but the exam tests the distinction between deal-level probability and aggregate time-series prediction with commitment comparison.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is an AI-powered analytics tool for uncovering patterns and root causes in data, not for generating time-series sales forecasts or comparing predictions with rep commitments. Option C is wrong because Einstein Prediction Builder allows users to create custom predictive models on any object or field, but it lacks the built-in forecasting pipeline, rollup comparison, and commitment tracking that Einstein Forecasting provides. Option D is wrong because Einstein Opportunity Scoring assigns a probability score to individual opportunities closing, but it does not aggregate those scores into a forecast or compare them against rep commitments at a territory or company level.

659
MCQeasy

A marketing manager wants to recommend personalized products to customers on a community portal. Which Einstein feature should they use?

A.Einstein Next Best Action
B.Einstein Article Recommendations
C.Einstein Recommendation Builder
D.Einstein Prediction Builder
AnswerC

Recommendation Builder is designed for product/content recommendations in Experience Cloud.

Why this answer

Einstein Recommendation Builder is the correct feature because it allows marketers to create and deploy personalized product recommendations on a community portal without requiring custom code. It leverages AI to analyze customer behavior and preferences, then surfaces the most relevant products directly within the portal experience.

Exam trap

The trap here is that candidates confuse Einstein Next Best Action (which sounds like it could recommend products) with Einstein Recommendation Builder, but Next Best Action is for actions/offers in service flows, not for product recommendations on a community portal.

How to eliminate wrong answers

Option A is wrong because Einstein Next Best Action is designed for guiding agents or users to the next optimal action (e.g., a discount offer or knowledge article) in a service or sales context, not for recommending products on a community portal. Option B is wrong because Einstein Article Recommendations specifically suggests knowledge articles (e.g., help docs or FAQs) to users, not products. Option D is wrong because Einstein Prediction Builder is a tool for building custom predictive models (e.g., churn probability) using your data, not a pre-built feature for product recommendations on a portal.

660
Multi-Selecthard

An admin is building a custom AI prediction with Einstein Prediction Builder for a binary classification problem. Which THREE steps are required in the configuration? (Choose 3)

Select 3 answers
A.Define a custom Apex class for data transformation
B.Select a prediction field (the field to predict)
C.Select the data set (records used for training)
D.Select features (input fields for the model)
E.Configure a trigger to retrain the model daily
AnswersB, C, D

The prediction field is the target variable.

Why this answer

The required steps are: select prediction field, select data set, and select features. Apex and triggers are not needed.

661
MCQhard

Refer to the exhibit. An AI model's accuracy is shown for four demographic groups. Which group should be investigated for potential bias?

A.Group Beta
B.Group Alpha
C.Group Gamma
D.Group Delta
AnswerA

Correct. The low accuracy suggests bias issues.

Why this answer

Group Beta has significantly lower accuracy, indicating possible bias or underperformance.

662
Multi-Selecteasy

Which TWO practices help ensure accountability in AI systems?

Select 2 answers
A.Blame the AI system for mistakes to protect employees.
B.Assign a human owner for each AI system.
C.Automate all decisions to eliminate human error.
D.Implement logging and auditing of model decisions.
E.Open-source the model code to share responsibility.
AnswersB, D

Human ownership ensures responsibility.

Why this answer

Assigning a human owner for each AI system establishes clear accountability, ensuring that a specific individual is responsible for the system's behavior, decisions, and compliance with ethical guidelines. This practice aligns with the principle of human oversight, which is critical for maintaining trust and addressing failures in AI systems.

Exam trap

Salesforce often tests the distinction between technical transparency (like open-sourcing code) and operational accountability (like assigning a human owner), leading candidates to mistakenly choose open-sourcing as a sufficient accountability practice.

663
MCQhard

A team trains a model to predict customer lifetime value (CLV) using CRM data. The model's predictions are way off for new customers who have only been with the company for a month. Which factor is MOST likely contributing to this issue?

A.The model has high precision but low recall
B.The model is overfitting to customers with long purchase histories
C.The model is underfitting
D.The training data includes future transactions (data leakage)
AnswerB

Overfitting can cause the model to rely on patterns that only appear in long-term data, leading to poor predictions for new customers with short histories.

Why this answer

The model likely overfits to patterns from customers with longer histories, and new customers have limited features. Underfitting would cause overall poor performance. Data leakage might give unrealistic information.

High precision doesn't cause inaccurate predictions.

664
MCQmedium

A service manager wants to use Einstein Case Classification to automatically categorize incoming cases. What is a prerequisite for training the model?

A.A minimum of 100 open cases with categories assigned.
B.The cases must have been created within the last 30 days.
C.At least 500 closed cases with the correct category field populated.
D.Users must enable Einstein Case Classification in their personal settings.
AnswerC

This is the minimum requirement for model training.

Why this answer

Einstein Case Classification uses supervised machine learning to automatically categorize cases. The model learns from historical data, so it requires a sufficient number of closed cases (at least 500) with the correct category field populated to train effectively. Open cases are not used because the model needs confirmed outcomes to learn from.

Exam trap

Salesforce often tests the distinction between open and closed cases, and candidates mistakenly think open cases can be used for training because they are more recent or readily available, but the model requires confirmed historical data from closed cases.

How to eliminate wrong answers

Option A is wrong because the model requires closed cases, not open cases, as open cases lack the final category assignment needed for supervised learning. Option B is wrong because there is no 30-day creation window requirement; the model can use historical cases from any time period as long as they are closed and categorized. Option D is wrong because Einstein Case Classification is enabled at the system or profile level by an administrator, not in individual user personal settings.

665
MCQeasy

A company is deploying Einstein Reply Recommendations for a sales team. To comply with Salesforce's Trusted AI principle of transparency, what must the company ensure about the AI-generated replies?

A.Sales reps are informed that the reply is AI-generated and can review before sending
B.The AI model is fine-tuned on the company's past sales data
C.The AI-generated replies are automatically sent without human review
D.Customer data used to generate replies is retained for 90 days
AnswerA

Transparency means the user knows the source of the recommendation.

Why this answer

Transparency requires that users know when they are interacting with AI-generated content. Therefore, the company must indicate to the sales rep that the reply recommendation was generated by AI.

666
MCQeasy

A sales rep wants to automatically log emails and events from Outlook to Salesforce without manual work. Which Einstein feature should be enabled?

A.Einstein Conversation Insights
B.Einstein Email Insights
C.Einstein Activity Capture
D.Einstein Lead Scoring
AnswerC

This feature automatically captures and syncs emails and events to Salesforce.

Why this answer

Einstein Activity Capture (C) is the correct feature because it automatically syncs emails and events from Microsoft Outlook (or Google Workspace) to Salesforce without requiring manual logging. It uses a background sync engine that captures email headers and calendar events based on configured rules, eliminating the need for users to manually log activities via add-ins or plugins.

Exam trap

The trap here is that candidates confuse Einstein Activity Capture with Einstein Email Insights, assuming both handle email logging, but Email Insights only provides analytics on existing email data, not automatic capture and storage in Salesforce.

How to eliminate wrong answers

Option A is wrong because Einstein Conversation Insights analyzes voice and chat transcripts from contact center interactions, not Outlook emails or events. Option B is wrong because Einstein Email Insights provides analytics on email engagement (e.g., open rates, click rates) but does not automatically log emails or events into Salesforce. Option D is wrong because Einstein Lead Scoring uses predictive models to rank leads based on conversion likelihood, not to capture or sync Outlook activities.

667
MCQhard

A company uses Einstein Prediction Builder to predict which leads will convert. They have a binary outcome field 'Converted__c' which is true for 8% of leads. After training, the model shows high accuracy (95%) but very low precision for the positive class. What is the most likely cause?

A.The prediction field is not a binary field
B.The data is imbalanced favoring the negative class
C.The prediction score field is not configured correctly
D.The dataset is too small for training
AnswerB

Imbalanced data causes the model to predict majority class most of the time, yielding high accuracy but low positive precision.

Why this answer

The dataset is imbalanced: only 8% of leads are positive (Converted__c = true), while 92% are negative. In such a scenario, a model can achieve 95% accuracy by simply predicting the majority class (negative) for all leads, but this yields very low precision for the positive class because it rarely predicts positive correctly. Einstein Prediction Builder, like most ML models, is sensitive to class imbalance, and without techniques like oversampling or threshold tuning, the model will favor the majority class.

Exam trap

The trap here is that candidates see 'high accuracy' and assume the model is performing well, overlooking that accuracy is misleading in imbalanced datasets, and they may incorrectly attribute the issue to field configuration or dataset size.

How to eliminate wrong answers

Option A is wrong because the question explicitly states the outcome field 'Converted__c' is a binary field (true/false), so it is correctly configured for binary classification. Option C is wrong because the prediction score field is a standard output of Einstein Prediction Builder and does not need manual configuration; the issue is with model performance due to data imbalance, not score field setup. Option D is wrong because the dataset size is not indicated as insufficient; the problem is class imbalance, not sample size, and a small dataset could still yield high accuracy if imbalanced.

668
MCQhard

A healthcare AI model uses patient data. The legal team requires that all data used for training be de-identified according to HIPAA Safe Harbor method. Which data handling process satisfies this?

A.Remove all 18 HIPAA identifiers from each record.
B.Generate synthetic data that mimics patient records.
C.Remove patient names and replace with IDs.
D.Anonymize data by aggregating into groups of 10 or more.
AnswerA

Safe Harbor method requires removal of all listed identifiers.

Why this answer

The HIPAA Safe Harbor method specifically requires the removal of all 18 identifiers listed in the HIPAA Privacy Rule from each patient record. This includes direct identifiers like names, addresses, and Social Security numbers, as well as indirect identifiers such as dates and geographic subdivisions. By removing these 18 identifiers, the data is considered de-identified and no longer subject to HIPAA restrictions, allowing it to be used for AI training.

Exam trap

The trap here is that candidates often confuse de-identification with anonymization or pseudonymization, assuming that removing just names or aggregating data is sufficient, but Cisco tests the specific requirement of removing all 18 HIPAA identifiers under the Safe Harbor method.

How to eliminate wrong answers

Option B is wrong because generating synthetic data that mimics patient records does not satisfy the HIPAA Safe Harbor method; while synthetic data can be useful, it is not a recognized de-identification method under HIPAA Safe Harbor, which requires the removal of specific identifiers from actual data. Option C is wrong because removing patient names and replacing them with IDs alone does not meet the Safe Harbor standard, as it still leaves 17 other identifiers (e.g., dates, ZIP codes) that must be removed. Option D is wrong because anonymizing data by aggregating into groups of 10 or more is not a HIPAA Safe Harbor method; aggregation may reduce re-identification risk but does not guarantee removal of all 18 identifiers, and Safe Harbor requires explicit removal of those identifiers, not statistical aggregation.

669
MCQeasy

An organization uses an AI-powered resume screening tool to shortlist candidates for a software engineering role. The tool was trained on historical hiring data from the past five years, during which the company predominantly hired male candidates. After deployment, the tool consistently ranks female candidates lower, even when they have equivalent qualifications. The AI team reports that the overall model accuracy is 92%, and they argue that performance is strong. However, the diversity and inclusion team raises ethical concerns about gender bias. The Salesforce AI Associate is asked to evaluate the situation. What should the associate recommend?

A.Continue using the model because 92% accuracy is acceptable and the bias is not significant.
B.Retrain the model using a balanced dataset that includes equal representation from all genders and implement ongoing fairness monitoring.
C.Replace the current AI tool with a different vendor's tool without further analysis.
D.Manually adjust the scoring algorithm to give preference to female candidates to balance the outcome.
AnswerB

This directly addresses the bias by ensuring the training data is representative and includes measures to monitor fairness.

Why this answer

Retraining with a balanced dataset addresses the root cause of bias, and ongoing monitoring ensures fairness over time. Option A is incorrect because ignoring ethical concerns for accuracy is unacceptable. Option C is incorrect because switching vendors without understanding the bias may not solve the issue.

Option D is incorrect because manually adjusting scores introduces reverse discrimination and is unethical.

670
MCQhard

An organization uses Einstein Lead Scoring and notices that leads with a score above 80 are being sent to the sales team too quickly, overwhelming them. The admin wants to adjust when leads are automatically assigned. What should the admin do?

A.Modify the lead assignment rule to only assign leads with scores above a higher threshold
B.Reduce the number of features used in scoring
C.Disable Einstein Lead Scoring and use a custom scoring model
D.Create a new lead queue and manually review all leads
AnswerA

Assignment rules can be based on the lead score field; raising the threshold ensures only higher-scored leads are assigned.

Why this answer

Einstein Lead Scoring assigns a score (0–100) to each lead based on predictive models. The default assignment rule triggers when a lead's score exceeds a threshold (e.g., 80). To reduce the volume of leads sent to sales, the admin should raise that threshold in the lead assignment rule so only higher-scored leads are automatically assigned.

This directly controls the flow without altering the scoring model itself.

Exam trap

The trap here is that candidates may think the solution involves modifying the scoring model itself (e.g., reducing features or disabling it) rather than simply adjusting the assignment rule threshold, which is the direct and minimal-change fix.

How to eliminate wrong answers

Option B is wrong because reducing the number of features used in scoring would degrade the model's predictive accuracy and does not control the assignment threshold—it changes how scores are calculated, not when leads are routed. Option C is wrong because disabling Einstein Lead Scoring and using a custom model is an unnecessary, complex workaround; the admin can simply adjust the existing assignment rule threshold. Option D is wrong because creating a new lead queue and manually reviewing all leads defeats the purpose of automation and does not leverage Einstein's scoring to prioritize leads—it adds manual overhead instead of tuning the threshold.

671
MCQhard

Refer to the exhibit. The fairness evaluation shows a disparate impact of 0.85, equal opportunity difference of 0.12, and demographic parity difference of 0.18. Which fairness thresholds are violated?

A.Demographic parity only.
B.Equal opportunity only.
C.Equal opportunity and demographic parity.
D.Disparate impact only.
AnswerC

Both exceed their thresholds.

Why this answer

The fairness evaluation shows violations of both equal opportunity and demographic parity thresholds. The equal opportunity difference of 0.12 exceeds the commonly accepted threshold of 0.1, and the demographic parity difference of 0.18 exceeds the typical threshold of 0.1. Disparate impact of 0.85 is within the acceptable range (typically 0.8 to 1.25), so it is not violated.

Exam trap

Salesforce often tests the misconception that disparate impact is the only fairness metric that matters, but the trap here is that multiple fairness thresholds can be violated simultaneously, and candidates must check each metric against its specific threshold rather than assuming a single violation.

How to eliminate wrong answers

Option A is wrong because demographic parity difference of 0.18 exceeds the 0.1 threshold, but equal opportunity difference of 0.12 also exceeds its 0.1 threshold, so both are violated, not just demographic parity. Option B is wrong because equal opportunity difference of 0.12 exceeds the 0.1 threshold, but demographic parity difference of 0.18 also exceeds its threshold, so both are violated, not just equal opportunity. Option D is wrong because disparate impact of 0.85 falls within the acceptable range of 0.8 to 1.25 (or 80% to 125% rule), so it is not violated.

672
MCQmedium

A company wants to use customer purchase history to train a recommendation model. Which action is essential to comply with data privacy regulations?

A.Use only publicly available data.
B.Ignore regulations because data is internal.
C.Obtain explicit consent from customers.
D.Anonymize the data after training.
AnswerC

Explicit consent is legally required for processing personal data for AI training.

Why this answer

Data privacy regulations such as GDPR and CCPA require a lawful basis for processing personal data, and explicit consent is a primary lawful basis when using customer purchase history for training a recommendation model. Without obtaining explicit consent, the company would be processing personal data without a valid legal ground, violating regulations that mandate transparency and user control over their data.

Exam trap

The trap here is that candidates often assume internal data is exempt from privacy regulations or that anonymization after training retroactively fixes compliance, but regulations require a lawful basis before any processing begins.

How to eliminate wrong answers

Option A is wrong because using only publicly available data does not guarantee compliance; the data may still contain personal information subject to privacy regulations, and the model could inadvertently infer private attributes from public data. Option B is wrong because internal data is not exempt from data privacy regulations; laws like GDPR apply to any processing of personal data regardless of whether it is internal or external. Option D is wrong because anonymizing data after training does not address the requirement for a lawful basis at the time of collection and processing; the model may have already learned patterns from identifiable data, and retroactive anonymization does not cure the initial lack of consent.

673
Multi-Selectmedium

A company uses a generative AI model to create marketing copy. They want to ensure the output is accurate and not misleading. Which TWO practices should they implement?

Select 2 answers
A.Increase the model's temperature setting to encourage creativity
B.Disable all content filtering to avoid blocking useful output
C.Always have a human review the generated content before publishing
D.Ground the model with a knowledge base of verified facts
E.Use the model's output directly without checking
AnswersC, D

Human oversight catches hallucinations and inaccuracies.

Why this answer

Human review catches errors (hallucinations). Grounding the model in verified data reduces false information. Avoid over-reliance on the model without verification.

674
Multi-Selectmedium

To comply with Salesforce's AI ethics principles when using Einstein Bots, which two practices should be implemented?

Select 2 answers
A.Allow users to escalate to a human agent.
B.Use the bot to make all customer decisions autonomously.
C.Store all conversation transcripts indefinitely.
D.Disclose that the user is interacting with a bot.
E.Minimize data collection to only what is necessary.
AnswersA, D

Human oversight ensures accountability.

Why this answer

Disclosing bot identity (transparency) and allowing human escalation (accountability) are key ethical practices.

675
MCQeasy

A company wants to use Einstein Bots to handle customer support queries. Which preparation is most important before deploying the bot?

A.Train all agents on how to monitor the bot.
B.Set up a new email channel for the bot.
C.Ensure the knowledge base articles are well-organized and cover common issues.
D.Create a custom object to store bot conversations.
AnswerC

Einstein Bots use Knowledge to answer queries.

Why this answer

Einstein Bots rely on a well-organized knowledge base to retrieve accurate answers for customer queries. Without properly structured articles covering common issues, the bot cannot effectively resolve tickets, leading to poor deflection rates and user frustration. This preparation directly impacts the bot's ability to understand and respond to natural language inputs using Salesforce's NLP and article matching.

Exam trap

Salesforce often tests the misconception that operational tasks (like agent training or data storage) are more critical than content preparation, leading candidates to overlook the foundational role of knowledge base organization in bot success.

How to eliminate wrong answers

Option A is wrong because training agents to monitor the bot is a post-deployment operational task, not a prerequisite for deployment; the bot's core functionality depends on knowledge base readiness, not agent oversight. Option B is wrong because Einstein Bots operate on existing channels like web chat or messaging services (e.g., Facebook Messenger), not a dedicated email channel; setting up a new email channel is irrelevant and not required for bot deployment. Option D is wrong because storing bot conversations in a custom object is an optional reporting or compliance feature, not a mandatory preparation; the bot uses standard Salesforce objects like Case and Chat Transcript by default.

Page 8

Page 9 of 11

Page 10

All pages