Courseiva

CCNA AI Fundamentals Questions

75 of 163 questions · Page 2/3 · AI Fundamentals · Answers revealed

76
MCQeasy

A company wants to use Einstein to predict the optimal discount amount for each deal. Which type of machine learning problem does this represent?

A.Reinforcement learning
B.Regression
C.Classification
D.Clustering
AnswerB

Regression predicts continuous numeric outcomes.

Why this answer

Predicting a continuous numerical value, such as the optimal discount amount for a deal, is a regression problem. In the context of Einstein, this would use a regression model to learn from historical deal data and output a specific discount percentage or dollar amount, rather than a category or cluster.

Exam trap

Salesforce often tests the distinction between regression and classification by presenting a scenario where the output is a number, leading candidates to mistakenly think it is classification because they associate 'prediction' with categories, but the key is whether the output is continuous or discrete.

How to eliminate wrong answers

Option A is wrong because reinforcement learning involves an agent learning to make sequences of decisions through trial and error to maximize a reward, not predicting a single continuous value like a discount amount. Option C is wrong because classification predicts discrete categories or labels (e.g., 'high discount' vs 'low discount'), not a continuous numerical output. Option D is wrong because clustering groups unlabeled data into clusters based on similarity, without a target variable to predict a specific discount amount.

77
MCQeasy

A sales team notices that their lead scoring model assigns high scores to leads that rarely convert. The model was trained on data from the past 5 years. What is the most likely cause?

A.The features used are irrelevant to lead conversion
B.The model is overfitting to noise in the training data
C.The model is underfitting and needs more features
D.There is concept drift because buying behaviors have changed
AnswerD

Correct. Changes in market conditions or buyer behavior cause old data to become less predictive.

Why this answer

Concept drift occurs when the relationship between features and labels changes over time. Old data may no longer represent current sales patterns.

78
MCQmedium

A company wants to automatically extract key information like order numbers and dates from customer emails. Which NLP technique should be used?

A.Entity extraction
B.Sentiment analysis
C.Text classification
D.Text summarization
AnswerA

Entity extraction identifies structured information like order numbers and dates from unstructured text.

Why this answer

Entity extraction (named entity recognition) identifies specific pieces of information such as dates, order numbers, and names from text.

79
MCQmedium

A customer support center wants to automatically route incoming cases to the appropriate department based on the issue description. Which NLP task is most relevant?

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

Correct. Classifies the case into predefined categories for routing.

Why this answer

Text classification assigns a category (e.g., billing, technical) to a text, enabling automated routing.

80
Multi-Selecteasy

According to Salesforce's AI Trust Principles, which TWO practices are essential for ethical AI deployment?

Select 2 answers
A.Use AI to replace human jobs entirely.
B.Ensure models achieve 100% accuracy before deployment.
C.Fully automate decision-making without human review.
D.Hold the organization accountable for AI-driven outcomes.
E.Be transparent about how AI models are built and used.
AnswersD, E

Accountability ensures responsible use.

Why this answer

Salesforce's AI Trust Principles emphasize organizational accountability for AI-driven outcomes, ensuring that the organization takes responsibility for the decisions and impacts of its AI systems. This principle aligns with ethical AI deployment by requiring governance, oversight, and mechanisms to address unintended consequences, rather than shifting blame to the technology itself.

Exam trap

The trap here is that candidates often confuse 'automation' with 'efficiency' and select Option C, overlooking that ethical AI frameworks like Salesforce's explicitly require human-in-the-loop review for high-stakes decisions.

81
Multi-Selecthard

Which THREE are valid considerations when deploying an Einstein Bot?

Select 3 answers
A.Defining the intents the bot should handle.
B.Testing the bot in a sandbox before activation.
C.Limiting the bot to a single communication channel.
D.Training the bot with sample user dialogs.
E.Ensuring the bot can escalate to a human agent only via email.
AnswersA, B, D

Intents are the core of bot functionality.

Why this answer

Defining intents is a core requirement for an Einstein Bot because intents represent the specific goals or tasks users want to accomplish, such as checking an order status or resetting a password. The bot uses Natural Language Processing (NLP) to map user utterances to these intents, enabling it to route conversations appropriately. Without clearly defined intents, the bot cannot accurately understand or respond to user requests.

Exam trap

Salesforce often tests the misconception that a bot must be restricted to one channel or a single escalation method, when in reality Einstein Bots are built for omnichannel flexibility and support multiple escalation options.

82
MCQhard

A company wants to deploy an Einstein Prediction Builder model to predict lead conversion within 30 days. They have historical data from the past 12 months. Which data preprocessing step is most critical to ensure the model learns correctly?

A.Normalize all numerical features to a 0-1 range.
B.Remove leads that converted after 30 days.
C.Include only leads that were assigned to a sales rep.
D.Ensure the target variable is computed based on conversion status at exactly 30 days from creation.
AnswerD

Accurate target alignment is crucial.

Why this answer

The target variable for a time-based prediction model like Einstein Prediction Builder must be computed at a precise, consistent point in time—in this case, exactly 30 days from lead creation. If the target is computed at varying intervals, the model will learn incorrect patterns, as it cannot distinguish between leads that converted at 31 days versus those that never converted, leading to biased or invalid predictions.

Exam trap

Salesforce often tests the concept of 'target variable definition' in time-series or prediction scenarios, where candidates mistakenly focus on data cleaning or feature engineering instead of the precise labeling of the outcome variable, which is the foundational step for supervised learning.

How to eliminate wrong answers

Option A is wrong because normalizing numerical features to a 0-1 range is not the most critical step for a binary classification model like lead conversion; Einstein Prediction Builder handles feature scaling internally, and the primary concern is correct target definition, not feature normalization. Option B is wrong because removing leads that converted after 30 days would discard valuable negative examples (non-conversion within the window) and introduce survivorship bias, making the model unable to learn the true conversion rate within the 30-day period. Option C is wrong because including only leads assigned to a sales rep introduces selection bias and ignores leads that may convert without assignment, which is not a required preprocessing step for the model to learn correctly; the model should be trained on all leads to generalize properly.

83
MCQhard

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

A.Many high-quality leads are not followed up
B.The model is overfitted to training data
C.Sales team spends time on many leads that never convert
D.The model has high bias
AnswerA

Correct: low recall means the model misses a large fraction of true hot leads.

Why this answer

High precision means most leads flagged as hot are indeed hot, but low recall means many actual hot leads are missed, causing lost opportunities.

84
MCQeasy

What is the primary difference between narrow AI and general AI?

A.Narrow AI is task-specific; general AI can perform any intellectual task a human can
B.Narrow AI can perform any intellectual task; general AI is limited to one task
C.Narrow AI uses machine learning; general AI uses deep learning
D.General AI is already deployed in CRM systems; narrow AI is experimental
AnswerA

Narrow AI excels at one domain; general AI would be versatile but remains theoretical.

Why this answer

Narrow AI is designed for specific tasks, while general AI (AGI) would have human-like broad capabilities, which does not yet exist.

85
Multi-Selecthard

A data scientist is building a churn prediction model. The dataset has 95% non-churn and 5% churn. Which THREE actions should the data scientist take to address the class imbalance?

Select 3 answers
A.Train the model on the original dataset without changes
B.Use accuracy as the primary metric
C.Undersample the non-churn class
D.Use precision, recall, or F1 score instead of accuracy
E.Oversample the churn class
AnswersC, D, E

Reduces majority class size to balance.

Why this answer

Oversampling minority class, undersampling majority class, and using appropriate metrics (like precision/recall) are common approaches. Using accuracy is not recommended. Training on original data without adjustment will produce a biased model.

86
Multi-Selectmedium

A data scientist trains a model to predict customer churn. The model performs well on training data but poorly on test data. Which TWO issues are most likely?

Select 2 answers
A.Overfitting
B.Insufficient training data
C.High bias
D.Underfitting
E.Data leakage
AnswersA, E

Model fits noise in training data, leading to poor generalization.

Why this answer

Overfitting means the model memorized training data and fails to generalize. Data leakage inflates training performance but not test performance.

87
MCQmedium

An admin creates a predictive model in Einstein Prediction Builder to forecast customer churn. The model shows high accuracy on test data but poor performance in production. What is the most likely cause?

A.Improper feature scaling in the training pipeline
B.The model is overfitted to the training data
C.Target leakage in the training dataset
D.Data drift between training and production environments
AnswerD

Changes in customer behavior or data collection can make the model less effective.

Why this answer

The model's high accuracy on test data but poor performance in production is a classic symptom of data drift. In Einstein Prediction Builder, the model was trained on historical data that may not reflect current customer behavior patterns, leading to a mismatch between training and production distributions. This is not a model training issue but a data environment shift.

Exam trap

Salesforce often tests the distinction between overfitting (which affects test data) and data drift (which affects production data), trapping candidates who confuse high test accuracy with model generalization.

How to eliminate wrong answers

Option A is wrong because improper feature scaling would typically cause poor performance on both test and production data, not specifically a drop in production only. Option B is wrong because overfitting would manifest as high training accuracy but low test accuracy, not high test accuracy with poor production performance. Option C is wrong because target leakage would inflate accuracy on both training and test sets, not just training, and would not explain a production-only degradation.

88
Multi-Selecthard

A data scientist is building a churn prediction model. What THREE factors are most critical for model success?

Select 3 answers
A.High number of model parameters
B.Relevant features correlated with churn
C.Representative dataset reflecting all customer segments
D.Quality labeled historical data
E.Large dataset size
AnswersB, C, D

Good features drive model performance.

Why this answer

Quality labeled historical data ensures the model learns from accurate patterns. Relevant features (e.g., usage frequency, support tickets) improve predictions. A representative dataset avoids bias and ensures generalization.

89
MCQmedium

Refer to the exhibit. A sales manager sees that an account has an Einstein Score of 78 with a confidence of 0.65. What is the most appropriate interpretation?

A.The score indicates the account has been contacted 78 times, with a 65% satisfaction rate.
B.The account is predicted to have a 78% chance of converting, and the model is 65% confident in that prediction.
C.The account is in the top 78% of scoring accounts, with a 65% chance of being accurate.
D.The account is predicted to convert, but the model's confidence is relatively low, suggesting the prediction should be verified.
AnswerD

Moderate confidence warrants human review.

Why this answer

The Einstein Score is a predictive lead scoring model that outputs a conversion probability (0 to 100), and the confidence score (0 to 1) indicates the model's certainty in that prediction. A confidence of 0.65 is below the typical threshold (e.g., 0.75 or higher), meaning the prediction is less reliable and should be manually verified before acting on it.

Exam trap

Salesforce often tests the distinction between the prediction score (what is predicted) and the confidence score (how sure the model is), leading candidates to misinterpret the confidence as an accuracy percentage or to conflate the two values into a single probability.

How to eliminate wrong answers

Option A is wrong because the Einstein Score is not a count of contacts or a satisfaction rate; it is a predicted conversion probability. Option B is wrong because it conflates the score (78) with a percentage chance of converting, but the score is already a probability (78%), and the confidence (0.65) is the model's certainty in that probability, not an additional percentage. Option C is wrong because the score does not represent a percentile rank (top 78%); it is an absolute probability, and the confidence is not an accuracy percentage but a measure of model certainty.

90
MCQmedium

A company’s AI model recommends products to customers. The team wants to measure how often the recommended products are actually purchased. Which metric is most appropriate?

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

Correct. Precision = TP/(TP+FP), focusing on the correctness of positive predictions.

Why this answer

Precision measures the proportion of recommended items that are relevant (purchased). For product recommendations, precision is key.

91
MCQeasy

A customer support team wants to automatically categorize incoming cases into predefined categories such as Billing, Technical, or Account. Which NLP task is most appropriate?

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

Text classification assigns predefined labels (Billing, Technical, Account) to text, exactly matching the requirement.

Why this answer

Text classification assigns predefined labels to text, making it the right choice for categorizing support cases.

92
MCQmedium

A sales representative uses Einstein Activity Capture to log emails automatically. However, some critical emails are not being captured. What is the most likely reason?

A.The sender or recipient is not a Salesforce user with a license.
B.The emails were sent from a non-Outlook or Gmail client.
C.The Einstein Activity Capture feature is disabled for that specific user.
D.The emails contain attachments that exceed the size limit.
AnswerA

Only Salesforce users with licenses are captured.

Why this answer

Einstein Activity Capture relies on Salesforce user licenses to associate email activities with records. If the sender or recipient is not a licensed Salesforce user, the system cannot link the email to a user identity, causing it to be skipped during capture. This is the most common reason for missing emails because the feature is designed to log activities only for licensed users.

Exam trap

Salesforce often tests the misconception that Einstein Activity Capture requires a specific email client (like Outlook or Gmail), but the real limitation is the Salesforce user license requirement for the sender or recipient.

How to eliminate wrong answers

Option B is wrong because Einstein Activity Capture supports multiple email clients, including Outlook, Gmail, and Exchange/Google Workspace via server-side sync, so non-Outlook or Gmail clients are not a barrier. Option C is wrong because if the feature were disabled for that specific user, no emails would be captured at all, not just some critical ones. Option D is wrong because Einstein Activity Capture does not enforce a specific attachment size limit; it captures the email metadata and body, and attachments are handled separately without causing the email to be skipped.

93
MCQhard

Refer to the exhibit. An admin runs a preprocess script before training an Einstein model. Why is normalization applied to the 'AnnualRevenue' and 'NumberOfEmployees' columns?

A.To detect outliers in the data
B.To ensure both features contribute equally to the model
C.To remove rows with missing values
D.To reduce the number of features from 30 to 2
AnswerB

Equalizing scales prevents one feature from having undue influence.

Why this answer

Normalization scales features like 'AnnualRevenue' and 'NumberOfEmployees' to a comparable range (e.g., 0–1 or with zero mean and unit variance). Without normalization, a feature with larger numeric values (e.g., revenue in millions) would dominate distance-based calculations in models like k-nearest neighbors or gradient descent, causing the model to undervalue the smaller-scale feature. By normalizing, both features contribute equally to the model's learning process, which is essential for many machine learning algorithms used in Einstein.

Exam trap

Salesforce often tests the distinction between data preprocessing steps (normalization, scaling) and other data preparation tasks (outlier detection, missing value handling, dimensionality reduction), and the trap here is that candidates confuse normalization with outlier detection or feature reduction because both involve numerical transformations.

How to eliminate wrong answers

Option A is wrong because detecting outliers is typically done using statistical methods (e.g., Z-score, IQR) or visualization, not normalization; normalization itself does not identify outliers. Option C is wrong because removing rows with missing values is a data cleaning step (e.g., using dropna() or imputation), not a purpose of normalization. Option D is wrong because reducing the number of features from 30 to 2 is dimensionality reduction (e.g., PCA or feature selection), not normalization, which preserves all features.

94
MCQmedium

A sales director wants to implement lead scoring but has no historical data on which leads converted. What approach can the team use to start?

A.Use unsupervised learning to cluster leads into segments and score based on cluster characteristics
B.Train a supervised model using assumptions as labels
C.Skip lead scoring until enough conversion data is collected
D.Use reinforcement learning to learn scoring from sales team feedback
AnswerA

Correct. Clustering reveals patterns; leads in high-value clusters get higher scores.

Why this answer

Unsupervised learning can cluster leads based on similarities, providing initial scores without labeled outcomes.

95
Multi-Selectmedium

Which TWO of the following are ethical considerations when deploying AI in Salesforce?

Select 2 answers
A.Maximizing model complexity for better accuracy
B.Providing transparency in AI-generated outcomes
C.Ensuring data privacy and compliance with regulations
D.Using only historical data without review for biases
AnswersB, C

Transparency helps users understand how decisions are made, building trust.

Why this answer

Transparency in AI-generated outcomes is a core ethical principle, especially in Salesforce's Einstein platform, where users must understand how predictions (e.g., lead scoring or opportunity insights) are made. Salesforce provides tools like 'Why This Prediction?' to explain model outputs, ensuring trust and accountability. Without transparency, users cannot validate or challenge AI decisions, leading to potential bias or misuse.

Exam trap

Salesforce often tests the misconception that maximizing accuracy (Option A) is always ethical, when in fact it can compromise interpretability and fairness, which are key to responsible AI deployment.

96
MCQeasy

A customer service team wants to automatically detect the intent of incoming chat messages (e.g., complaint, inquiry, purchase). Which AI technique is BEST suited for this task?

A.Generative AI
B.Reinforcement learning
C.Natural language processing (NLP)
D.Computer vision
AnswerC

NLP is designed to interpret and classify text, making it ideal for intent detection from chat messages.

Why this answer

Natural language processing (NLP) deals with understanding human language, including intent detection. Computer vision is for images, reinforcement learning for decision-making, and generative AI for content creation.

97
MCQmedium

A service organization wants to use Einstein Reply Recommendations to suggest responses to customer chats. The feature is enabled, but agents report that no recommendations appear. The admin has ensured the permission set is assigned and the chat data is flowing. What should the admin examine next?

A.The number of closed cases with successful chat histories.
B.The model training schedule.
C.The language settings for the chat channels.
D.The user's profile settings for chat.
AnswerC

Language support is a prerequisite for recommendations to appear.

Why this answer

Einstein Reply Recommendations require the chat channel language to be set to a supported language (e.g., English, Spanish, French, German, Portuguese, or Japanese). If the language setting is unsupported or mismatched, the model cannot generate suggestions, even if permissions and data flow are correct. This is a common misconfiguration because the feature silently fails when the language is not recognized.

Exam trap

Salesforce often tests the misconception that model training or data volume is the primary cause of missing recommendations, when in fact the language setting is a prerequisite that must be configured correctly before any recommendations can appear.

How to eliminate wrong answers

Option A is wrong because the number of closed cases with successful chat histories does not affect the real-time generation of reply recommendations; Einstein uses live chat transcripts and historical data for training, but the feature's immediate availability depends on language and model readiness, not case closure counts. Option B is wrong because the model training schedule determines when the model is updated, but recommendations can still appear immediately after initial training if the language is supported; a missing or unscheduled training would cause outdated or no suggestions, but the primary blocker here is language settings, not the training cadence. Option D is wrong because the user's profile settings for chat control agent interface permissions (e.g., ability to send messages), not the underlying Einstein model's ability to generate recommendations; the admin already confirmed the permission set is assigned, so profile settings are not the issue.

98
MCQeasy

What is the primary difference between narrow AI and general AI?

A.Narrow AI is rule-based, while general AI uses machine learning
B.Narrow AI requires labeled data, while general AI can learn without data
C.Narrow AI is designed for a specific task, while general AI can understand and reason across a wide range of tasks
D.Narrow AI can perform any intellectual task, while general AI is limited to one task
AnswerC

Narrow AI is specialized; general AI has broad cognitive abilities.

Why this answer

Narrow AI excels at specific tasks, while general AI would possess human-like cognitive abilities across many domains. General AI does not yet exist. The other options confuse definitions.

99
Multi-Selectmedium

A company wants to use AI to reduce customer churn. Which TWO approaches are most appropriate? (Select 2)

Select 2 answers
A.Use predictive AI to score churn risk based on historical data
B.Use generative AI to create personalized retention offers
C.Use computer vision to analyze customer photos
D.Use reinforcement learning to train a chatbot
E.Use sentiment analysis on customer support interactions to detect dissatisfaction
AnswersA, E

Predictive models can estimate churn probability from historical patterns.

Why this answer

Predictive AI can forecast churn likelihood, and sentiment analysis can identify dissatisfied customers early.

100
MCQmedium

A retail company uses Einstein Prediction Service to forecast customer churn. To improve model accuracy, which data preparation step is most critical?

A.Select only the top three features based on correlation.
B.Clean the dataset by handling missing values and outliers.
C.Use a different algorithm like neural networks.
D.Increase the dataset size by collecting more customer records.
AnswerB

Proper data cleaning ensures the model learns accurate patterns.

Why this answer

Handling missing values and outliers is the most critical data preparation step for Einstein Prediction Service because the underlying gradient boosting models (like XGBoost) are sensitive to data quality issues. Missing values can introduce bias or cause the model to misinterpret patterns, while outliers can disproportionately influence split decisions, reducing predictive accuracy for churn scenarios.

Exam trap

Salesforce often tests the misconception that feature selection or algorithm changes are the primary levers for accuracy, when in reality data cleaning is the foundational step that directly impacts model reliability in Einstein Prediction Service.

How to eliminate wrong answers

Option A is wrong because selecting only the top three features based on correlation ignores feature interactions and non-linear relationships that Einstein's ensemble methods rely on; it also risks discarding weakly correlated but collectively predictive features. Option C is wrong because the question asks about data preparation, not algorithm selection; changing the algorithm does not address data quality issues and Einstein Prediction Service already uses optimized algorithms (e.g., gradient boosting) that require clean input. Option D is wrong because simply increasing dataset size without cleaning existing data amplifies noise and bias; more records with missing values or outliers degrade model performance rather than improve accuracy.

101
MCQeasy

In Salesforce Data Cloud, which AI capability is used to automatically generate audience segments based on customer behavior patterns?

A.Prompt Builder
B.Einstein AI (Data Cloud's machine learning capabilities)
C.Einstein Discovery
D.Einstein GPT
AnswerB

Data Cloud uses Einstein AI to analyze customer data and automatically create predictive segments.

Why this answer

Einstein AI in Salesforce Data Cloud provides machine learning capabilities that automatically analyze customer behavior patterns, such as purchase history and engagement metrics, to generate predictive audience segments. This enables marketers to target specific groups without manual rule creation, leveraging Data Cloud's unified data model and Einstein's propensity scoring.

Exam trap

Salesforce often tests the distinction between generative AI tools (like Einstein GPT or Prompt Builder) and predictive machine learning capabilities (like Einstein AI), leading candidates to confuse content generation with automated segmentation.

How to eliminate wrong answers

Option A is wrong because Prompt Builder is a tool for creating and managing prompts for generative AI models, not for automatically generating audience segments based on behavior patterns. Option C is wrong because Einstein Discovery is a separate analytics tool focused on identifying trends and root causes in data, not on generating audience segments from customer behavior. Option D is wrong because Einstein GPT is a generative AI assistant for content creation and summarization, not a machine learning engine for segment generation.

102
MCQeasy

Which type of machine learning is used when a model is trained on historical sales data that includes both input features and the known outcome (e.g., closed won/lost) to predict whether a new lead will convert?

A.Semi-supervised learning
B.Supervised learning
C.Reinforcement learning
D.Unsupervised learning
AnswerB

Correct: supervised learning uses labeled outcomes to train a predictive model.

Why this answer

Supervised learning uses labeled training data where the correct output is provided. Lead scoring with historical outcomes is a classic supervised learning task.

103
Multi-Selecteasy

Which TWO of the following are key principles of trustworthy AI according to Salesforce's AI ethics guidelines?

Select 2 answers
A.Profitability
B.Complexity
C.Transparency
D.Explainability
E.Accountability
AnswersC, D

Transparency ensures users understand how AI decisions are made.

Why this answer

Transparency is a core principle of trustworthy AI because it requires that AI systems operate in a way that is open and understandable, allowing stakeholders to see how decisions are made. Salesforce's AI ethics guidelines emphasize transparency to ensure that users can trust the system's outputs and that any biases or limitations are visible.

Exam trap

Salesforce often tests the distinction between 'accountability' (a broader governance concept) and 'explainability' (a specific technical principle), leading candidates to mistakenly select accountability when the question explicitly asks for the two key principles from Salesforce's guidelines.

104
MCQmedium

A company wants to generate personalized product recommendations for each customer based on their purchase history and browsing behavior. Which approach is MOST appropriate?

A.Train a supervised learning model on historical purchase data to predict the next product a customer will buy
B.Use a generative AI model to create new product descriptions for each customer
C.Deploy a reinforcement learning agent that explores different recommendations in real-time
D.Use an unsupervised learning algorithm to cluster customers and recommend popular items in each cluster
AnswerA

Supervised learning can use features like past purchases and browsing to predict the next purchase for each customer.

Why this answer

Supervised learning can predict what a customer might buy next based on labeled data (past purchases). Unsupervised learning can cluster customers but doesn't directly generate recommendations. Reinforcement learning is for dynamic environments, and generative AI creates content, not recommendations.

105
Multi-Selectmedium

A data scientist is evaluating Salesforce's Einstein features for predictive analytics. Which three statements accurately describe Einstein Discovery? (Select three answers.)

Select 3 answers
A.It can generate natural language explanations of model insights.
B.It is limited to 1000 rows of data per prediction.
C.It can automatically build regression and classification models from your data.
D.It can be used to create stories that explain key drivers of a metric.
E.It requires a separate data preparation tool before use.
AnswersA, C, D

Natural language explanations are a key feature.

Why this answer

Einstein Discovery includes a natural language generation (NLG) engine that automatically produces plain-English explanations of model insights, such as key drivers and predictions. This allows non-technical users to understand the output without needing to interpret raw statistical data.

Exam trap

Salesforce often tests the misconception that Einstein Discovery requires external data preparation or has a small data limit, when in fact it is designed for enterprise-scale data and includes integrated data wrangling.

106
Multi-Selectmedium

A company is deploying an AI model to automatically classify customer emails into categories (Complaint, Inquiry, Feedback). They have 10,000 labeled emails. Which TWO actions are essential to ensure the model's accuracy? (Select TWO.)

Select 2 answers
A.Train the model until it achieves 100% accuracy on the training set
B.Split the data into training and test sets
C.Use only the most recent 1,000 emails for training to reflect current trends
D.Remove all emails that contain spelling errors
E.Ensure all three categories are adequately represented in the training data
AnswersB, E

Essential to evaluate model performance on unseen data.

Why this answer

Splitting data into train/test sets allows evaluation of generalization. Ensuring balanced representation of categories prevents bias towards majority classes.

107
MCQhard

A data scientist evaluates a churn prediction model. On the test set, the model achieves 99% accuracy, but the business reports that the model rarely flags actual churners. Which metric should the data scientist focus on to improve the model?

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

Recall measures the fraction of actual churners correctly identified; improving recall directly addresses the business issue.

Why this answer

When classes are imbalanced (few churners), accuracy can be misleading. Recall measures how many actual churners are identified, which is the key business concern.

108
MCQhard

A Salesforce admin is troubleshooting Einstein Object Detection in a custom object. The model is predicting values, but the confidence score remains below 80% for most predictions. What should the admin investigate first?

A.The number of fields used as input features.
B.The API version used in the integration.
C.The permission set for the Einstein AI feature.
D.The model training data size and distribution of values.
AnswerD

Insufficient or unrepresentative data lowers confidence.

Why this answer

Low confidence scores in Einstein Object Detection typically indicate that the model has insufficient or imbalanced training data. Einstein AI requires a minimum number of labeled records (e.g., at least 100 per class) and a balanced distribution across predicted values to learn effectively. Without adequate data size and diversity, the model cannot generalize well, resulting in confidence scores below 80%.

Exam trap

Salesforce often tests the misconception that low confidence is caused by configuration issues like permissions or API versions, when the root cause is almost always inadequate or imbalanced training data.

How to eliminate wrong answers

Option A is wrong because the number of fields used as input features does not directly cause low confidence scores; Einstein Object Detection automatically selects relevant features from the object's fields, and adding more fields does not inherently improve confidence. Option B is wrong because the API version used in the integration affects compatibility and feature availability, not the model's prediction confidence; confidence is a function of training data quality, not API version. Option C is wrong because the permission set for the Einstein AI feature controls access to the feature, not the model's performance; if the feature is enabled and predictions are returned, permissions are not the cause of low confidence.

109
MCQhard

A company uses computer vision to scan receipts for expense reporting. The model performs well on high-resolution scans but poorly on blurry photos. Which improvement is most effective?

A.Decrease the learning rate
B.Add blurry images to the training data
C.Use a larger batch size
D.Increase the model's number of layers
AnswerB

Training on blurry examples teaches the model to handle that variation.

Why this answer

Augmenting training data with blurry images helps the model learn to handle various quality levels.

110
MCQhard

A financial services firm uses an AI model to approve loan applications. They discover that the model denies loans at a higher rate for a certain demographic group, even when financial indicators are similar. What is the primary ethical concern?

A.Bias in training data
B.Low model accuracy
C.Model overfitting
D.Hallucination
AnswerA

Correct. Disparate impact suggests historical biases in data leading to unfair model outcomes.

Why this answer

Bias in training data leads to unfair outcomes for certain groups. This is a fairness and bias issue.

111
MCQmedium

Refer to the exhibit. A Salesforce admin runs an audit command for an Einstein model. What conclusion can be drawn from the output?

A.Token usage indicates the average response length is 300 tokens
B.The model experienced significant slowdowns
C.The model's average response time of 350ms is within typical performance expectations
D.The model has a high error rate and needs retraining
AnswerC

350ms latency is reasonable for a real-time AI model.

Why this answer

The output shows an average response time of 350ms for the Einstein model, which is within the typical performance expectation of under 500ms for real-time AI inference in Salesforce. This indicates the model is responding efficiently without significant latency issues, making option C correct.

Exam trap

The trap here is that candidates may misinterpret average response time as an indicator of slowdowns or errors, when in fact it is a performance metric that must be compared against typical thresholds (e.g., <500ms) to draw accurate conclusions.

How to eliminate wrong answers

Option A is wrong because token usage indicates the average number of tokens consumed per request, not the average response length in tokens; the output does not provide token usage data. Option B is wrong because the average response time of 350ms does not indicate significant slowdowns; slowdowns would typically be reflected in response times exceeding 1000ms or high latency percentiles. Option D is wrong because a high error rate would be shown in the error rate metric, not in response time data; the output does not mention error rates or suggest the model needs retraining.

112
MCQmedium

Refer to the exhibit. A bot developer sees this error during Einstein Bot deployment. What is the correct action to resolve the issue?

A.Reduce the minimum required phrases in bot settings
B.Add at least 5 training phrases to the 'OrderStatus' intent
C.Remove the 'OrderStatus' intent from the bot
D.Increase the confidence threshold for all intents
AnswerB

This directly addresses the error.

Why this answer

The error indicates that the 'OrderStatus' intent has fewer than the required minimum number of training phrases. Einstein Bot requires at least 5 training phrases per intent to ensure reliable natural language processing (NLP) model training. Adding at least 5 training phrases to the 'OrderStatus' intent satisfies this requirement and resolves the deployment error.

Exam trap

Salesforce often tests the specific minimum training phrase requirement (5 phrases per intent) as a hard rule in Einstein Bot deployment validation, and candidates may mistakenly think the error is about confidence thresholds or bot settings rather than insufficient training data.

How to eliminate wrong answers

Option A is wrong because reducing the minimum required phrases in bot settings would lower the NLP model's training data quality, potentially causing poor intent recognition; the error specifically demands a minimum of 5 phrases, not a reduction. Option C is wrong because removing the 'OrderStatus' intent would eliminate the functionality the bot is designed to provide, rather than fixing the underlying training data deficiency. Option D is wrong because increasing the confidence threshold for all intents does not address the missing training phrases; it would only adjust the score required to match an intent, not resolve the deployment validation error.

113
MCQmedium

A data scientist trains a model to predict customer churn. The model achieves 98% accuracy on training data but only 72% on test data. What issue is most likely occurring?

A.Data leakage
B.Underfitting
C.Overfitting
D.Bias in the training data
AnswerC

The large gap between training and test accuracy indicates overfitting.

Why this answer

Overfitting occurs when a model learns training data too well, including noise, and fails to generalize to new data.

114
MCQeasy

Which of the following is an ethical concern when using AI to make decisions about customers?

A.AI models always improve over time without intervention
B.Bias in training data may lead to unfair treatment of certain customer groups
C.AI models require no human oversight
D.Deep learning is too complex for business use
AnswerB

Biased data can cause AI to make discriminatory decisions, a major ethical issue.

Why this answer

Bias in training data can lead to unfair or discriminatory outcomes, a key ethical concern in AI.

115
MCQhard

A developer is creating a prompt template for Einstein GPT to summarize customer case details. The prompt must include the case subject, description, and last 3 comments, but only when the case priority is High. Which approach best achieves this in Prompt Builder?

A.Hardcode example cases in the prompt and rely on the model to generalize
B.Include all fields in the prompt and use a token limiter to truncate the response
C.Create a static prompt and manually edit it for each High-priority case
D.Use merge fields with a conditional IF statement to include fields only when priority is High
AnswerD

Prompt Builder supports merge fields and conditional logic to dynamically include data based on field values.

Why this answer

Prompt Builder supports conditional merge fields using IF statements, allowing dynamic inclusion of case subject, description, and last 3 comments only when the case priority is High. This approach ensures the prompt is concise and relevant, avoiding unnecessary tokens or manual edits.

Exam trap

Salesforce often tests the misconception that static prompts or token limiters are sufficient for dynamic content filtering, when in fact conditional merge fields are the only built-in mechanism for rule-based inclusion in Prompt Builder.

How to eliminate wrong answers

Option A is wrong because hardcoding example cases does not dynamically adapt to real-time case data; the model would generalize from static examples rather than using actual Salesforce case fields, leading to inaccurate summaries. Option B is wrong because including all fields unconditionally wastes tokens and may cause the model to process irrelevant data, and a token limiter truncates the response rather than conditionally excluding fields. Option C is wrong because manually editing the prompt for each High-priority case is inefficient, error-prone, and defeats the purpose of automation in Prompt Builder.

116
MCQhard

Refer to the exhibit. A developer configured a grounding policy for Einstein GPT. What is the effect of the fallbackBehavior set to 'USE_MODEL_KNOWLEDGE'?

A.The AI will rely on its pre-trained knowledge when no grounding data meets the relevance threshold
B.The AI will return all retrieved grounding data in the response
C.The AI will not generate a response if no grounding data is found
D.The AI will ignore the grounding policy and only use model knowledge
AnswerA

This is the defined fallback: use the model's internal knowledge if grounding data is insufficient.

Why this answer

When fallbackBehavior is set to 'USE_MODEL_KNOWLEDGE', the Einstein GPT grounding policy instructs the AI to fall back to its pre-trained (model) knowledge if the retrieved grounding data does not meet the configured relevance threshold. This ensures the AI still generates a response based on its internal training rather than returning no answer or ignoring the policy entirely.

Exam trap

Salesforce often tests the distinction between 'fallback' and 'ignore' — the trap here is assuming 'USE_MODEL_KNOWLEDGE' means the grounding policy is disregarded, when in fact it is a controlled fallback within the policy's logic.

How to eliminate wrong answers

Option B is wrong because setting fallbackBehavior to 'USE_MODEL_KNOWLEDGE' does not cause the AI to return all retrieved grounding data; it only triggers a fallback to model knowledge when relevance is insufficient. Option C is wrong because the AI will still generate a response using its pre-trained knowledge rather than refusing to respond when no grounding data meets the threshold. Option D is wrong because the grounding policy is not ignored; the fallback is a defined behavior within the policy, not a bypass of the policy itself.

117
MCQmedium

An admin sets up Einstein Sentiment scoring for case comments. After a week, they notice that most comments are scored as 'Neutral' even when customer sentiment is clearly negative. What should the admin check first?

A.Increase the model confidence threshold to reduce false positives
B.Switch to Einstein Bot for sentiment analysis
C.Verify that case comments contain at least 50 words each
D.Retrain the sentiment model with industry-specific training data
AnswerD

Custom training improves relevance to domain language and expressions.

Why this answer

Einstein Sentiment is a pre-trained model that may not accurately interpret sentiment in industry-specific contexts. Retraining the model with domain-specific training data (e.g., using Salesforce's Intent and Sentiment API with custom datasets) adjusts the model to recognize sentiment nuances in that industry, improving accuracy beyond the generic baseline.

Exam trap

Salesforce often tests the misconception that adjusting confidence thresholds or switching tools can fix model accuracy issues, when the correct first step is to retrain the model with relevant data.

How to eliminate wrong answers

Option A is wrong because increasing the model confidence threshold would make the model more conservative, likely increasing 'Neutral' scores rather than reducing them; it addresses false positives, not the underlying issue of misclassifying clearly negative sentiment. Option B is wrong because Einstein Bot is a chatbot tool for automating conversations, not a sentiment analysis engine; it cannot replace or fix the sentiment scoring model. Option C is wrong because Einstein Sentiment does not require a minimum word count of 50; it can analyze shorter comments, and the issue is model accuracy, not input length.

118
MCQeasy

A sales team wants to use Einstein Lead Scoring to prioritize leads. What is the primary benefit of using Einstein Lead Scoring over manual scoring?

A.It uses historical data to predict which leads are most likely to convert.
B.It automatically sends personalized emails to leads.
C.It ensures all leads are contacted within 24 hours.
D.It replaces the need for any manual lead qualification process.
AnswerA

Einstein Lead Scoring leverages machine learning on past lead conversions to assign a score.

Why this answer

Einstein Lead Scoring uses historical data and machine learning models to analyze patterns from past leads and their conversion outcomes. This allows it to assign a predictive score to each new lead, indicating the likelihood of conversion, which is more accurate and data-driven than manual scoring based on subjective criteria.

Exam trap

Salesforce often tests the misconception that AI features like Einstein Lead Scoring fully automate human tasks, when in reality they are designed to augment and prioritize, not replace, manual processes.

How to eliminate wrong answers

Option B is wrong because Einstein Lead Scoring does not automatically send emails; that function is handled by Einstein Engagement Scoring or automated email campaigns, not lead scoring. Option C is wrong because lead scoring prioritizes leads based on conversion likelihood, not on a time-based SLA like contacting within 24 hours. Option D is wrong because Einstein Lead Scoring augments, not replaces, manual qualification; human judgment is still needed for tasks like lead nurturing and complex decision-making.

119
MCQmedium

Refer to the exhibit. A Salesforce admin configured the Einstein Trust Layer policy shown. What is the effect of this policy on AI model usage?

A.All fields in the org will be masked to protect customer privacy.
B.AI models will not be able to use the configured fields, and model insights are disabled.
C.AI models can still use the fields but feature importance insights are blocked.
D.AI models receive masked data for those fields, but feature importance insights are still available.
AnswerD

Masking hides actual values; insights are independent.

Why this answer

The Einstein Trust Layer policy configured to mask specific fields ensures that sensitive data is replaced with masked values before being sent to the AI model. This preserves data privacy while still allowing the model to generate predictions and insights. Feature importance insights remain available because they are computed from the masked data, not the original values.

Exam trap

The trap here is that candidates often assume masking blocks all AI functionality, but feature importance insights are still available because they rely on patterns in the masked data, not the original values.

How to eliminate wrong answers

Option A is wrong because the policy only masks the configured fields, not all fields in the org. Option B is wrong because masking does not disable model insights; the AI model can still use the masked data to generate predictions and insights. Option C is wrong because feature importance insights are not blocked; they are still computed and available even when fields are masked.

120
MCQmedium

A sales manager wants to predict which deals are likely to close this quarter. The CRM has rich historical data on won/lost opportunities, deal amount, and sales stage. Which AI approach is best suited for this task?

A.Predictive AI for opportunity scoring
B.Generative AI to create new sales content
C.Unsupervised learning to cluster opportunities
D.Reinforcement learning for sales strategy
AnswerA

Predictive AI can use historical data to predict the likelihood of a deal closing.

Why this answer

Predictive AI uses historical data to forecast outcomes, making it ideal for opportunity scoring.

121
MCQhard

A company uses an NLP model to detect customer intent from chat messages. The model correctly identifies 'billing question' 90% of the time for actual billing questions, but also flags many non-billing messages as billing (false positives). Which metric should the team prioritize to reduce false alarms?

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

Correct. Precision = TP/(TP+FP); higher precision means fewer false alarms.

Why this answer

Precision focuses on the proportion of positive identifications that are correct; improving precision reduces false positives.

122
MCQmedium

An e-commerce company uses AI to provide product recommendations. The model suggests popular items but fails to personalize for individual users. Which type of learning could improve personalization?

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

Supervised learning can train on user-item interactions to predict personalized recommendations.

Why this answer

Supervised learning can use user purchase history as labels to predict what a specific user might buy, enabling personalization.

123
MCQeasy

What does the term 'hallucination' refer to in the context of generative AI?

A.The model only works when the user prompts it with specific keywords
B.The model has a bug in the training algorithm
C.The model generates creative but accurate content
D.The model produces outputs that are not grounded in the training data or reality
AnswerD

Correct: hallucination refers to fabricated or incorrect information.

Why this answer

Hallucination is when a generative AI model produces content that is factually incorrect or nonsensical but presented as if it were true.

124
MCQmedium

A CRM team wants to predict the expected revenue from each opportunity. The data includes opportunity amount, close date, stage, and historical win rates. Which type of AI is best suited?

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

Correct. Predictive AI forecasts numeric outcomes using regression models.

Why this answer

Predictive AI uses historical data to forecast outcomes. Regression (a type of predictive AI) predicts a continuous value like revenue.

125
MCQhard

A data scientist trains a churn prediction model on CRM data that includes customer tenure, support ticket count, and last purchase date. The model achieves 95% accuracy on training data but only 60% on a holdout validation set. What is the most likely issue?

A.The validation set contains data leakage
B.The model needs more features
C.The model is overfitting the training data
D.The model is underfitting the training data
AnswerC

Correct: high training accuracy but much lower validation accuracy indicates overfitting.

Why this answer

Large gap between training accuracy and validation accuracy is a classic sign of overfitting. The model memorized training data and fails to generalize.

126
MCQmedium

A company deploys Einstein Recommendation Builder on its e-commerce site. The recommendations are not personalized. What is the most likely cause?

A.The model has not been trained with enough user behavior data.
B.The company did not hire a data scientist to tune the model.
C.The recommendation engine is not syncing in real-time with the website.
D.The product catalog is too large for the model to process.
AnswerA

Personalization requires sufficient historical data.

Why this answer

Einstein Recommendation Builder relies on user interaction data to personalize. If insufficient data exists, recommendations become generic. Option A is correct.

Option B is wrong because real-time sync is not required. Option C is wrong because the builder can work without a data scientist. Option D is wrong because the model can recommend products beyond categories.

127
Multi-Selecthard

Which THREE of the following are best practices for training an Einstein Bot?

Select 3 answers
A.Train with only one intent to avoid confusion
B.Test the bot with sample conversations before deployment
C.Use exact match phrases only
D.Use a large and diverse set of training phrases for each intent
E.Include negative examples to improve accuracy
AnswersB, D, E

Testing ensures the bot performs as expected in real scenarios.

Why this answer

Testing an Einstein Bot with sample conversations before deployment allows you to validate the bot's intent recognition, dialog flow, and response accuracy in a controlled environment. This practice helps identify and fix issues with phrase matching, slot filling, and escalation paths, ensuring the bot performs reliably in production.

Exam trap

Salesforce often tests the misconception that more training data is always better, but the trap here is that candidates may overlook the importance of diversity and negative examples, thinking that exact matches or a single intent simplify training, when in fact they cripple the bot's NLP accuracy.

128
MCQhard

A financial services company is deploying Einstein Prediction Builder to predict customer churn. The data includes both numerical and categorical fields. Which step is essential to ensure the model is not biased against protected attributes like race or gender?

A.Include race and gender as predictors to allow the model to adjust for them.
B.Rely on the model's built-in fairness constraints.
C.Use a deep learning algorithm to automatically handle bias correction.
D.Exclude any protected attributes from the training data and ensure the model does not use correlated proxies.
AnswerD

This is the standard approach to mitigate bias.

Why this answer

Excluding protected attributes like race or gender from the training data and ensuring the model does not use correlated proxies is essential to prevent bias in Einstein Prediction Builder. This approach directly removes the risk of the model learning discriminatory patterns based on these attributes, as the platform relies on the data provided and does not automatically enforce fairness constraints. Including such attributes or relying on built-in fairness would not guarantee unbiased predictions because the model could still infer protected characteristics from correlated features.

Exam trap

Salesforce often tests the misconception that including protected attributes allows the model to 'adjust' for bias, when in reality it introduces direct bias, and that built-in fairness constraints or advanced algorithms can automatically fix bias without explicit data preparation.

How to eliminate wrong answers

Option A is wrong because including race and gender as predictors would allow the model to directly learn and potentially amplify biases, leading to discriminatory outcomes rather than adjusting for them. Option B is wrong because Einstein Prediction Builder does not have built-in fairness constraints that automatically correct for bias; it requires careful data preparation and feature selection by the user. Option C is wrong because deep learning algorithms do not inherently handle bias correction; they can actually exacerbate biases present in the data if not explicitly mitigated through techniques like adversarial debiasing or reweighting.

129
MCQmedium

A marketing manager wants to use Einstein Send Time Optimization. To generate personalized send time recommendations, which data does the model primarily rely on?

A.The individual contact's past email open and click behavior.
B.The aggregated engagement data of all contacts in the same time zone.
C.The industry benchmarks for optimal send times.
D.The sender's historical campaign performance by hour.
AnswerA

This is the core data used for personalized predictions.

Why this answer

Einstein Send Time Optimization (STO) uses a machine learning model that analyzes each individual contact's historical email engagement patterns—specifically their past open and click behavior—to predict the optimal send time unique to that contact. This personalized approach ensures that each recipient receives the email when they are most likely to engage, rather than relying on aggregate or rule-based heuristics.

Exam trap

Salesforce often tests the distinction between personalized (contact-level) and aggregated (cohort or sender-level) optimization, leading candidates to mistakenly choose time-zone or campaign-based options when the core requirement is individual behavioral modeling.

How to eliminate wrong answers

Option B is wrong because aggregated engagement data of all contacts in the same time zone ignores individual behavioral differences; Einstein STO builds a per-contact model, not a time-zone cohort model. Option C is wrong because industry benchmarks for optimal send times are generic averages and cannot account for the unique, learned patterns of each individual contact. Option D is wrong because the sender's historical campaign performance by hour reflects the sender's overall audience behavior, not the personalized, contact-level timing that Einstein STO requires.

130
MCQmedium

Based on the exhibit, what does the accuracy of 0.85 indicate?

A.85% of the features are important for prediction.
B.85% of predictions that the opportunity will be won are correct.
C.85% of the model's predictions matched the actual outcomes.
D.85% of opportunities in the training data were won.
AnswerC

Accuracy measures overall correctness.

Why this answer

Accuracy is defined as the ratio of correctly predicted instances (both true positives and true negatives) to the total number of predictions. An accuracy of 0.85 means that 85% of the model's predictions (whether 'won' or 'lost') matched the actual outcomes in the dataset. This is a standard classification metric that evaluates overall correctness, not just one class.

Exam trap

Salesforce often tests the distinction between accuracy and precision, so the trap here is that candidates confuse 'accuracy' with 'precision' (the percentage of positive predictions that are correct) and incorrectly select Option B.

How to eliminate wrong answers

Option A is wrong because accuracy measures prediction correctness, not feature importance; feature importance is determined by techniques like permutation importance or SHAP values, not by the accuracy score. Option B is wrong because accuracy considers all predictions (both won and lost), not just the precision of 'won' predictions; 85% accuracy does not imply that 85% of 'won' predictions are correct—that would be precision. Option D is wrong because accuracy is computed on predictions versus actual outcomes, not on the distribution of the training data; the percentage of won opportunities in the training data is the class prior, not a performance metric.

131
MCQmedium

A company notices that Einstein Prediction Builder predictions for 'Churn' are less accurate than expected. Which action should the administrator take first to improve model performance?

A.Enable field history tracking on all object fields used in the prediction.
B.Review the training data for missing values and ensure relevant fields are included in the model.
C.Change the prediction outcome to a different field to see if accuracy improves.
D.Retrain the model with the same data but increase the number of training iterations.
AnswerB

Data quality is fundamental; Einstein models rely on clean, relevant data.

Why this answer

The first step in improving Einstein Prediction Builder model performance is to review the training data for missing values and ensure relevant fields are included. Missing values or irrelevant fields can introduce noise and bias, directly degrading predictive accuracy. Einstein Prediction Builder relies on high-quality, complete training data to learn meaningful patterns, so data quality issues must be addressed before any other tuning steps.

Exam trap

Salesforce often tests the misconception that retraining or tweaking model parameters is the first fix for poor accuracy, when in reality data quality review is the foundational step in any machine learning workflow.

How to eliminate wrong answers

Option A is wrong because enabling field history tracking on all object fields is unnecessary and can cause excessive data storage and performance overhead; field history tracking is used for auditing changes, not for improving model accuracy. Option C is wrong because changing the prediction outcome to a different field does not fix underlying data quality issues; it merely shifts the target variable without addressing why the current model is underperforming. Option D is wrong because retraining the model with the same data and increasing training iterations will not compensate for missing values or irrelevant fields; it can lead to overfitting on flawed data rather than improving generalization.

132
MCQhard

Based on the exhibit, what is the primary issue with this Einstein Bot conversation?

A.The bot lacks alternative ways to identify the customer.
B.The bot is confused about the user's intent.
C.The bot is repeating itself excessively.
D.The bot does not understand the initial intent.
AnswerA

The bot should offer alternatives like email lookup.

Why this answer

The exhibit shows the bot repeatedly asking for the customer's account number without offering alternative identification methods (e.g., email, phone number, or name). This is the primary issue because Einstein Bot's conversational design should include fallback paths to handle cases where the user cannot provide the requested information, ensuring a smooth user experience and reducing drop-offs.

Exam trap

Salesforce often tests the misconception that the primary issue is intent confusion or repetition, but the real trap is recognizing that the bot's inability to offer alternative identification methods is a design flaw in the dialog flow, not a failure of NLU or looping logic.

How to eliminate wrong answers

Option B is wrong because the bot correctly identifies the user's intent (e.g., 'I need help with my bill') and proceeds to gather account details, so there is no confusion about intent. Option C is wrong because the bot does not repeat itself excessively; it asks for the account number only once per turn, and the repetition is due to the user not providing it, not a loop error. Option D is wrong because the bot understands the initial intent (e.g., billing inquiry) and responds appropriately, so the issue is not a failure to understand intent but a lack of alternative identification methods.

133
MCQeasy

Refer to the exhibit. The prediction API returns a probability of 0.85 for the label 'High Value'. What does this value represent?

A.The likelihood that this lead will convert
B.The confidence score that this lead is 'High Value'
C.The F1 score of the model for this prediction
D.The model's accuracy on the training set
AnswerB

The score indicates how sure the model is about the predicted label.

Why this answer

The prediction API returns a probability of 0.85 for the label 'High Value'. In machine learning classification, this output represents the model's confidence score—the estimated probability that the input instance belongs to the specified class. It is not a direct measure of conversion likelihood, model accuracy, or F1 score; it is the raw posterior probability assigned by the model to the 'High Value' label.

Exam trap

Salesforce often tests the distinction between a model's per-instance confidence score and aggregate performance metrics like accuracy or F1 score, trapping candidates who confuse the output of a prediction API with evaluation metrics.

How to eliminate wrong answers

Option A is wrong because the probability 0.85 is the model's confidence that the lead belongs to the 'High Value' class, not a direct prediction of conversion likelihood—conversion is a separate business outcome that may depend on other factors. Option C is wrong because the F1 score is a model evaluation metric computed from precision and recall over a test set, not a per-prediction output from the API. Option D is wrong because the model's accuracy on the training set is a global performance metric, not a per-instance probability returned by the prediction API.

134
Multi-Selecteasy

A bank is implementing an AI system to approve small business loans. Which TWO ethical considerations should be addressed?

Select 2 answers
A.Ensure training data does not contain historical biases against certain demographics
B.Use as many data points as possible to improve predictions
C.Replace all human loan officers with AI
D.Provide explanations to customers when AI denies a loan
E.Maximize model accuracy at all costs
AnswersA, D

Biased data can lead to discriminatory loan decisions.

Why this answer

Bias in training data can lead to unfair denials; transparency ensures customers understand AI decisions. Accuracy is important but not primarily an ethical issue.

135
MCQeasy

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

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

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

Why this answer

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

136
MCQhard

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

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

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

Why this answer

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

137
MCQeasy

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

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

Einstein Activity Capture integrates with supported email providers.

Why this answer

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

Exam trap

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

How to eliminate wrong answers

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

138
Multi-Selectmedium

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

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

Predictive AI excels at regression and classification tasks.

Why this answer

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

139
Multi-Selectmedium

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

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

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

Why this answer

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

140
MCQmedium

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

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

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

Why this answer

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

141
MCQmedium

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

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

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

Why this answer

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

142
MCQhard

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

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

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

Why this answer

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

143
Multi-Selecteasy

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

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

The permission set allows users to view relationship insights.

Why this answer

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

Exam trap

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

144
MCQeasy

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

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

Narrow AI is specialized for specific tasks like recommendations.

Why this answer

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

145
MCQmedium

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

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

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

Why this answer

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

146
MCQhard

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

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

Retraining incorporates new patterns.

Why this answer

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

Exam trap

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

How to eliminate wrong answers

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

147
MCQmedium

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

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

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

Why this answer

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

148
Multi-Selecteasy

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

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

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

Why this answer

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

149
MCQhard

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

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

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

Why this answer

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

High precision doesn't cause inaccurate predictions.

150
MCQmedium

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

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

This is the minimum requirement for model training.

Why this answer

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

Exam trap

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

How to eliminate wrong answers

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

← PreviousPage 2 of 3 · 163 questions totalNext →

Ready to test yourself?

Try a timed practice session using only AI Fundamentals questions.