Courseiva

Salesforce AI Associate AI Associate (AI Associate) — Questions 151225

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

Page 2

Page 3 of 11

Page 4
151
MCQhard

You are a data scientist at a retail company. The company uses Einstein Discovery to analyze customer purchase patterns. The model is built on a dataset of 50,000 transactions. The model's R-squared is 0.85, but the predictions for new customers are consistently off by a large margin. The data includes features like 'Customer Age', 'Income', 'Previous Purchases', and 'Product Category'. The model was trained on data from the past two years. However, six months ago, the company launched a new loyalty program that significantly changed purchasing behavior. You suspect the model is not generalizing to new customers. What should you do to validate your hypothesis?

A.Create a holdout set of transactions from the last six months and compare model performance on it vs. older data
B.Exclude new customers from the dataset entirely
C.Increase the training data size to include older transactions
D.Remove the 'Product Category' feature to simplify the model
AnswerA

If performance is worse on recent data, concept drift is confirmed.

Why this answer

Creating a holdout set of transactions from the last six months directly tests whether the model's performance has degraded due to the loyalty program's impact on purchasing behavior. By comparing the R-squared or other metrics on this recent holdout set versus older data, you can quantify the drop in predictive accuracy and confirm that the model fails to generalize to the new data distribution. This approach is a standard method for detecting concept drift in machine learning models, especially when external changes (like a loyalty program) alter the underlying patterns.

Exam trap

Salesforce often tests the misconception that improving model performance (e.g., by adding more data or simplifying features) is the correct response to poor generalization, rather than first validating the hypothesis of concept drift through a time-based holdout evaluation.

How to eliminate wrong answers

Option B is wrong because excluding new customers entirely would remove the very data needed to detect the generalization failure, and it does not validate the hypothesis about model performance on new customers. Option C is wrong because increasing training data with older transactions would only reinforce the model's bias toward pre-loyalty-program patterns, making it even less adaptable to the new behavior. Option D is wrong because removing the 'Product Category' feature simplifies the model but does not address the root cause of concept drift; it may reduce accuracy further and does not test whether the loyalty program caused the shift.

152
MCQmedium

A company uses Einstein Discovery to analyze their sales pipeline. They see a waterfall chart showing the expected revenue changes from one stage to the next. What does the waterfall chart primarily help identify?

A.The expected revenue at each stage and the changes between stages.
B.The accuracy of the AI prediction compared to actuals.
C.The improvement suggestions from Einstein Discovery.
D.The top reasons why deals are won or lost.
AnswerA

Waterfall charts break down the cumulative effect of sequentially introduced factors, showing revenue changes step by step.

Why this answer

In Einstein Discovery, waterfall charts visualize the contribution of individual factors to a target metric (e.g., revenue). They show how each stage or factor adds or subtracts from the total, helping identify key drivers.

153
Multi-Selecthard

A company uses Einstein Prediction Builder to forecast customer churn. The data science team discovers that the model is heavily influenced by a field containing the customer's income, which the company legally cannot use for automated decisions in certain jurisdictions. Which TWO steps should the team take to address this ethical and compliance issue?

Select 2 answers
A.Re-evaluate feature importance to ensure no other fields act as proxies for income
B.Audit the model for bias against different income groups
C.Ignore the issue because the model is used internally
D.Remove the income field from the training data
E.Retain the income field but add a note that it may not be used in certain regions
AnswersA, D

Proxies can reintroduce the same bias; checking for proxies is important after removal.

Why this answer

Removing the prohibited field and re-evaluating feature importance aligns with data minimisation and fairness. Auditing for bias is good but not sufficient if the field is still used. Retraining without removal does not address the legal issue.

154
MCQmedium

A company wants to implement an autonomous AI agent in Salesforce that can handle customer service cases end-to-end. Which feature should they use?

A.Einstein Copilot
B.Einstein Next Best Action
C.Einstein Bots
D.Agentforce
AnswerD

Agentforce provides autonomous AI agents that can perform actions and handle cases independently.

Why this answer

Agentforce is the correct feature because it is specifically designed to create autonomous AI agents that can handle customer service cases end-to-end in Salesforce. Unlike simpler bots or copilots, Agentforce can independently execute multi-step workflows, make decisions, and take actions across Salesforce objects without requiring human intervention for every step.

Exam trap

The trap here is that candidates often confuse Einstein Copilot or Einstein Bots with autonomous agents, but the key differentiator is that Agentforce is built for fully autonomous, end-to-end execution without requiring human-in-the-loop for every step.

How to eliminate wrong answers

Option A is wrong because Einstein Copilot is a conversational AI assistant that helps users with tasks but is not designed for autonomous, end-to-end case handling; it requires user prompts and oversight. Option B is wrong because Einstein Next Best Action provides recommendations for the next best step but does not autonomously execute a full case resolution workflow. Option C is wrong because Einstein Bots are rule-based or AI-powered chatbots that can handle simple interactions but lack the autonomous decision-making and multi-step orchestration capabilities needed for end-to-end case management.

155
Multi-Selecthard

A company uses AI to generate personalized email content for marketing campaigns. They notice the AI occasionally produces factually incorrect statements. Which THREE actions should they take to mitigate this?

Select 3 answers
A.Implement retrieval-augmented generation (RAG) to ground outputs in verified data
B.Reduce the model's temperature parameter to lower randomness
C.Include a human review step before emails are sent
D.Train the model on more unlabeled emails from the internet
E.Remove all safety guardrails to allow more creative content
AnswersA, B, C

RAG provides factual context, reducing hallucinations.

Why this answer

Grounding the model with retrieval, adding a human review step, and adjusting temperature can reduce hallucinations. Training on more data alone may not fix the issue.

156
MCQmedium

An admin is setting up Einstein Bot for a customer service chat. The bot needs to collect the customer's account number before transferring to a human agent. What should the admin configure?

A.Add a Variable with the account number field
B.Create a Dialog to ask for the account number
C.Define a Rule to validate the account number
D.Use a Set Value action to assign the account number
AnswerB

Dialogs guide the conversation and collect input.

Why this answer

A Dialog is the component that handles a conversation flow, including collecting information. Option A is incorrect because a Variable stores data but does not collect it. Option C is incorrect because a Rule determines logic, not collection.

Option D is incorrect because a Set Value action sets a variable, but the overall collection happens within a Dialog.

157
Multi-Selectmedium

A CRM administrator is planning to implement predictive AI for lead scoring. Which TWO actions should be taken to ensure data quality?

Select 2 answers
A.Ensure lead source values are standardized (e.g., 'Web' not 'website' or 'web form')
B.Remove duplicate leads and leads older than 5 years with no activity
C.Use as many fields as possible to increase model complexity
D.Manually label all historical leads again to remove bias
E.Use a smaller dataset to train faster
AnswersA, B

Consistent categorical values prevent the model from learning spurious patterns.

Why this answer

Removing outdated or duplicate records and ensuring consistent formatting across fields are key data quality steps. Standardizing lead source values also ensures consistent labels.

158
MCQmedium

A sales operations manager wants to use AI to predict which leads are most likely to convert. The CRM has historical data on past leads, including whether they were won or lost, along with demographic and behavioral attributes. Which machine learning type should be used?

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

Supervised learning trains on labeled data (outcomes) to predict new outcomes, ideal for lead scoring.

Why this answer

Supervised learning uses labeled historical data (won/lost outcomes) to predict future outcomes, making it the best fit for lead scoring.

159
MCQhard

A developer wants to build a custom app that classifies images of products into categories (e.g., shoes, bags). The app must run in Salesforce and use Einstein AI. Which approach is MOST appropriate?

A.Use Einstein Recommendation Builder to classify products
B.Use Einstein Vision and Language Platform APIs
C.Use Einstein GPT with a prompt that describes the image
D.Use Einstein Copilot to process images
AnswerB

This platform provides pre-built models and APIs for image classification, object detection, etc.

Why this answer

Einstein Vision and Language Platform APIs provide the image classification capabilities needed for this custom app. These APIs allow developers to train and deploy custom image classification models that can categorize products like shoes and bags directly within Salesforce.

Exam trap

The trap here is that candidates may confuse Einstein's generative AI tools (GPT, Copilot) with its predictive AI capabilities (Vision and Language APIs), assuming any 'AI' feature can handle image classification without understanding the specific service boundaries.

How to eliminate wrong answers

Option A is wrong because Einstein Recommendation Builder is designed for product recommendations based on user behavior and preferences, not for image classification. Option C is wrong because Einstein GPT is a generative AI tool for text and content generation, not for processing or classifying images. Option D is wrong because Einstein Copilot is a conversational AI assistant that helps with tasks and queries, not a tool for image classification.

160
MCQmedium

A company is implementing Einstein Lead Scoring and wants to ensure transparency for sales reps. According to Salesforce's Trusted AI principles, what should the company communicate to users about the AI-generated scores?

A.The scores are based on a secret algorithm to prevent gaming the system.
B.Only managers can see the score factors to avoid confusion.
C.The scores are AI-generated, the key factors influencing each score are available, and reps should use their judgment.
D.The scores are 100% accurate and should be followed without question.
AnswerC

Transparency includes disclosing the AI nature and providing explanations, while empathy encourages human oversight.

Why this answer

The Honesty and Transparency principles require that users are informed that scores are AI-generated, understand the factors influencing them, and are aware of limitations.

161
MCQmedium

A manager wants to use Einstein Forecasting to compare the AI-predicted forecast against sales reps' committed forecast amounts. Where in Salesforce can they view this comparison?

A.In the Einstein Forecasts list view, the AI forecast column appears next to the rep commit column.
B.In the Einstein Lead Scoring dashboard.
C.In the Einstein Discovery story for opportunities.
D.Only in a custom report type built from Opportunity object.
AnswerA

Correct. The AI forecast is shown as a separate column for comparison.

Why this answer

Einstein Forecasting provides an AI forecast that is displayed alongside the rep's committed forecast in the forecast list view and reports.

162
Multi-Selectmedium

Which THREE factors should be considered when evaluating the fairness of an AI model?

Select 3 answers
A.Disparate impact ratio across groups.
B.Overall accuracy on the test set.
C.Model training time.
D.Equal opportunity difference.
E.Demographic parity in predictions.
AnswersA, D, E

Measures adverse impact ratio.

Why this answer

The disparate impact ratio measures whether an AI model's predictions disproportionately harm or benefit certain demographic groups, typically by comparing selection rates across groups. A ratio below 0.8 or above 1.25 is often considered evidence of adverse impact, making it a key quantitative fairness metric.

Exam trap

Salesforce often tests the distinction between performance metrics (like accuracy) and fairness metrics, trapping candidates who assume a high-accuracy model is automatically fair.

163
MCQhard

A developer wants to use AI to classify images uploaded to Salesforce. Which platform/service should they use?

A.Einstein Vision and Language Platform
B.Einstein Bots
C.Einstein GPT
D.Einstein Discovery
AnswerA

Why this answer

Einstein Vision and Language Platform is the correct service because it provides pre-built and custom AI models specifically designed for image classification, object detection, and optical character recognition (OCR) within Salesforce. It allows developers to upload images and train models using labeled data directly in the Salesforce ecosystem, making it the only option that directly addresses the requirement to classify images.

Exam trap

The trap here is that candidates confuse Einstein GPT's generative capabilities with classification tasks, assuming any 'AI' service can handle images, when in fact Einstein GPT is strictly for text generation and does not process image content.

How to eliminate wrong answers

Option B (Einstein Bots) is wrong because it is a service for building conversational chatbots that handle customer service interactions via text or voice, not for image classification. Option C (Einstein GPT) is wrong because it is a generative AI tool for creating content like emails, summaries, and knowledge articles, not for analyzing or classifying images. Option D (Einstein Discovery) is wrong because it is a predictive analytics and automated insights engine that works on structured data (e.g., CRM records) to identify trends and anomalies, not on unstructured image data.

164
MCQhard

A company uses Einstein Bots to handle customer service inquiries. The bot often fails to understand complex requests, leading to escalations. Which improvement strategy is most effective?

A.Train the bot with additional intents and example phrases for complex scenarios.
B.Route all complex requests directly to human agents without bot interaction.
C.Increase the confidence threshold for intent matching to avoid misclassification.
D.Reduce the number of dialogue options to simplify the bot's logic.
AnswerA

More training data improves NLU accuracy.

Why this answer

Training the bot with additional intents and example phrases directly addresses the root cause of the bot's failure: insufficient training data for complex scenarios. By expanding the training corpus, the natural language understanding (NLU) model can better recognize and classify nuanced user inputs, reducing misclassifications and unnecessary escalations.

Exam trap

Salesforce often tests the misconception that increasing confidence thresholds or simplifying logic improves accuracy, when in fact these actions reduce the bot's ability to handle complex inputs, leading to more escalations.

How to eliminate wrong answers

Option B is wrong because routing all complex requests to human agents without bot interaction bypasses the bot entirely, failing to improve its capability and defeating the purpose of using an AI bot to handle escalations. Option C is wrong because increasing the confidence threshold for intent matching would cause the bot to reject more queries, leading to even more false negatives and escalations, not fewer. Option D is wrong because reducing dialogue options simplifies the bot's logic but does not improve its understanding of complex requests; it may actually increase escalations by limiting the bot's ability to handle varied inputs.

165
MCQmedium

A nonprofit organization uses Salesforce to manage donor relationships. They have implemented Einstein Prediction Builder to predict which donors are likely to upgrade their donation level in the next 90 days. The model was built using a custom object "Donation" with fields like Amount, Frequency, and Campaign. After deployment, the predictions seem random and do not correlate with donor engagement. The admin suspects the model is not trained on enough records. The organization has 500 donors with at least two donations each. What should the admin do to improve the model?

A.Increase the prediction window from 90 to 180 days to capture more upgrade events.
B.Use a different field as the prediction outcome, such as 'donation amount increase'.
C.Ensure that at least 500 records exist where the donor actually upgraded, and retrain the model.
D.Add more fields to the model, such as donor age and geographic location.
AnswerC

Sufficient positive examples are needed.

Why this answer

Einstein Prediction Builder requires a minimum number of positive outcome records (upgrade events) to train a reliable model. With only 500 donors and likely far fewer upgrades, the model lacks sufficient signal. Ensuring at least 500 actual upgrade records provides the necessary positive examples for the algorithm to learn meaningful patterns, reducing randomness in predictions.

Exam trap

Salesforce often tests the misconception that adding more data fields or changing the prediction window can compensate for a lack of positive training records, when in fact the core requirement is a sufficient number of outcome examples for the model to learn from.

How to eliminate wrong answers

Option A is wrong because increasing the prediction window does not address the root cause of insufficient positive training records; it may dilute the signal by including more non-upgrade events. Option B is wrong because changing the prediction outcome field does not solve the data scarcity issue; the model still needs enough historical upgrade events to learn from. Option D is wrong because adding more fields without sufficient positive records will not improve model accuracy and may introduce noise, as the algorithm still lacks enough examples to identify meaningful correlations.

166
Multi-Selectmedium

A service manager wants to use AI to automatically suggest knowledge articles to agents during case handling. Which TWO Einstein features can fulfill this requirement?

Select 2 answers
A.Einstein Discovery
B.Einstein Article Recommendations
C.Einstein Next Best Action
D.Einstein Case Classification
E.Einstein Bots
AnswersB, C

Directly suggests knowledge articles to agents.

Why this answer

Einstein Article Recommendations uses AI to automatically suggest relevant knowledge articles to agents during case handling, based on the case context and historical data. This feature is specifically designed to improve agent efficiency by surfacing the most helpful articles without manual search.

Exam trap

The trap here is that candidates often confuse Einstein Next Best Action (which recommends generic actions or offers) with Einstein Article Recommendations, but Next Best Action is a broader feature for recommending any action (e.g., discounts, workflows) and requires custom configuration, whereas Article Recommendations is purpose-built for knowledge articles.

167
MCQhard

A company is building a text classification model for customer support tickets. They have a dataset of 10,000 tickets. The team decides to use active learning for labeling. Which approach best aligns with active learning principles?

A.Randomly select 2,000 tickets and label them manually.
B.Train a preliminary model and prioritize labeling tickets with low prediction confidence.
C.Use a pre-trained model to label all tickets automatically.
D.Have subject matter experts label all 10,000 tickets.
AnswerB

Active learning focuses on uncertain samples.

Why this answer

Active learning iteratively selects the most informative unlabeled data points for labeling, typically those with low prediction confidence from a preliminary model. This minimizes labeling effort while maximizing model performance, which is the core principle of active learning.

Exam trap

Salesforce often tests the distinction between active learning and passive learning (random sampling) or semi-supervised learning, and the trap here is assuming that any automated labeling (like using a pre-trained model) qualifies as active learning, when in fact active learning requires iterative human feedback based on model uncertainty.

How to eliminate wrong answers

Option A is wrong because random selection ignores model uncertainty, wasting labeling effort on data that may not improve the model. Option C is wrong because using a pre-trained model to auto-label all tickets bypasses the human-in-the-loop feedback essential for active learning and may propagate errors. Option D is wrong because labeling all 10,000 tickets defeats the purpose of active learning, which is to reduce labeling cost by focusing only on informative samples.

168
MCQeasy

A marketer wants to use Einstein Segment Creation to build a segment for a campaign. Which data source can be used?

A.Standard report snapshots.
B.Data Cloud unified profile data.
C.External web analytics.
D.Einstein Activity Capture data.
AnswerB

Unified profiles contain the data needed for segmentation.

Why this answer

Einstein Segment Creation works with Data Cloud unified profiles.

169
Multi-Selecthard

A company is building an Einstein Bot that needs to handle customer inquiries and escalate to a human agent when necessary. The bot must also analyze conversations to improve its performance. Which THREE capabilities should they configure? (Choose 3)

Select 3 answers
A.Einstein Case Classification to categorize conversations
B.Einstein Discovery to analyze bot logs
C.Intents and entities to understand customer requests
D.Bot analytics to monitor performance and conversation outcomes
E.Handoff to human agent when the bot cannot resolve
AnswersC, D, E

Intents and entities are fundamental for NLP understanding in bots.

Why this answer

To handle inquiries, the bot needs intents/entities for understanding. For escalation, it needs handoff settings. For analysis, bot analytics provides insights.

170
MCQmedium

An AI system is used to approve loan applications. The model uses income, zip code, and credit score as features. What is a potential ethical concern?

A.Zip code may act as a proxy for race, leading to discrimination
B.The model should be a black box to avoid bias
C.Credit scores are rarely accurate
D.Income is not a reliable predictor of repayment
AnswerA

Using zip code can indirectly discriminate based on race or ethnicity.

Why this answer

Using zip code as a feature can introduce proxy discrimination. Zip codes are strongly correlated with race and socioeconomic status due to historical redlining and residential segregation. When the model learns patterns from zip code, it may inadvertently deny loans to applicants from certain racial or ethnic groups, violating fair lending laws and ethical AI principles.

Exam trap

Salesforce often tests the misconception that bias is only introduced by explicitly using protected attributes, when in fact proxy features like zip code can cause discrimination even if race or gender is not directly used.

How to eliminate wrong answers

Option B is wrong because making the model a black box does not avoid bias; in fact, black-box models obscure how decisions are made, making it harder to detect and mitigate bias. Option C is wrong because credit scores, while not perfect, are statistically validated predictors of repayment behavior and are widely used in the financial industry; the ethical concern is not about their accuracy but about how they are combined with other features. Option D is wrong because income is a strong predictor of repayment ability; the ethical issue is not its reliability but the potential for discrimination when combined with proxy features like zip code.

171
MCQeasy

A company wants to improve sales forecast accuracy by incorporating AI predictions that compare rep commits with statistical forecasts. Which Einstein feature should they use?

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

Einstein Forecasting uses AI to generate forecasts and compare with rep commits.

Why this answer

Einstein Forecasting is the correct feature because it directly combines statistical forecasts with sales rep commit data to produce a more accurate, AI-driven prediction. This feature specifically addresses the need to reconcile top-down statistical models with bottom-up rep inputs, which is exactly what the question describes.

Exam trap

The trap here is that candidates often confuse 'forecasting' with 'scoring' or 'discovery,' assuming any AI feature that deals with sales data can improve forecast accuracy, but only Einstein Forecasting is designed to merge rep commits with statistical predictions.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is used for uncovering patterns and root causes in data, not for comparing rep commits with statistical forecasts. Option B is wrong because Einstein Lead Scoring focuses on ranking leads based on conversion likelihood, not on forecasting sales amounts. Option D is wrong because Einstein Opportunity Scoring predicts the likelihood of closing an opportunity, not the comparison of rep commits with statistical forecasts.

172
Multi-Selecthard

Which THREE strategies can help mitigate bias in an AI model? (Choose three.)

Select 3 answers
A.Remove protected attributes from training data
B.Focus training on majority group data for accuracy
C.Randomize a portion of model outputs
D.Use diverse and representative training data
E.Apply fairness metrics during model evaluation
AnswersA, D, E

Removing attributes like race/gender can prevent direct discrimination.

Why this answer

Removing protected attributes (e.g., race, gender) from training data reduces the risk of the model directly learning correlations with these sensitive features. This is a common pre-processing technique to prevent direct discrimination, though it may not eliminate indirect bias if correlated proxy features remain.

Exam trap

Salesforce often tests the misconception that simply removing protected attributes or randomizing outputs is sufficient to eliminate bias, when in fact bias can persist through proxies and requires comprehensive fairness evaluation and diverse data.

173
MCQmedium

A company wants to build a custom AI model that predicts whether a support case will be escalated based on fields like case origin, priority, and description. They want to use existing Salesforce data without coding. Which tool should they use?

A.Einstein Case Classification
B.Einstein Prediction Builder
C.Einstein Article Recommendations
D.Einstein Discovery
AnswerB

Prediction Builder is designed for creating custom binary classification models from Salesforce data.

Why this answer

Einstein Prediction Builder allows admins to create custom predictions from Salesforce data without coding, using binary classification for yes/no outcomes.

174
Multi-Selecteasy

Which TWO are common data quality issues that can negatively impact AI model performance?

Select 2 answers
A.Missing values in critical fields
B.Low model accuracy during validation
C.Insufficient storage space for data
D.Inconsistent data governance policies
E.Duplicate records in the dataset
AnswersA, E

Missing data is a common quality issue.

Why this answer

Missing values in critical fields (Option A) are a common data quality issue because many AI models, particularly those relying on statistical or gradient-based optimization, cannot handle null or NaN inputs without imputation or removal. If missing values are not addressed, the model may learn biased patterns or fail to converge, leading to degraded predictive performance.

Exam trap

Salesforce often tests the distinction between data quality issues (problems with the data itself) and model performance issues or infrastructure constraints, so candidates mistakenly select options like low accuracy or insufficient storage as data quality problems.

175
Multi-Selectmedium

Which THREE are key ethical considerations for AI according to Salesforce?

Select 3 answers
A.Accountability
B.Profitability
C.Transparency
D.Privacy
E.Speed
AnswersA, C, D

Organizations must take responsibility for AI outcomes.

Why this answer

Options A, C, and D are correct. Privacy, transparency, and accountability are foundational ethical principles for AI. Option B is wrong because profitability is a business goal, not an ethical consideration.

Option E is wrong because speed is a performance attribute.

176
MCQmedium

A data scientist needs to prepare data for Einstein Discovery. The dataset includes a field 'Customer_Status__c' with values 'Active', 'Inactive', and 'Churned'. How should this field be treated?

A.Create separate boolean fields for each value to improve model accuracy.
B.Remove the field because text fields cannot be used in Einstein Discovery.
C.Keep as a text field and let Einstein Discovery handle it as a categorical predictor.
D.Convert to numeric values 1, 2, 3 to preserve order.
AnswerC

Einstein Discovery automatically treats text fields as categorical predictors.

Why this answer

Einstein Discovery natively supports text fields as categorical predictors, automatically encoding them for model training. The platform handles string values like 'Active', 'Inactive', and 'Churned' without requiring manual transformation, preserving the semantic meaning and cardinality of the data.

Exam trap

The trap here is that candidates assume text fields must be converted to numbers or one-hot encoded for machine learning, but Einstein Discovery abstracts this preprocessing, and manual conversion can introduce ordinal bias or unnecessary complexity.

How to eliminate wrong answers

Option A is wrong because creating separate boolean fields for each value (one-hot encoding) is unnecessary and can introduce multicollinearity or increase feature dimensionality without benefit, as Einstein Discovery's internal preprocessing already handles categorical encoding optimally. Option B is wrong because text fields are fully supported in Einstein Discovery as categorical predictors; the platform does not require numeric-only inputs and can process string values directly. Option D is wrong because converting to numeric values 1, 2, 3 implies an ordinal relationship that does not exist among 'Active', 'Inactive', and 'Churned', which would mislead the model into treating the categories as ordered, degrading prediction accuracy.

177
MCQeasy

A team is building a pipeline to train a model daily. The source data arrives in CSV files but needs to be converted to Parquet for efficiency. Which pipeline step should perform this conversion?

A.Feature engineering step
B.Model deployment step
C.Data validation step
D.Data ingestion step
AnswerD

Ingestion can transform data into a more efficient format.

Why this answer

The data ingestion step is responsible for bringing raw data into the pipeline, including format conversions like CSV to Parquet. Converting to Parquet at ingestion improves storage efficiency and query performance for downstream processing, as Parquet uses columnar storage and compression.

Exam trap

Salesforce often tests the distinction between data ingestion (raw data handling) and data validation (quality checks), leading candidates to confuse format conversion with validation steps.

How to eliminate wrong answers

Option A is wrong because feature engineering transforms existing data into features for model training, not raw format conversion. Option B is wrong because model deployment serves the trained model for inference, not data preprocessing. Option C is wrong because data validation checks data quality and schema compliance, but does not perform format conversion.

178
MCQhard

A company wants to deploy an Einstein AI model that uses sensitive customer data. Which practice should they follow to comply with data privacy regulations?

A.Store all sensitive data in an external data lake and connect via APIs.
B.Obtain explicit consent from data subjects before using their data in AI models.
C.Limit the data used for training to only essential fields.
D.Use Einstein Trust Layer features to mask personally identifiable information (PII) in the model.
AnswerD

Trust Layer masks PII so the model does not see raw sensitive data.

Why this answer

The Einstein Trust Layer provides built-in capabilities to automatically mask or redact personally identifiable information (PII) before data is sent to the underlying AI model, ensuring compliance with data privacy regulations like GDPR and CCPA without requiring manual data handling. This feature operates at the platform level, intercepting data in transit and applying masking rules based on predefined patterns, so sensitive customer data is never exposed to the model or stored in its training logs.

Exam trap

Salesforce often tests the distinction between procedural compliance steps (like obtaining consent) and technical enforcement mechanisms (like the Einstein Trust Layer), leading candidates to choose Option B because it sounds correct in a general privacy context, but the question specifically asks about deploying the model, where a platform-native feature is the correct answer.

How to eliminate wrong answers

Option A is wrong because storing sensitive data in an external data lake and connecting via APIs does not inherently address privacy compliance; it merely shifts the storage location and still requires proper governance, encryption, and consent mechanisms to meet regulations. Option B is wrong because while obtaining explicit consent is a fundamental privacy practice, it is a procedural step, not a technical feature of the Einstein AI platform, and the question asks for a practice to follow when deploying the model, implying a built-in technical solution. Option C is wrong because limiting data to essential fields reduces exposure but does not guarantee compliance; sensitive fields may still be included, and without masking or anonymization, the model could inadvertently memorize and leak PII, violating privacy laws.

179
MCQmedium

A sales manager wants to see how AI-predicted forecast amounts compare to sales reps' committed amounts. Which feature provides this comparison?

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

Einstein Forecasting provides AI forecast predictions compared to rep commits.

Why this answer

Einstein Forecasting is the correct feature because it directly compares AI-predicted forecast amounts against sales reps' committed amounts. This allows sales managers to see discrepancies between the AI's data-driven predictions and the reps' manual commitments, enabling more accurate pipeline management.

Exam trap

The trap here is that candidates may confuse Einstein Forecasting with Einstein Discovery or Opportunity Scoring because all involve AI predictions, but only Forecasting specifically provides the comparison of predicted versus committed amounts in a sales forecast context.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is an analytics tool that identifies patterns and provides predictions or recommendations from data, but it does not specifically compare forecast amounts to committed amounts. Option B is wrong because Einstein Lead Scoring assigns a score to leads based on their likelihood to convert, focusing on lead prioritization rather than forecasting comparisons. Option D is wrong because Einstein Opportunity Scoring evaluates the probability of closing an opportunity, not the comparison of predicted versus committed forecast amounts.

180
MCQmedium

A company wants to build a chatbot that can understand customer intents like 'open a case' or 'check order status' and route conversations accordingly. They need the bot to be trained with natural language examples. Which Einstein Bot component is used to map user phrases to actions?

A.Entities
B.Intents
C.Dialog flows
D.NLP training
AnswerB

Intents categorize user input and map to appropriate bot actions.

Why this answer

Intents are the correct component because they map user phrases (natural language examples) to specific actions or goals, such as 'open a case' or 'check order status'. In Einstein Bot, intents are trained with sample utterances to recognize what the user wants, enabling the bot to route conversations to the appropriate dialog flow.

Exam trap

The trap here is that candidates confuse 'NLP training' (the process) with the actual component (intents) that stores the phrase-to-action mapping, leading them to select option D instead of B.

How to eliminate wrong answers

Option A is wrong because entities are used to extract specific data from user input (e.g., account numbers, dates), not to map phrases to actions. Option C is wrong because dialog flows define the conversation path and responses after an intent is recognized, not the mapping of phrases to actions. Option D is wrong because NLP training is the process of training the natural language model, not a component that directly maps phrases to actions; the component that holds the trained mappings is the intent.

181
MCQmedium

A company wants to use Einstein Forecasting to compare AI-generated predictions against sales rep commitments. They have enabled the feature and entered their sales data. What must they do to view the AI forecast?

A.Run Einstein Discovery on opportunity data
B.Enable Einstein Activity Capture
C.Turn on Einstein AI in the Forecasts settings
D.Create a custom report type for forecasts
AnswerC

The AI forecast option must be selected to generate and compare predictions.

Why this answer

After enabling Einstein Forecasting and entering sales data, the user must turn on Einstein AI in the Forecasts settings to activate the AI-generated predictions. This setting allows the system to compare AI forecasts against sales rep commitments within the standard Forecasts component.

Exam trap

The trap here is that candidates may confuse Einstein Forecasting with Einstein Discovery or assume that additional setup like custom report types or Activity Capture is required, when in fact the AI forecast is simply enabled by a toggle in the Forecasts settings.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is a separate AI feature for analyzing historical data and generating insights, not for generating or viewing AI forecasts within the Forecasts component. Option B is wrong because Einstein Activity Capture is used to automatically log emails and events to Salesforce records, and it is not required for viewing AI forecasts. Option D is wrong because creating a custom report type is unnecessary; the AI forecast is displayed directly in the Forecasts tab once Einstein AI is enabled in the Forecasts settings, without needing a custom report type.

182
Multi-Selecthard

Which THREE actions are recommended when preparing data for Einstein Next Best Action? (Choose 3)

Select 3 answers
A.Provide data on which actions were offered and whether they were accepted
B.Include at least 10 different action types per strategy
C.Record rejections (actions not taken) as negative examples
D.Use only historical data from the last 30 days
E.Retrain the model weekly with fresh interaction data
AnswersA, C, E

This is essential for reinforcement learning.

Why this answer

Einstein Next Best Action (NBA) requires historical interaction data showing which actions were offered and whether they were accepted to train the predictive model. This feedback loop enables the AI to learn which actions are most effective for specific customer contexts, directly improving recommendation accuracy.

Exam trap

Salesforce often tests the misconception that more action types or recent data alone improve model performance, when in fact the key requirements are balanced positive/negative examples, sufficient historical depth, and regular retraining with fresh interaction data.

183
MCQmedium

An administrator wants to build a custom AI model that predicts whether a support case will be escalated based on historical case data. The prediction must be binary (escalated or not). Which tool should they use?

A.Einstein Discovery
B.Einstein Next Best Action
C.Einstein Prediction Builder
D.Einstein Vision
AnswerC

Prediction Builder is designed for custom binary predictions using Salesforce data.

Why this answer

Einstein Prediction Builder is the correct tool because it is specifically designed to create custom binary classification models using historical Salesforce data, such as predicting case escalation (yes/no). It requires no data science expertise and automates model training, evaluation, and deployment directly within the Salesforce platform.

Exam trap

The trap here is that candidates confuse Einstein Discovery's analytical capabilities with predictive model building, but Einstein Discovery explains past patterns while Einstein Prediction Builder creates deployable binary prediction models.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is an augmented analytics tool that explains patterns and provides recommendations from data, but it does not build custom predictive models for binary outcomes like escalation. Option B is wrong because Einstein Next Best Action is a recommendation engine that suggests the next best action for a user based on rules and AI, not a tool for building a custom binary prediction model from historical case data. Option D is wrong because Einstein Vision is used for image recognition and classification tasks, not for predicting binary outcomes from structured tabular data like case records.

184
MCQeasy

A call center manager wants to analyze recorded sales calls to identify keywords, measure talk-time, and capture follow-up tasks. Which Einstein feature provides these capabilities?

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

This feature analyzes call recordings, providing keyword tracking, talk-time metrics, and next step capture.

Why this answer

Einstein Conversation Insights is the correct answer because it is specifically designed to analyze recorded sales calls by transcribing conversations, identifying keywords and topics, measuring talk-time, and capturing follow-up tasks. It uses natural language processing (NLP) to extract actionable insights from voice and text interactions, directly matching the requirements in the question.

Exam trap

The trap here is that candidates may confuse Einstein Conversation Insights with Einstein Activity Capture, assuming both handle call data, but Activity Capture only logs metadata (e.g., call duration from phone system integration) without analyzing the actual conversation content for keywords or tasks.

How to eliminate wrong answers

Option B is wrong because Einstein Discovery is a predictive analytics and machine learning tool that surfaces patterns and recommendations from structured data, not from recorded sales calls or audio transcripts. Option C is wrong because Einstein Activity Capture automatically logs emails and events to Salesforce records but does not analyze call recordings for keywords, talk-time, or tasks. Option D is wrong because Einstein Email Insights focuses on analyzing email interactions (e.g., sentiment, intent) and does not process voice calls or provide talk-time metrics.

185
MCQhard

A global retail company deploys an AI-powered chatbot for customer service. The chatbot uses natural language processing to understand and respond to customer inquiries. After deployment, the company notices that the chatbot consistently provides less accurate and less helpful responses to customers from non-English-speaking regions, particularly those using dialects or slang. The company's data science team trained the model primarily on English-language customer service transcripts from the US and UK. The AI Ethics team has raised concerns about fairness and potential bias. The company wants to address this issue while maintaining overall performance and minimizing cost. Which action should the company take first?

A.Implement a fairness constraint in the model's loss function to penalize disparities across language groups.
B.Conduct a fairness audit using diverse test cases from multiple languages and dialects to quantify the disparity.
C.Disable the chatbot for non-English languages and redirect those customers to human agents.
D.Collect more training data from all regions and retrain the model from scratch.
AnswerB

An audit with diverse test cases will identify the specific gaps, allowing targeted and cost-effective improvements.

Why this answer

The first step in addressing potential bias in an AI system is to measure and quantify the disparity. Conducting a fairness audit with diverse test cases from multiple languages and dialects provides the data science team with a clear, empirical baseline of the model's performance gaps. This diagnostic step is essential before any remediation (like retraining or adding constraints) to ensure that subsequent actions are targeted and effective, avoiding wasted resources or unintended consequences.

Exam trap

Salesforce often tests the principle that measurement and diagnosis must precede intervention; the trap here is that candidates may jump to a technical fix (like a fairness constraint) or a drastic operational change (like disabling the chatbot) without first conducting the essential diagnostic step of a fairness audit.

How to eliminate wrong answers

Option A is wrong because implementing a fairness constraint in the loss function is a technical intervention that should only be applied after the specific disparities have been identified and understood; applying it blindly can degrade overall model performance or introduce new biases without addressing the root cause. Option C is wrong because disabling the chatbot for non-English languages is a reactive, non-technical workaround that reduces service availability and customer satisfaction, failing to leverage the AI's potential and contradicting the goal of maintaining overall performance. Option D is wrong because collecting more training data from all regions and retraining from scratch is a costly, time-consuming approach that should be guided by the results of a fairness audit; without first quantifying the disparity, the new data may not address the specific failure modes, and the retraining may not be necessary if the issue can be fixed with targeted fine-tuning or data augmentation.

186
MCQeasy

A sales manager wants to automatically capture emails and events from a sales rep's Outlook calendar and inbox into Salesforce without manual effort. Which feature should be enabled?

A.Einstein Bots
B.Einstein Lead Scoring
C.Einstein Activity Capture
D.Einstein Discovery
AnswerC

This feature syncs emails and events from Exchange/Gmail to Salesforce automatically.

Why this answer

Einstein Activity Capture is the correct feature because it automatically syncs emails and events from Microsoft 365 or Google Workspace into Salesforce without requiring manual logging. It uses a background sync engine to capture activities from connected calendars and inboxes, eliminating the need for users to manually log interactions.

Exam trap

The trap here is that candidates may confuse Einstein Activity Capture with other Einstein features like Einstein Bots or Einstein Discovery, assuming any 'Einstein' tool can handle data capture, when in fact only Activity Capture is designed for syncing external calendar and email data.

How to eliminate wrong answers

Option A is wrong because Einstein Bots are AI-powered chatbots for automating customer conversations on web and messaging channels, not for capturing emails and calendar events. Option B is wrong because Einstein Lead Scoring uses predictive models to rank leads based on conversion likelihood, not to sync activities from external calendars or inboxes. Option D is wrong because Einstein Discovery is an analytics tool that surfaces insights and predictions from Salesforce data, not a feature for capturing emails or events.

187
MCQeasy

A sales manager wants to automatically prioritize leads based on their likelihood to convert. Which Einstein feature should be used?

A.Einstein Prediction Builder
B.Einstein Relationship Health
C.Einstein Lead Scoring
D.Einstein Activity Capture
AnswerC

Einstein Lead Scoring prioritizes leads based on conversion likelihood.

Why this answer

Einstein Lead Scoring is the correct feature because it uses predictive models to automatically rank leads based on their likelihood to convert, enabling the sales manager to prioritize follow-up efforts. It analyzes historical lead data and engagement patterns to assign a score, directly addressing the requirement for automated prioritization without manual rules.

Exam trap

Salesforce often tests the distinction between Einstein Lead Scoring and Einstein Prediction Builder, trapping candidates who think any predictive model builder can be used for lead scoring, when in fact Lead Scoring is a purpose-built feature for that exact use case.

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 specifically designed for lead scoring or conversion likelihood. Option B is wrong because Einstein Relationship Health measures the strength of existing account relationships, not the conversion potential of new leads. Option D is wrong because Einstein Activity Capture automatically logs emails and events to Salesforce records, but it does not perform any predictive scoring or prioritization of leads.

188
Multi-Selecthard

A company is deploying an Einstein chatbot to handle customer support inquiries. They want to ensure compliance with data privacy regulations and ethical AI principles. Which TWO actions should they take?

Select 2 answers
A.Disable audit trails to reduce data storage
B.Enable PII masking in the Einstein Trust Layer
C.Configure the chatbot to require human approval before sending responses that involve sensitive topics
D.Store all customer chat logs indefinitely for model retraining
E.Allow the chatbot to use all available customer data without restrictions
AnswersB, C

PII masking redacts personal data before sending to the LLM, protecting privacy.

Why this answer

PII masking protects customer privacy by removing sensitive data from requests. Human oversight ensures that automated decisions are reviewed when necessary, especially for high-stakes interactions.

189
Multi-Selectmedium

A data analyst is troubleshooting Einstein Article Recommendations that are not showing up on the site. Which TWO checks should be performed first? (Choose 2)

Select 2 answers
A.Ensure at least 100 articles are in the knowledge base
B.Confirm that article authors have the correct profile permissions
C.Check that article view events are being captured in the data
D.Increase the recommendation frequency from daily to hourly
E.Verify that the recommendation model is published and active
AnswersC, E

Without view data, the model has no basis to recommend.

Why this answer

Einstein Article Recommendations rely on user interaction data, specifically article view events, to generate personalized recommendations. If these events are not being captured, the model has no input to learn from, and recommendations will not appear. Checking event capture is a fundamental first step in troubleshooting data pipeline issues.

Exam trap

Salesforce often tests the misconception that increasing data volume or frequency (Options A and D) will fix recommendation issues, when in fact the core problem is usually missing event data or an inactive model.

190
Multi-Selectmedium

An admin is setting up Einstein in a new Salesforce org. They need to automatically log emails from Gmail and analyze sales call recordings. Which TWO features should they enable? (Choose 2)

Select 2 answers
A.Einstein Conversation Insights
B.Einstein Lead Scoring
C.Einstein Activity Capture
D.Einstein Case Classification
E.Einstein Email Insights
AnswersA, C

Conversation Insights analyzes call recordings and provides keyword tracking and talk-time metrics.

Why this answer

Einstein Activity Capture logs emails from Gmail/Outlook. Einstein Conversation Insights analyzes call recordings. Together they meet both requirements.

191
MCQeasy

A service manager wants to automatically log emails and events from Gmail into Salesforce without manual user intervention. Which Einstein feature should they enable?

A.Einstein Email Insights
B.Einstein Conversation Insights
C.Einstein Bots
D.Einstein Activity Capture
AnswerD

Correct. Einstein Activity Capture automatically logs emails and events to Salesforce based on sync settings.

Why this answer

Einstein Activity Capture (D) is the correct feature because it automatically logs emails and events from Gmail into Salesforce without requiring manual user intervention. It uses server-side synchronization to capture and associate email and calendar data with relevant Salesforce records, eliminating the need for plugins or manual logging.

Exam trap

The trap here is that candidates may confuse Einstein Email Insights (which analyzes email content) with the ability to automatically log emails, when in fact Einstein Activity Capture is the dedicated feature for server-side email and event logging without manual effort.

How to eliminate wrong answers

Option A is wrong because Einstein Email Insights analyzes email content to provide relationship intelligence and sentiment analysis, but it does not automatically log emails into Salesforce records. Option B is wrong because Einstein Conversation Insights focuses on analyzing voice and digital conversation transcripts for sales coaching, not on logging Gmail emails or events. Option C is wrong because Einstein Bots are designed for automating customer service chat interactions, not for capturing and logging email or calendar data from Gmail.

192
Multi-Selecteasy

A sales manager wants to use Einstein Opportunity Scoring to improve forecasting. Which TWO statements are true about Einstein Opportunity Scoring?

Select 2 answers
A.It can be used to automatically update opportunity stage.
B.It compares the AI-predicted score to the rep's commit amount.
C.Score factors are displayed in the Lightning opportunity record.
D.It predicts win likelihood as a score between 1 and 99.
E.It requires the admin to build a custom prediction model.
AnswersC, D

Opportunity Scoring shows top factors influencing the score in Lightning.

Why this answer

Einstein Opportunity Scoring automatically surfaces the key factors influencing the predicted score directly on the Lightning opportunity record. This allows sales reps to see which attributes (e.g., deal size, industry, engagement) are driving the win likelihood, enabling them to take targeted actions to improve the forecast.

Exam trap

The trap here is that candidates confuse the AI-predicted score with a manual rep input (commit amount) or assume the AI can automatically change opportunity stages, when in fact Einstein Scoring is purely a predictive insight tool without write-back capabilities.

193
MCQeasy

When a Salesforce admin enables 'Score Factors' for an AI prediction, what does this provide to end users?

A.The exact formula used by the model
B.A confidence interval for the prediction
C.A histogram of all prediction values
D.A list of the most influential fields and their contribution to the prediction
AnswerD

Score factors show which fields drove the prediction.

Why this answer

When 'Score Factors' is enabled for an AI prediction in Salesforce, end users see a breakdown of the most influential fields that contributed to the prediction, along with their relative contribution (e.g., positive or negative impact). This provides transparency into why a specific prediction was made, helping users trust and act on the AI's output without exposing the underlying model logic.

Exam trap

A common misconception is that 'Score Factors' reveals the underlying model formula or provides statistical measures like confidence intervals, but it only shows the most influential fields and their impact.

How to eliminate wrong answers

Option A is wrong because 'Score Factors' does not reveal the exact formula or algorithm of the model; it only shows field-level contributions, preserving model intellectual property. Option B is wrong because 'Score Factors' provides contribution values, not a statistical confidence interval (which is a separate feature in some AI models). Option C is wrong because 'Score Factors' displays a list of influential fields, not a histogram of all prediction values (which would be a distribution chart, not a per-prediction explanation).

194
MCQmedium

A sales rep wants Einstein to automatically capture emails and calendar events to Salesforce without manual logging. Which feature enables this?

A.Einstein Email Insights
B.Einstein Conversation Insights
C.Einstein GPT for Sales
D.Einstein Activity Capture
AnswerD

Why this answer

Einstein Activity Capture automatically logs emails and events to Salesforce records based on sync settings.

195
Multi-Selectmedium

An administrator is setting up Einstein Forecasting. Which TWO statements accurately describe this feature?

Select 2 answers
A.It only works for products with sufficient sales history.
B.It generates AI-based predictions that complement manager rollups.
C.It automatically adjusts rep commitments based on historical data.
D.It requires a separate Einstein Forecasting license per user.
E.It allows comparison between the AI forecast and the rep's commit.
AnswersB, E

Correct. AI predictions are an additional insight.

Why this answer

Einstein Forecasting uses AI to generate predictive forecasts that complement manager rollups, providing a data-driven baseline that managers can adjust rather than replace. This allows organizations to combine human judgment with machine learning insights for more accurate sales forecasting.

Exam trap

The trap here is that candidates may confuse 'AI predictions' with 'automatic adjustments to rep commitments,' but Einstein Forecasting only provides a baseline prediction and does not override or automatically modify the rep's manual commit.

196
MCQmedium

A company uses Salesforce and wants to provide automated chat responses for common customer inquiries. Which Einstein feature should be configured?

A.Einstein Sentiment
B.Einstein Case Routing
C.Einstein Bots
D.Einstein Recommender
AnswerC

Einstein Bots provide automated chat responses.

Why this answer

Einstein Bots is the correct feature because it enables automated chat responses for common customer inquiries using natural language processing (NLP) and predefined dialog flows. It integrates directly with Salesforce Chat to handle routine questions without human intervention, reducing response times and agent workload.

Exam trap

Salesforce often tests the distinction between features that analyze data (Sentiment, Recommender) versus those that automate actions (Bots), leading candidates to confuse Einstein Sentiment or Recommender as capable of providing chat responses when they are purely analytical or recommendation tools.

How to eliminate wrong answers

Option A is wrong because Einstein Sentiment analyzes the emotional tone of text (e.g., positive, negative, neutral) in conversations or social posts, not for providing automated chat responses. Option B is wrong because Einstein Case Routing uses machine learning to assign cases to the best agent based on skills and availability, not to generate chat replies. Option D is wrong because Einstein Recommender suggests next-best actions or products to agents or customers based on historical data, not for automating chat responses.

197
Multi-Selecteasy

Which THREE types of data sources are commonly integrated into Salesforce Data Cloud for AI use cases?

Select 3 answers
A.Third-party demographic data
B.Web and mobile app engagement data
C.CRM transaction records
D.Model training logs
E.Data transformation scripts
AnswersA, B, C

External data enhances AI models.

Why this answer

Salesforce Data Cloud can ingest third-party demographic data from external sources (e.g., data enrichment providers) to enrich customer profiles. This data, when combined with first-party data, enables AI models to generate more accurate predictions and segmentations. Data Cloud’s Data Streams and Data Lake objects support structured ingestion of such external datasets.

Exam trap

Salesforce often tests the distinction between data sources (raw inputs) and data processing artifacts (logs, scripts), leading candidates to mistakenly select model training logs or transformation scripts as valid data sources.

198
MCQmedium

A Salesforce admin wants to automatically classify incoming service cases by Priority (High, Medium, Low) based on case fields like Subject, Description, and Account Type. Which Einstein feature should they use?

A.Einstein Discovery
B.Einstein Case Classification
C.Einstein Prediction Builder
D.Einstein Bots
AnswerB

This feature specifically uses AI to automatically classify incoming cases into fields such as Priority, Type, and Reason.

Why this answer

Einstein Case Classification is the correct feature because it is specifically designed to automatically classify incoming service cases based on fields like Subject, Description, and Account Type. It uses natural language processing (NLP) and machine learning models trained on historical case data to predict the Priority (High, Medium, Low) without requiring custom code or manual rules.

Exam trap

The trap here is that candidates confuse Einstein Discovery (a general analytics tool) with Einstein Case Classification (a purpose-built feature for case routing), or assume Einstein Prediction Builder is needed because it offers custom predictions, overlooking the simpler, out-of-the-box solution.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is a tool for analyzing historical data to find patterns and generate predictions or recommendations, but it is not designed for real-time, automated case classification at the point of creation. Option C is wrong because Einstein Prediction Builder allows admins to create custom prediction models on any object, but it requires manual configuration and training, whereas Case Classification is a purpose-built, out-of-the-box feature for case routing and prioritization. Option D is wrong because Einstein Bots are used for automating conversational interactions (e.g., chatbots) to handle customer queries, not for classifying case records based on field values.

199
MCQmedium

A company wants to use Einstein to predict which customers are likely to churn in the next 30 days. Which type of prediction should be created in Einstein Prediction Builder?

A.Numeric prediction
B.Multi-class classification
C.Regression
D.Binary classification
AnswerD

Binary classification predicts one of two outcomes, like churn or not churn.

Why this answer

Einstein Prediction Builder is designed for binary outcomes, such as whether a customer will churn (yes/no) within a specified time frame. A binary classification model predicts one of two possible labels, making it the correct choice for this churn prediction use case.

Exam trap

Salesforce often tests the distinction between regression (numeric prediction) and classification (categorical prediction), and candidates mistakenly choose 'Numeric prediction' or 'Regression' because churn prediction involves a time-based numeric threshold (30 days), but the output is still a binary label, not a number.

How to eliminate wrong answers

Option A is wrong because numeric prediction is used for forecasting a continuous numerical value (e.g., revenue amount), not a categorical outcome like churn. Option B is wrong because multi-class classification predicts among three or more categories (e.g., product type), whereas churn is a binary yes/no outcome. Option C is wrong because regression is a type of numeric prediction for continuous values, not suitable for a binary classification task.

200
MCQhard

A company uses generative AI to create personalized email content for each customer. They notice that occasionally the AI produces content that is factually incorrect. What is this phenomenon called?

A.Hallucination
B.Overfitting
C.Concept drift
D.Bias
AnswerA

Correct. Hallucination is the generation of false information by an AI.

Why this answer

Hallucination occurs when generative models produce plausible-sounding but incorrect information.

201
MCQeasy

A nonprofit organization wants to use Einstein Bots to handle inquiries on their website. They are concerned that the bot may give incorrect or insensitive responses. Which feature should they prioritize to maintain trustworthy AI?

A.Use a larger training dataset from generic internet sources.
B.Allow the bot to generate responses only from pre-authored articles.
C.Implement a fallback to human agent for uncertain queries.
D.Disable sentiment analysis to avoid misinterpretation.
AnswerC

Fallback improves trust by human handling.

Why this answer

Implementing a fallback to a human agent for uncertain queries directly addresses the risk of incorrect or insensitive responses by ensuring that when the bot cannot confidently answer, the conversation is escalated to a human. This aligns with the principle of maintaining trustworthy AI, as it prevents the bot from generating potentially harmful or inaccurate responses and provides a safety net for complex or sensitive inquiries.

Exam trap

The trap here is that candidates may confuse 'trustworthy AI' with 'restricting the bot's knowledge' (Option B) or 'disabling features' (Option D), rather than recognizing that a fallback mechanism is the standard industry practice for handling uncertainty and maintaining safety in conversational AI systems.

How to eliminate wrong answers

Option A is wrong because using a larger training dataset from generic internet sources does not guarantee accuracy or sensitivity; it may introduce noise, bias, or irrelevant information, and does not address the specific concern about incorrect or insensitive responses. Option B is wrong because allowing the bot to generate responses only from pre-authored articles restricts the bot's ability to handle dynamic or nuanced inquiries, and does not provide a mechanism for handling queries that fall outside the pre-authored content, potentially leading to unhelpful or inappropriate responses. Option D is wrong because disabling sentiment analysis removes the bot's ability to detect and appropriately respond to user emotions or tone, which could actually increase the risk of insensitive responses rather than reduce it.

202
MCQeasy

A marketing manager wants to predict which customers are most likely to respond to a new email campaign. Which type of machine learning is most appropriate?

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

Correct. Uses labeled data (responded/did not respond) to train a model.

Why this answer

Supervised learning uses labeled historical data (e.g., past response data) to predict a specific outcome (respond vs. not respond).

203
MCQeasy

A service manager wants to automatically categorize incoming cases based on their description. Which Einstein feature should be used?

A.Einstein Reply Recommendations
B.Einstein Case Classification
C.Einstein Vision
D.Einstein Article Recommendations
AnswerB

Einstein Case Classification auto-classifies cases into fields like Type, Priority, and Reason using machine learning.

Why this answer

Einstein Case Classification uses NLP to automatically populate case fields such as Type, Priority, and Reason from the case description.

204
MCQeasy

Which Einstein feature analyzes call recordings to identify keywords, talk-time metrics, and suggested next steps?

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

Conversation Insights analyzes call recordings and provides keywords, talk-time, and next steps.

Why this answer

Einstein Conversation Insights is the correct feature because it is specifically designed to analyze call recordings and transcripts using natural language processing (NLP) to extract keywords, measure talk-time metrics (e.g., speaker ratio, silence duration), and generate suggested next steps. It integrates with telephony systems to process audio data and provide actionable insights directly within Salesforce, unlike other Einstein features that focus on different data sources or tasks.

Exam trap

The trap here is that candidates confuse Einstein Conversation Insights with Einstein Activity Capture or Einstein Email Insights because all three involve communication data, but only Conversation Insights handles audio call recordings and provides talk-time metrics and suggested next steps.

How to eliminate wrong answers

Option A is wrong because Einstein Discovery is a predictive analytics tool that uses statistical models and machine learning to identify patterns and recommend actions based on structured data (e.g., CRM records), not unstructured call recordings or talk-time metrics. Option B is wrong because Einstein Activity Capture automatically logs emails and events from connected email and calendar systems (e.g., Outlook, Gmail) into Salesforce, but it does not analyze call recordings or extract keywords and talk-time metrics. Option D is wrong because Einstein Email Insights analyzes email content to surface relationship intelligence and sentiment, but it is limited to email data and does not process audio call recordings or provide talk-time analysis.

205
Multi-Selecthard

Data quality is critical for AI model performance. Which three data quality dimensions should be monitored? (Choose three.)

Select 3 answers
A.Completeness
B.Consistency
C.Uniqueness
D.Timeliness
E.Volume
AnswersA, B, D

Ensures no missing values that could bias the model.

Why this answer

Completeness, timeliness, and consistency are fundamental data quality dimensions. Volume is not a quality dimension; uniqueness is related to consistency but not always required.

206
MCQeasy

A company wants to use Einstein Prediction Builder to predict customer churn. They have a dataset with 10,000 records and 50 features. What is the primary consideration for model accuracy?

A.The dataset size is too small for reliable predictions.
B.All features must be numerical and normalized.
C.The dataset must be balanced between churned and non-churned customers.
D.The model needs to be retrained daily.
AnswerC

Balancing prevents bias towards majority class.

Why this answer

Einstein Prediction Builder uses automated machine learning (AutoML) to train models, and class imbalance is a critical factor that directly impacts model accuracy. If the dataset is highly skewed (e.g., 95% non-churned, 5% churned), the model may achieve high accuracy by simply predicting the majority class, but it will fail to identify actual churners. Einstein Prediction Builder includes built-in handling for imbalanced data, but the user must ensure the dataset is reasonably balanced or use techniques like oversampling to improve predictive performance.

Exam trap

Salesforce often tests the misconception that dataset size is the primary driver of accuracy, but the trap here is that class balance is more critical than raw record count for classification models in Einstein Prediction Builder.

How to eliminate wrong answers

Option A is wrong because 10,000 records is generally sufficient for a binary classification task like churn prediction, especially with 50 features; Einstein Prediction Builder can work with datasets as small as a few thousand records. Option B is wrong because Einstein Prediction Builder automatically handles feature encoding and normalization; it accepts categorical, numerical, and text features without requiring manual preprocessing. Option D is wrong because retraining frequency depends on business needs and data drift, not on model accuracy; Einstein Prediction Builder supports scheduled retraining but does not require daily retraining as a primary consideration for accuracy.

207
Multi-Selectmedium

A company wants to use Einstein Conversation Insights to analyze sales call recordings. Which TWO capabilities does this feature provide?

Select 2 answers
A.Automatic email logging
B.Real-time transcription of calls
C.Sentiment analysis of customer emails
D.Keyword tracking and trend analysis
E.Talk time and speed metrics
AnswersD, E

Tracks keywords mentioned across calls and shows trends.

Why this answer

Einstein Conversation Insights analyzes call recordings for keyword tracking, talk-time metrics (speaker speed, interruptions), and next step capture. It does not provide real-time transcription (it's post-call) or email analysis.

208
MCQeasy

An administrator is configuring a Salesforce AI model that uses historical sales data. The data includes fields like 'Amount', 'Close_Date', and 'Lead_Source'. What is the primary purpose of data preprocessing in this context?

A.To generate visualizations for business stakeholders
B.To increase the storage capacity of the database
C.To enforce data access permissions for different user roles
D.To clean and transform data into a format suitable for model training
AnswerD

Preprocessing ensures data quality and format.

Why this answer

Data preprocessing is essential for AI models because raw historical sales data often contains missing values, inconsistent formats, and noise. Cleaning (e.g., handling nulls in 'Amount') and transforming (e.g., encoding 'Lead_Source' into numerical features) ensure the model can learn patterns effectively, directly impacting training accuracy and convergence.

Exam trap

Salesforce often tests the distinction between data preprocessing and other data management tasks; the trap here is that candidates confuse preprocessing with reporting (visualizations) or security (permissions), when the core goal is to prepare data for model ingestion.

How to eliminate wrong answers

Option A is wrong because generating visualizations is a downstream analytics task, not the primary purpose of preprocessing for model training. Option B is wrong because preprocessing does not increase storage capacity; it may reduce data size through cleaning but does not affect database storage limits. Option C is wrong because enforcing data access permissions is a security and governance concern, handled by Salesforce's sharing and permission settings, not by data preprocessing steps.

209
MCQmedium

A customer service team wants to automatically route incoming emails to the appropriate department based on content. Which NLP capability is essential for this task?

A.Sentiment analysis
B.Text classification
C.Entity extraction
D.Intent detection
AnswerB

Text classification assigns a category to the email, enabling routing.

Why this answer

Text classification categorizes text into predefined classes, enabling automated routing.

210
MCQhard

A data scientist notices that an Einstein Discovery model predicts a low probability of conversion for all leads in a new campaign, even though the campaign targets high-value accounts. Which initial diagnostic step should be taken?

A.Retrain the model with the new campaign data included
B.Check the Einstein model recipe for incorrect filters
C.Compare the feature distributions of the training and campaign data
D.Increase the prediction confidence threshold
AnswerC

Distribution mismatch often explains low predictions; if features differ, the model may not apply.

Why this answer

The most likely cause of a model predicting low conversion for all leads in a new campaign is a shift in feature distributions between the training data and the campaign data (covariate shift). Checking these distributions is the standard initial diagnostic step to identify if the model is encountering data it was not trained on, which would invalidate its predictions. This aligns with best practices for model monitoring and data validation in Einstein Discovery.

Exam trap

Salesforce often tests the misconception that retraining is the immediate fix for poor model performance, but the trap here is that candidates overlook the fundamental diagnostic step of checking for data drift before taking any corrective action.

How to eliminate wrong answers

Option A is wrong because retraining the model with new campaign data is a premature action; the root cause (data drift) must be diagnosed first, and retraining without investigation could mask the issue or introduce bias. Option B is wrong because checking the Einstein model recipe for incorrect filters addresses configuration errors, but the scenario describes a systematic prediction pattern across all leads, which is more indicative of data distribution shift than a filter misconfiguration. Option D is wrong because increasing the prediction confidence threshold does not fix the underlying cause of low probabilities; it only changes the cutoff for classification, leaving the flawed predictions unchanged.

211
MCQhard

An admin is configuring Einstein Bots for a service center. They want the bot to understand when a customer says 'I want to return my order' and route to a return flow. What must the admin create to enable this understanding?

A.A new action in Bot Builder
B.A new intent with training phrases such as 'I want to return my order'
C.A new dialogue flow linked to a 'Return Order' topic
D.A new entity for 'return order'
AnswerB

Intents classify the user's goal; training phrases teach the NLP model to recognize the intent.

Why this answer

In Einstein Bots, intents represent the customer's goal (e.g., 'Return Order'), and entities capture details (e.g., order number). The admin must create an intent with training phrases like 'I want to return my order' so the NLP model recognizes it. Actions are separate from intent definition.

212
MCQeasy

What is the primary purpose of the Einstein Trust Layer's zero data retention setting?

A.To comply with Salesforce's internal data management policies only.
B.To ensure that customer data is not used to train or improve Salesforce's base AI models.
C.To improve model accuracy by preventing old data from influencing predictions.
D.To reduce storage costs for the customer.
AnswerB

This prevents Salesforce from using customer data beyond the immediate request, aligning with GDPR and CCPA.

Why this answer

Zero data retention ensures that customer data used in prompts or predictions is not stored by Salesforce to train or improve base models, protecting privacy.

213
MCQhard

A data scientist is evaluating a custom Einstein model for a lead scoring use case. The model's precision is 0.9, recall is 0.5. What is the most important improvement priority?

A.Increase recall to reduce false negatives
B.Increase precision to reduce false positives
C.Optimize for an F1 score of 0.7
D.Improve overall accuracy above 80%
AnswerA

Recall is low (0.5), meaning half of actual leads are missed. This should be improved.

Why this answer

With a precision of 0.9 and recall of 0.5, the model is highly selective but misses many actual leads (high false negatives). In lead scoring, false negatives mean lost sales opportunities, which is typically more costly than false positives. Therefore, increasing recall to capture more true positives is the most important improvement priority.

Exam trap

Salesforce often tests the trade-off between precision and recall in imbalanced classification scenarios, where candidates mistakenly focus on improving precision or accuracy without recognizing that low recall (high false negatives) is the critical business problem in lead scoring.

How to eliminate wrong answers

Option B is wrong because increasing precision would further reduce false positives, but the model already has high precision (0.9); the bigger issue is the low recall (0.5) causing many missed leads. Option C is wrong because optimizing for an F1 score of 0.7 is a metric goal, not a direct improvement priority; the F1 score is a harmonic mean of precision and recall, and simply targeting a number does not address the underlying imbalance. Option D is wrong because overall accuracy can be misleading in imbalanced datasets; a model could achieve high accuracy by always predicting the majority class, but that would not improve lead capture for the minority class (actual leads).

214
MCQmedium

An admin wants to use Einstein Reply Recommendations in Service Cloud. Which ethical consideration is most important to implement before enabling the feature?

A.Reduce the cost of agent training.
B.Maximize the number of recommendations.
C.Increase the speed of case resolution.
D.Ensure customer data is anonymized.
AnswerD

Anonymization protects privacy and reduces risk of PII exposure in AI outputs.

Why this answer

Customer data privacy is paramount; anonymizing data ensures recommendations do not expose sensitive information.

215
MCQmedium

A company needs to predict which support cases are likely to escalate based on historical case data. They have a clear binary outcome (escalated vs not escalated) and want to select features from their case records. Which Einstein tool should they use?

A.Einstein Next Best Action
B.Einstein Discovery
C.Einstein Case Classification
D.Einstein Prediction Builder
AnswerD

Prediction Builder is designed for creating custom predictions with binary outcomes.

Why this answer

Einstein Prediction Builder is the correct tool because it enables users to create custom binary classification models using their own historical data without writing code. The requirement to predict a binary outcome (escalated vs not escalated) and select features from case records matches Prediction Builder's point-and-click interface for training a model on a custom object or standard object like Case.

Exam trap

The trap here is that candidates confuse Einstein Case Classification (which classifies cases into categories) with predicting a binary outcome, but Case Classification is for multi-class categorization, not binary prediction.

How to eliminate wrong answers

Option A is wrong because Einstein Next Best Action is designed to recommend the next best action or offer to a customer in real time, not to build a predictive model from historical case data. Option B is wrong because Einstein Discovery is an automated insights and explanation tool that surfaces patterns and drivers in data, but it does not create a deployable prediction model for a binary outcome. Option C is wrong because Einstein Case Classification is specifically for automatically categorizing incoming cases into predefined categories, not for predicting a binary escalation outcome based on historical features.

216
Multi-Selecthard

A company is developing an AI system to assist with hiring. Which TWO practices are essential for ethical AI deployment?

Select 2 answers
A.Optimize the system for speed to reduce waiting times
B.Remove all demographic features to ensure fairness
C.Conduct regular bias audits on model predictions
D.Maximize accuracy on historical hiring data
E.Obtain informed consent from applicants if their data is used
AnswersC, E

Audits help detect and mitigate discriminatory outcomes.

Why this answer

Regular bias audits are a core ethical practice for AI systems, especially in hiring. These audits involve systematically testing the model's predictions across demographic groups to detect and mitigate unintended discrimination, ensuring compliance with fairness standards like the EEOC's Uniform Guidelines on Employee Selection Procedures.

Exam trap

Salesforce often tests the misconception that removing demographic features (Option B) is sufficient to eliminate bias, when in fact proxy variables and model behavior must be actively monitored through audits (Option C).

217
MCQhard

A financial services company uses Salesforce AI to detect fraudulent transactions. The dataset has 1 million legitimate transactions and only 1,000 fraudulent ones. The model trained with default parameters achieves 99.9% accuracy but identifies no fraud (precision and recall of 0). The data scientist wants to maximize fraud detection (recall) while minimizing false positives. Which approach is most effective?

A.Increase the weight of the majority class in the loss function.
B.Use SMOTE to generate synthetic fraud samples to balance the dataset.
C.Train multiple models on different random subsets and average predictions.
D.Use a simpler model to avoid overfitting on the majority class.
AnswerB

SMOTE creates synthetic instances of the minority class, allowing the model to learn fraud patterns effectively and improve recall.

Why this answer

With extreme imbalance, oversampling the minority class (e.g., SMOTE) generates synthetic fraud examples, helping the model learn fraud patterns and improve recall without discarding legitimate data.

218
MCQmedium

A sales operations team wants to automatically categorize incoming support cases into predefined categories (e.g., Billing, Technical, General). The team has thousands of historical cases with correct category labels. Which AI approach should they use?

A.Topic modeling (unsupervised)
B.Text classification
C.Sentiment analysis
D.Named entity recognition
AnswerB

Correct: text classification maps text to predefined categories using labeled training data.

Why this answer

Text classification is a supervised NLP task that assigns predefined labels to text. Historical labeled cases provide the training data for a classifier.

219
MCQeasy

A sales rep wants to generate a personalized email to a prospect using AI. Which Einstein GPT feature should they use?

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

Sales GPT includes email generation, call summaries, and meeting follow-ups.

Why this answer

Sales GPT includes email generation capabilities. It can create personalized email drafts based on CRM data and context.

220
MCQmedium

A company wants to generate personalized marketing email content for each customer, including product recommendations and tailored copy. Which AI approach is BEST?

A.Use an unsupervised learning model to cluster customers and send generic emails per cluster
B.Use predictive AI to score customers and generative AI to create email copy based on the scores
C.Use only predictive AI to send the same email to all customers with top products
D.Use only generative AI to create emails without any customer data
AnswerB

Predictive AI identifies what to recommend, and generative AI writes the personalized copy.

Why this answer

Generative AI can create original content, and predictive AI can recommend products. The combination of both can generate personalized copy with dynamic product suggestions. Using only predictive AI yields recommendations but not content; generative AI alone can create text but lacks recommendation logic.

221
MCQeasy

A Salesforce admin wants to use Einstein Prediction Builder to predict case resolution time. What type of data is most critical for training this model?

A.Customer satisfaction survey responses
B.Historical case records including resolution time
C.Product inventory levels
D.Employee work schedules
AnswerB

Historical data is essential for training.

Why this answer

Einstein Prediction Builder requires historical data with known outcomes to train a supervised machine learning model. Historical case records containing actual resolution times provide the labeled examples needed for the model to learn patterns and predict future case resolution times. Without this ground truth data, the model cannot be trained to make accurate predictions.

Exam trap

The trap here is that candidates may confuse factors that influence resolution time (like employee schedules or inventory) with the actual labeled outcome data required to train a supervised prediction model.

How to eliminate wrong answers

Option A is wrong because customer satisfaction survey responses measure post-resolution sentiment, not the actual resolution time, and they lack the precise timestamp data required for regression-based time prediction. Option C is wrong because product inventory levels are unrelated to case resolution time; they might be relevant for supply chain predictions but not for service case duration. Option D is wrong because employee work schedules, while potentially influencing resolution time, are not the historical outcome data needed to train the model — the model needs actual resolution times from past cases, not staffing inputs.

222
MCQhard

An admin is configuring Einstein Opportunity Scoring and notices that the score is not appearing on the Opportunity record page. They have enabled the feature and assigned the permission set. What else is required for the score to display?

A.The org must have at least 100 closed opportunities in the last 12 months.
B.The user must have the 'View Einstein Scores' permission in their profile.
C.The opportunity must have a closed date within the next 30 days.
D.The Einstein Opportunity Score field must be added to the page layout.
AnswerD

The field is hidden by default; it must be manually added to the Opportunity page layout.

Why this answer

The Einstein Opportunity Score is a custom field that must be manually added to the Opportunity page layout to appear on the record. Enabling the feature and assigning the permission set only activates the backend scoring engine and grants access; without the field on the layout, the score cannot render on the record page.

Exam trap

The trap here is that candidates assume enabling the feature and assigning permissions are sufficient, overlooking the critical step of adding the custom field to the page layout, which is a common Salesforce configuration requirement.

How to eliminate wrong answers

Option A is wrong because Einstein Opportunity Scoring does not require a minimum number of closed opportunities in the last 12 months; it uses historical data to train the model, but there is no hard threshold of 100 closed opportunities. Option B is wrong because the 'View Einstein Scores' permission is not a profile-level permission; access is controlled via the 'Einstein Opportunity Scoring' permission set, not a separate profile permission. Option C is wrong because the score is calculated for any open opportunity, not only those with a closed date within the next 30 days; the scoring model evaluates opportunities regardless of their expected close date.

223
MCQmedium

A sales operations manager wants to ensure that the AI-driven lead scoring model in Salesforce does not discriminate against certain demographic groups. Which Salesforce tool or feature should they use to regularly check for bias in the model's predictions?

A.Use Einstein Trust Layer audit trail and model explainability features
B.Implement Data Processing Addendum (DPA) for all customer data
C.Enable zero data retention policy to prevent data leakage
D.Use Data Cloud to merge all demographic data into a single profile
AnswerA

The audit trail logs AI decisions, and model explainability surfaces influential factors, enabling bias detection.

Why this answer

Einstein Trust Layer's audit trail and model explainability features allow tracking predictions and identifying skewed outcomes. For bias auditing, Einstein Discovery provides fairness metrics and predictions explanations. However, the correct answer is the Einstein Trust Layer's ability to log AI decisions and the audit trail, combined with model explainability.

Among the options, 'Use Einstein Trust Layer audit trail and model explainability' is the best fit.

224
Multi-Selectmedium

An organization wants to use Einstein Conversation Insights to analyze sales call recordings. Which THREE pieces of information can Einstein Conversation Insights provide?

Select 3 answers
A.Next step capture
B.Talk-time metrics
C.Keyword tracking
D.Full transcript generation
E.Sentiment analysis of the call
AnswersA, B, C

Yes, it captures action items or next steps discussed.

Why this answer

Einstein Conversation Insights can automatically capture and highlight next steps mentioned during a sales call, such as follow-up actions or commitments. This feature uses natural language processing (NLP) to identify action items and surface them directly in the call summary, enabling sales teams to act on key takeaways without manual note-taking.

Exam trap

The trap here is that candidates may assume Einstein Conversation Insights provides full transcripts or detailed sentiment analysis, but the exam tests the specific, limited set of features it offers—next step capture, talk-time metrics, and keyword tracking—while other capabilities like sentiment analysis belong to separate Einstein products.

225
MCQmedium

A service manager wants to automatically categorize incoming cases into standard fields like Type, Priority, and Reason based on historical case data. Which Einstein feature should they use?

A.Einstein Discovery
B.Einstein Prediction Builder
C.Einstein Case Classification
D.Einstein Article Recommendations
AnswerC

This feature is specifically designed to auto-classify cases into standard fields.

Why this answer

Einstein Case Classification uses AI to automatically classify cases into fields such as Type, Priority, and Reason by learning from historical case data.

Page 2

Page 3 of 11

Page 4

All pages