Salesforce AI Associate AI Associate (AI Associate) — Questions 526600

1000 questions total · 14pages · All types, answers revealed

Page 7

Page 8 of 14

Page 9
526
MCQhard

A company wants to use AI to automatically analyze and classify images uploaded to Salesforce records, such as identifying product defects. Which Einstein feature should they use?

A.Einstein Prediction Builder
B.Einstein Next Best Action
C.Einstein Language
D.Einstein Vision
AnswerD

Vision provides image classification and object detection.

Why this answer

Einstein Vision is the correct feature because it is specifically designed for image recognition and classification tasks, such as analyzing uploaded images to identify product defects. It uses deep learning models to detect objects, classify images, and extract text from images, making it ideal for visual inspection use cases within Salesforce.

Exam trap

The trap here is that candidates often confuse Einstein Vision with Einstein Prediction Builder, assuming that any AI prediction task (including image analysis) falls under the generic 'Prediction Builder' umbrella, but Prediction Builder only works with tabular data, not images.

How to eliminate wrong answers

Option A is wrong because Einstein Prediction Builder is a no-code tool for building custom predictive models on structured data (e.g., numeric or categorical fields), not for analyzing image content. 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 for image classification. Option C is wrong because Einstein Language is designed for natural language processing tasks like sentiment analysis and intent classification on text, not for processing visual data.

527
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.

528
MCQmedium

A sales operations team notices that an Einstein Lead Scoring model assigns lower scores to leads from a particular geographic region, even though those leads have historically converted at a higher rate. What is the most likely cause of this discrepancy?

A.The model is using outdated lead source fields
B.The model's threshold for lead conversion is set too high
C.The model has been trained on biased historical data that underrepresents or undervalues leads from that region
D.The model is overfitted to noise in the data
AnswerC

Biased training data is the classic cause of unfair predictions; the model learned patterns from historical decisions that may have been biased.

Why this answer

The model was trained on historical data that may have reflected past biases (e.g., underinvestment in that region). The biased training data leads to unfair predictions. The correct action is to audit the model for bias.

529
MCQmedium

A social media platform's AI recommends content that inadvertently amplifies misinformation. An ethical review board is considering changes. Which of the following actions best addresses the unintended harm?

A.Increase the amount of training data
B.Remove all AI recommendation engines
C.Conduct an ethical impact assessment and adjust algorithms accordingly
D.Reduce overall user engagement metrics
AnswerC

Assessments help identify and mitigate unintended consequences.

Why this answer

Option D is correct: A diverse ethical review board and impact assessment can identify and mitigate unintended harm. Option A is wrong because removing AI entirely may be impractical. Option B is wrong because reducing engagement without analysis may be arbitrary.

Option C is wrong because more data doesn't guarantee less misinformation.

530
MCQmedium

A healthcare provider implements Data Cloud to predict patient readmission rates. They have HIPAA compliance requirements. The data includes sensitive patient health information (PHI). The AI model must be trained without exposing PHI to unauthorized users. The data architect uses Data Cloud's data masking on PHI fields. However, model performance drops significantly after masking because the masked values lose predictive value. What additional step should the architect consider to maintain model performance while protecting PHI?

A.Use tokenization for highly predictive fields like diagnosis codes instead of masking
B.Implement differential privacy within Einstein Studio
C.Remove masking and rely on user permissions to restrict access
D.Increase the volume of training data to compensate for masking
AnswerA

Tokenization retains referential integrity while hiding actual values.

Why this answer

Option C is the best approach because tokenization preserves the relationship between values (e.g., diagnosis codes) while obscuring the actual PHI. This allows the model to learn patterns without exposing sensitive data. Option A violates HIPAA.

Option B is not directly available in Einstein Studio as a built-in feature; differential privacy might be complex to implement. Option D does not address the masking issue.

531
MCQhard

A company uses Einstein Discovery to build a model that predicts customer lifetime value. They want to ensure the model's decisions are auditable and that they can track the business impact of AI recommendations over time. What should they implement?

A.Score factors
B.Grounding
C.Toxicity detection
D.Audit trail
AnswerD

An audit trail records when recommendations are made and acted upon, enabling analysis of AI impact on business outcomes over time.

Why this answer

An audit trail logs when AI recommendations are made and whether they were followed, and can be used to track outcomes over time. This enables accountability and measurement of AI impact, supporting transparency and governance.

532
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

Option D is correct because 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.

533
MCQmedium

A company wants to automatically log all sent emails and calendar events from Gmail into Salesforce without manual user action. Which feature should be configured?

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

Activity Capture automatically logs emails and events based on sync settings.

Why this answer

Einstein Activity Capture automatically syncs emails and events from email systems to Salesforce.

534
MCQhard

A developer is implementing retrieval augmented generation (RAG) for a customer service bot. Which component is essential for supplying real-time data to the prompt?

A.A fine-tuned large language model
B.A prompt template in Prompt Builder
C.A static knowledge base
D.A vector database for embedding and retrieval
AnswerD

RAG relies on retrieving relevant chunks of data using vector similarity search, which then become part of the prompt.

Why this answer

Correct: A vector database stores embeddings for efficient retrieval of relevant context. Option A: A fine-tuned LLM is static. Option B: Prompt Builder is for templates.

Option D: A knowledge base alone doesn't provide real-time retrieval augmentation unless indexed.

535
Multi-Selectmedium

Which TWO approaches are recommended for mitigating bias in AI models?

Select 2 answers
A.Increasing model depth
B.Removing all sensitive attributes
C.Re-weighting training samples
D.Adding regularization
E.Using adversarial debiasing
AnswersC, E

Adjusts for imbalanced representation.

Why this answer

Option A is correct because re-weighting training samples can adjust for imbalanced representation. Option C is correct because adversarial debiasing reduces bias by learning unbiased representations. Option B is wrong regularization may not directly mitigate bias.

Option D is wrong increasing model depth can amplify bias. Option E is wrong removing all sensitive attributes may not eliminate bias due to proxy variables.

536
MCQeasy

Which feature allows administrators to create and manage prompt templates for Einstein GPT features, such as Field Generation and Sales Email templates?

A.Einstein Copilot
B.Agent Builder
C.Prompt Builder
D.Einstein Studio
AnswerC

Prompt Builder allows admins to create and manage prompt templates for various Einstein GPT features.

Why this answer

Prompt Builder is the dedicated Salesforce tool for creating and managing prompt templates that are used by Einstein GPT features like Field Generation and Sales Email templates. It allows administrators to define the structure, context, and variables for prompts that guide generative AI outputs within the Salesforce platform.

Exam trap

The trap here is that candidates often confuse Prompt Builder with Einstein Copilot, assuming that the conversational AI interface is also where prompts are managed, when in fact Prompt Builder is a separate configuration tool specifically for prompt template creation.

How to eliminate wrong answers

Option A is wrong because Einstein Copilot is an AI-powered conversational assistant that uses pre-built prompts and actions, not a tool for creating or managing prompt templates. Option B is wrong because Agent Builder is used to design and configure autonomous AI agents (like chatbots) with topics and actions, not for crafting prompt templates for Einstein GPT features. Option D is wrong because Einstein Studio is a data science and model-building environment for creating custom AI models and pipelines, not for managing prompt templates for generative AI features.

537
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.

538
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

Option D is correct because 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.

539
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.

540
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.

541
MCQhard

A company is using Einstein Service Replies to generate suggested responses for service agents. They want to ensure that agents always review and approve the suggested reply before it is sent to the customer. Which configuration best supports this requirement?

A.Use Einstein Bots instead of Service Replies
B.Turn on toxicity detection for all replies
C.Enable auto-send for Einstein Service Replies
D.Configure Einstein Service Replies to require agent approval before sending
AnswerD

Requiring approval ensures the agent reviews and approves the reply, providing human oversight.

Why this answer

Human oversight requires that AI-generated content be reviewed before sending. Einstein Service Replies can be configured to require agent approval before the reply is sent, which is a direct implementation of human oversight.

542
MCQeasy

For an AI project, data must be stored in a way that supports both training and real-time inference. Which storage solution meets this requirement?

A.Data warehouse (e.g., Snowflake)
B.Relational database (e.g., PostgreSQL)
C.Data lake (e.g., Amazon S3 or Azure Data Lake)
D.In-memory cache (e.g., Redis)
AnswerC

Data lakes store raw and processed data for various purposes.

Why this answer

A data lake (e.g., Amazon S3 or Azure Data Lake) is the correct choice because it can store vast amounts of raw, unstructured, and structured data in its native format, making it ideal for training AI models on diverse datasets. At the same time, data lakes support real-time inference by enabling direct access to data via APIs or streaming services (e.g., AWS Lambda or Azure Functions) without the latency of transforming data into a schema-on-write structure. This dual capability—handling both batch processing for training and low-latency reads for inference—is a key requirement that other storage solutions cannot fulfill as effectively.

Exam trap

Salesforce often tests the misconception that a data warehouse or relational database is sufficient for AI workloads because candidates overlook the need for raw, unstructured data storage and the flexibility of schema-on-read, instead focusing only on structured query performance.

How to eliminate wrong answers

Option A is wrong because a data warehouse (e.g., Snowflake) is optimized for structured, aggregated data and analytical queries, not for storing raw, unstructured data needed for AI training, and its schema-on-write approach introduces latency unsuitable for real-time inference. Option B is wrong because a relational database (e.g., PostgreSQL) enforces strict schemas and ACID transactions, which limit the flexibility to store diverse data types (e.g., images, text) required for AI training, and its row-based storage is inefficient for high-throughput, low-latency inference workloads. Option D is wrong because an in-memory cache (e.g., Redis) is designed for ephemeral, high-speed data access but lacks persistent storage and the capacity to hold large-scale training datasets, making it unsuitable for long-term data storage required for AI model training.

543
MCQeasy

A customer service agent needs to quickly summarize a lengthy case history before responding. Which Einstein GPT feature is designed for this?

A.Sales GPT
B.Einstein Copilot
C.Einstein Email Insights
D.Service GPT
AnswerD

Service GPT provides case summaries and other service-specific generative AI features.

Why this answer

Service GPT is the correct answer because it is the Einstein GPT feature specifically designed for service agents to quickly summarize lengthy case histories, generate knowledge articles, and draft responses. It leverages generative AI to analyze case data and produce concise summaries, enabling faster and more informed customer interactions.

Exam trap

The trap here is that candidates may confuse Einstein Copilot as the summarization tool due to its general-purpose AI capabilities, but Service GPT is the dedicated feature for service-specific summarization tasks.

How to eliminate wrong answers

Option A is wrong because Sales GPT is focused on sales-related tasks such as generating personalized emails, call summaries, and opportunity updates, not on summarizing service case histories. Option B is wrong because Einstein Copilot is a conversational AI assistant that can answer questions and perform actions across Salesforce, but it is not specifically designed for summarizing case histories; it is a broader tool for natural language interactions. Option C is wrong because Einstein Email Insights provides AI-driven analysis of email communications to surface key information and sentiment, but it does not generate summaries of case histories; it is limited to email context.

544
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.

545
Multi-Selectmedium

A sales team uses Einstein Email Insights to identify important emails. Which TWO email characteristics are likely to be flagged as important?

Select 2 answers
A.Emails from external domains
B.Emails with negative sentiment (e.g., complaints)
C.Emails from contacts with high open rates
D.Emails from contacts with recent expired support contracts
E.Emails from a key decision-maker on an active opportunity
AnswersB, E

Correct. Negative sentiment indicates urgency.

Why this answer

Einstein Email Insights uses natural language processing (NLP) and machine learning models to analyze email content and sender relationships. Emails with negative sentiment, such as complaints, are flagged as important because they often indicate urgent issues requiring immediate attention. This is based on sentiment analysis scoring, where negative sentiment correlates with high-priority business impact.

Exam trap

The trap here is that candidates often assume external domains or high open rates are important signals, but Einstein prioritizes content sentiment and relationship context over generic email metadata.

546
MCQhard

A data scientist is building a predictive model for customer churn using Salesforce data. The dataset has 20 features, and the target variable is highly imbalanced (5% churn, 95% non-churn). Which technique should be applied to handle the class imbalance before training?

A.Apply Principal Component Analysis (PCA) for dimensionality reduction
B.Create interaction features between existing variables
C.Use accuracy as the evaluation metric
D.Use Synthetic Minority Over-sampling Technique (SMOTE)
AnswerD

SMOTE creates synthetic examples of the minority class.

Why this answer

SMOTE (Synthetic Minority Over-sampling Technique) is the correct choice because it generates synthetic samples for the minority class (churn) by interpolating between existing minority instances, effectively balancing the dataset without simply duplicating data. This prevents the model from being biased toward the majority class (non-churn) and improves recall for the churn class, which is critical in imbalanced classification problems.

Exam trap

Salesforce often tests the misconception that any data preprocessing technique (like PCA or feature engineering) can fix class imbalance, when in fact only resampling methods (SMOTE, ADASYN) or cost-sensitive learning directly address the skewed target distribution.

How to eliminate wrong answers

Option A is wrong because PCA is a dimensionality reduction technique that does not address class imbalance; it reduces feature space but does not alter the distribution of the target variable. Option B is wrong because creating interaction features may capture non-linear relationships but does not solve the imbalance problem; it can even exacerbate overfitting if the minority class remains underrepresented. Option C is wrong because accuracy is a misleading metric for imbalanced datasets—a model predicting all non-churn would achieve 95% accuracy but fail to identify any churn cases; metrics like precision, recall, F1-score, or AUC-ROC are appropriate instead.

547
MCQmedium

After applying a log transformation to a numeric feature, an Einstein model’s performance dropped significantly. What is the most likely cause?

A.The data volume was reduced by the transformation
B.The feature was normally distributed after transformation
C.The feature contained zero or negative values
D.The transformation introduced multicollinearity with other features
AnswerC

Log of non-positive values is undefined, causing missing or infinity values.

Why this answer

Log transformation is undefined for zero or negative values because log(0) is negative infinity and log of a negative number is not a real number. In Salesforce Einstein, numeric features with such invalid transformed values can cause the model to fail or produce erratic results, leading to a significant drop in performance. This is the most likely cause given the symptom described.

Exam trap

Salesforce often tests the misconception that log transformation always improves model performance, but the trap here is that candidates overlook the mathematical constraint that log is undefined for non-positive values, causing them to choose a less relevant option like data volume reduction or multicollinearity.

How to eliminate wrong answers

Option A is wrong because log transformation does not reduce data volume; it merely applies a mathematical function to each value, preserving the number of records. Option B is wrong because making a feature normally distributed is typically beneficial for many models, not detrimental; a normal distribution after transformation would likely improve, not degrade, performance. Option D is wrong because log transformation is applied to a single feature and does not introduce multicollinearity, which is a relationship between two or more independent variables; it cannot create collinearity with other features on its own.

548
Multi-Selecthard

A company is building an Agentforce agent to handle order cancellations. Which THREE components are essential to configure in Agent Builder? (Choose three.)

Select 3 answers
A.Topics (e.g., 'Cancel Order')
B.Intents and entities for NLP
C.Testing in Agent Builder
D.Actions (e.g., 'Update Order Status' or 'Refund')
E.Prompt Builder template
AnswersA, C, D

Topics define the scope of what the agent can handle.

Why this answer

Agentforce requires defining topics, actions, and testing within Agent Builder.

549
MCQhard

A financial services company is deploying an Einstein chatbot that provides investment advice. They want to ensure that if the chatbot generates a potentially harmful recommendation (e.g., suggesting a risky trade), the message is blocked before reaching the customer. Which Einstein Trust Layer capability should they rely on?

A.Toxicity detection
B.Grounding
C.Zero data retention
D.PII masking
AnswerA

Toxicity detection can identify harmful content; the Trust Layer can be configured to block such outputs before delivery.

Why this answer

Toxicity detection identifies harmful or offensive content. In this context, harmful financial advice can be flagged as toxic. Human oversight (agent review) would also be applicable, but the question specifically asks about blocking before reaching the customer via a capability of the Trust Layer.

550
MCQhard

A service team needs an AI bot that can handle complex customer issues requiring integration with external systems and escalate to a human agent when confidence is low. Which Einstein feature should be used?

A.Agentforce
B.Einstein Case Classification
C.Einstein Bots
D.Einstein GPT (Service GPT)
AnswerC

Einstein Bots provide chatbot builder with intents, entities, and human agent handoff.

Why this answer

Option C is correct because Einstein Bots are designed to handle complex, multi-turn customer issues by integrating with external systems via Apex actions or REST APIs, and they include a built-in confidence threshold that triggers escalation to a human agent when the bot's confidence in resolving the query drops below a configurable level. This directly matches the requirement for handling complex issues with external system integration and low-confidence escalation.

Exam trap

The trap here is that candidates confuse Einstein Bots (a customer-facing conversational AI with escalation) with Einstein GPT (an agent-assist tool that generates responses but does not directly handle customer conversations or escalate).

How to eliminate wrong answers

Option A is wrong because Agentforce is a suite of tools for managing and optimizing human agent workflows, not an AI bot that autonomously handles customer issues or integrates with external systems. Option B is wrong because Einstein Case Classification uses machine learning to automatically classify and route cases based on historical data, but it does not handle real-time customer conversations, integrate with external systems, or escalate based on confidence. Option D is wrong because Einstein GPT (Service GPT) generates AI-powered responses for agents within the console, but it is not a bot that directly interacts with customers, nor does it have built-in escalation logic based on confidence thresholds.

551
MCQhard

A company is using customer support tickets to train a model for auto-classifying issues. The dataset includes fields like 'Case Title', 'Description', 'Product', and 'Customer Name'. Which privacy concern is most critical to address before training?

A.Anonymize personal identifiable information (PII) in Description and Title
B.Encrypt session tokens used in the support system
C.Remove all case numbers to prevent data leakage
D.Ensure all customers have opted in before using their data
AnswerA

PII in text must be removed to comply with privacy regulations and prevent bias.

Why this answer

Anonymizing PII in the text fields is critical to avoid exposing customer information in model artifacts or predictions. Session tokens are irrelevant, and case numbers are not PII. Opt-in is a legal requirement but not directly about data preparation for AI.

552
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.

553
MCQmedium

A sales rep wants to generate personalized email drafts to send to prospects based on opportunity data. Which feature should they use within Salesforce?

A.Einstein Conversation Insights
B.Sales GPT
C.Einstein Opportunity Scoring
D.Einstein Email Insights
AnswerB

Sales GPT is the generative AI feature for sales email, call summaries, etc.

Why this answer

Sales GPT is the correct feature because it uses generative AI to create personalized email drafts based on opportunity data, such as deal stage, product interest, and customer interactions. It leverages large language models to generate context-aware content directly within Salesforce, enabling the sales rep to quickly produce tailored communications without manual effort.

Exam trap

The trap here is that candidates confuse Einstein's analytics or scoring features (like Einstein Opportunity Scoring or Einstein Email Insights) with generative AI capabilities, failing to recognize that only Sales GPT (a generative AI feature) can produce new content like email drafts.

How to eliminate wrong answers

Option A is wrong because Einstein Conversation Insights analyzes call recordings and meeting transcripts to surface insights like action items and sentiment, not to generate email drafts. Option C is wrong because Einstein Opportunity Scoring predicts the likelihood of an opportunity closing and provides a score, but it does not generate any content or drafts. Option D is wrong because Einstein Email Insights provides analytics on email engagement (e.g., open rates, click rates) and suggests optimal send times, but it does not generate personalized email content.

554
MCQeasy

A company wants to deploy an AI system that makes hiring decisions. To comply with ethical guidelines, what should they do before deployment?

A.Conduct an ethics review and perform bias testing on diverse datasets.
B.Ensure the system achieves high accuracy and ignore other metrics.
C.Deploy immediately and monitor for issues.
D.Test the system only on a small dataset to expedite launch.
AnswerA

Ethics review and bias testing are proactive measures.

Why this answer

Option A is correct because conducting an ethics review and performing bias testing on diverse datasets are essential steps to identify and mitigate potential discriminatory outcomes in AI-driven hiring systems. This aligns with ethical AI frameworks that require fairness, accountability, and transparency before deployment, ensuring the model does not perpetuate historical biases or violate anti-discrimination laws.

Exam trap

Salesforce often tests the misconception that high accuracy alone guarantees ethical AI, when in fact fairness metrics and bias testing are mandatory to prevent discriminatory outcomes in high-stakes applications like hiring.

How to eliminate wrong answers

Option B is wrong because prioritizing only high accuracy can mask harmful biases; a model may achieve high overall accuracy but still systematically discriminate against protected groups due to imbalanced data or proxy features. Option C is wrong because deploying immediately without prior testing violates ethical guidelines and can lead to real-world harm, legal liability, and loss of trust; monitoring alone cannot retroactively fix embedded biases. Option D is wrong because testing on a small dataset is insufficient to detect bias across diverse demographic groups and may lead to overfitting or failure to uncover edge cases, undermining the reliability and fairness of the system.

555
MCQmedium

A Salesforce admin is preparing a dataset for Einstein Prediction Builder. The dataset contains a field "Income" with many missing values. The admin wants to minimize bias in the model. What is the best practice?

A.Delete all rows where Income is missing
B.Review the pattern of missingness and document reasons, then decide on imputation
C.Fill missing values with the mean of Income
D.Replace missing values with 0
AnswerB

Understanding why data is missing prevents bias from systematic exclusion or imputation.

Why this answer

Option C is correct because reviewing missingness patterns and documenting reasons helps uncover systemic biases. Option A (fill with mean) may distort relationships; Option B (delete rows) reduces sample and may introduce selection bias; Option D (replace with 0) is arbitrary and can skew results.

556
MCQhard

A healthcare CRM administrator wants to use AI to recommend treatment plans based on patient data. Which combination of Salesforce Trusted AI principles is MOST critical to consider?

A.Safety and Honesty
B.Honesty and Transparency
C.Accuracy and Empathy
D.Transparency and Safety
AnswerC

Accuracy ensures correct recommendations; empathy ensures the design prioritizes patient welfare.

Why this answer

Option C is correct because in healthcare AI, accuracy ensures that treatment recommendations are clinically valid and based on reliable patient data, while empathy ensures the system respects patient well-being and avoids harmful or insensitive suggestions. Without accuracy, the model could recommend incorrect treatments; without empathy, it might ignore patient context or ethical considerations. These two principles together directly address the dual need for clinical correctness and human-centered care in treatment planning.

Exam trap

The trap here is that candidates often confuse 'Safety' with 'Accuracy' or think 'Transparency' is always the most critical principle, but in healthcare AI, the combination of clinical correctness (Accuracy) and patient-centeredness (Empathy) is the most critical for treatment plan recommendations.

How to eliminate wrong answers

Option A is wrong because Safety and Honesty, while important, are not the most critical pair for treatment plan recommendations; safety is a broader principle that overlaps with accuracy, and honesty alone does not ensure the model's outputs are clinically correct or empathetic. Option B is wrong because Honesty and Transparency focus on openness about AI use and data handling, but they do not directly address the clinical validity or patient-centeredness required for treatment plans. Option D is wrong because Transparency and Safety, though relevant to ethical AI, miss the essential requirement of accuracy (correctness of recommendations) and empathy (understanding patient needs), which are paramount in healthcare decision-making.

557
MCQeasy

A service manager wants to reduce manual case classification effort by automatically setting the Type, Priority, and Reason fields on incoming cases. Which Einstein feature meets this requirement?

A.Einstein Case Classification
B.Einstein Prediction Builder
C.Einstein Reply Recommendations
D.Einstein Article Recommendations
AnswerA

This feature auto-classifies cases into fields like Type, Priority, and Reason.

Why this answer

Einstein Case Classification is the correct feature because it uses machine learning to automatically predict and set the Type, Priority, and Reason fields on incoming cases based on historical case data and patterns. This directly reduces manual classification effort by assigning these three standard fields without requiring custom models or additional configuration.

Exam trap

The trap here is that candidates confuse Einstein Case Classification with Einstein Prediction Builder, thinking any predictive AI feature can handle case fields, but only Case Classification is purpose-built for automatically setting Type, Priority, and Reason on cases.

How to eliminate wrong answers

Option B (Einstein Prediction Builder) is wrong because it is a no-code tool for building custom predictive models on any object or field, not specifically designed to auto-classify case fields like Type, Priority, and Reason. Option C (Einstein Reply Recommendations) is wrong because it suggests pre-written email responses to support agents, not case field classification. Option D (Einstein Article Recommendations) is wrong because it recommends knowledge articles to agents or customers based on case context, not automatically setting case fields.

558
MCQmedium

A service team wants to automatically suggest relevant knowledge articles to agents while they are working on a case. Which Einstein feature should be enabled?

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

This feature recommends articles to agents.

Why this answer

Einstein Article Recommendations uses AI to suggest articles based on case details.

559
MCQmedium

A company wants to create a custom AI model that predicts whether a support case will be escalated (Yes/No) based on historical case data. They need to define the objective field, training data, and features. Which Einstein feature allows them to build this custom prediction?

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

Correct. Prediction Builder is designed for custom binary predictions like escalation likelihood.

Why this answer

Einstein Prediction Builder enables creation of custom binary classification models using Salesforce data, allowing selection of prediction field, data set, and features.

560
Multi-Selecthard

A healthcare provider is using Einstein to predict patient readmission risks. They must ensure the model is both accurate and fair. Which THREE actions should they take? (Choose 3)

Select 3 answers
A.Use only historical data from the past six months
B.Validate model accuracy separately for different patient subgroups
C.Exclude all demographic features from the model to avoid bias
D.Regularly audit the model for bias across demographic groups
E.Include as many features as possible to maximize predictive power
AnswersB, C, D

Subgroup validation ensures consistent accuracy across populations.

Why this answer

Option B is correct because validating model accuracy separately for different patient subgroups is a key fairness practice. It ensures the model performs consistently across diverse populations, preventing hidden disparities that could lead to biased clinical decisions. This aligns with responsible AI principles that require subgroup performance analysis to detect and mitigate algorithmic bias.

Exam trap

Cisco often tests the misconception that simply excluding demographic features (Option C) guarantees fairness, when in reality, proxy variables like zip code or income can still encode bias, making regular auditing (Option D) and subgroup validation (Option B) essential.

561
MCQeasy

Refer to the exhibit. A data analyst runs a profile on a dataset and sees these statistics. Based on best practices, which action should be taken first?

A.Impute the 500 missing values with the mean
B.Remove the 200 duplicate records
C.Remove the 50 outliers in the Amount field
D.Skip all preprocessing and train the model directly
AnswerB

Duplicates can artificially inflate certain patterns and cause data leakage.

Why this answer

Option B is correct because duplicate records introduce bias and redundancy, leading to overfitting or skewed model performance. Removing duplicates is a standard first step in data preprocessing to ensure data integrity before handling missing values or outliers. In the context of the AI Associate exam, best practices prioritize deduplication early in the data cleaning pipeline.

Exam trap

Salesforce often tests the order of preprocessing steps, trapping candidates who jump to imputation or outlier removal without first cleaning duplicates, which is the foundational step in data preparation.

How to eliminate wrong answers

Option A is wrong because imputing missing values with the mean should only be considered after duplicates are removed, as duplicates can inflate the mean and distort imputation. Option C is wrong because removing outliers should be done after addressing duplicates and missing values, and only after understanding the domain context; premature outlier removal can discard legitimate data. Option D is wrong because skipping all preprocessing ignores fundamental data quality issues (missing values, duplicates, outliers) that degrade model accuracy and reliability, violating best practices for AI workflows.

562
MCQhard

An administrator is configuring Einstein Bots and needs the bot to understand when a customer says 'I want to return a product' and route them accordingly. What must be created to map this phrase to a specific bot action?

A.A new object to store return requests
B.A dialogue flow with condition nodes
C.An intent named 'ReturnProduct' and associated training phrases
D.A custom entity for 'return'
AnswerC

Intents map user utterances to actions; training phrases help NLP learn variations.

Why this answer

Intents represent the purpose of a user input (e.g., 'ReturnProduct'), and entities capture specifics like product name. The bot uses NLP to match intents.

563
MCQmedium

A sales rep receives an AI-generated recommendation to upsell a product to a customer. The rep wants to verify the reasoning behind the recommendation before acting. What Salesforce feature can the rep use to see the key factors that influenced the recommendation?

A.Einstein Discovery score factors
B.Einstein Next Best Action
C.Einstein Activity Capture
D.Einstein Bots
AnswerA

Score factors show the top influential fields for each prediction, providing transparency.

Why this answer

Einstein Discovery provides prediction explanations and score factors. For recommendations within Sales Cloud, the 'Why this recommendation' feature (part of Einstein Discovery) shows the most influential fields.

564
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.

565
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

Option B is correct because 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.

566
MCQhard

A company uses Einstein Forecasting and notices that the AI forecast is consistently lower than the rep commit for the same period. The sales director wants to rely on the more accurate prediction. What should they do?

A.Disable rep commit entries to force reliance on AI forecast
B.Retrain the Einstein Forecasting model with manual adjustments
C.Override the AI forecast with the rep commit values in the forecast grid
D.Use the AI forecast as the primary forecast after reviewing its accuracy against past periods
AnswerD

If AI forecast is consistently accurate, it should be trusted; rep commits may be overly optimistic.

Why this answer

Option D is correct because the recommended approach is to validate the AI forecast's accuracy by comparing it against historical actuals before adopting it as the primary forecast. Einstein Forecasting uses machine learning to analyze historical data and trends, and if it consistently underperforms rep commits, the sales director should first verify its accuracy over past periods to ensure it is reliable. This aligns with best practices for AI-driven forecasting, where trust is built through evidence rather than manual overrides or disabling human input.

Exam trap

The trap here is that candidates assume the AI forecast is always more accurate and should be used immediately, without first validating its historical performance against actual outcomes.

How to eliminate wrong answers

Option A is wrong because disabling rep commit entries removes valuable human insight and does not address the root cause of the AI forecast's inaccuracy; it forces reliance on an unvalidated model. Option B is wrong because retraining the model with manual adjustments introduces bias and contradicts the purpose of an automated, data-driven AI forecast; Einstein Forecasting is designed to learn from data, not manual tweaks. Option C is wrong because overriding the AI forecast with rep commit values defeats the purpose of using AI for accuracy and does not resolve the discrepancy; it simply substitutes one value for another without validation.

567
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.

568
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.

569
MCQhard

A Salesforce admin notices that Einstein Account Scoring is not generating scores for all accounts. Some accounts have no score even though they meet the data requirements. What is the most likely cause?

A.The org has fewer than 100 account records
B.Einstein features are not enabled in the org
C.Users do not have the 'View Scores' permission
D.The accounts lack custom fields for scoring
AnswerA

Einstein requires a minimum data volume (e.g., 100 records) to generate scores.

Why this answer

Einstein Account Scoring requires a minimum of 100 account records to generate meaningful scores. If the org has fewer than 100 accounts, the model cannot establish a baseline for scoring, resulting in no scores for any account. This is a hard threshold enforced by the Einstein AI engine, not a configurable setting.

Exam trap

The trap here is that candidates often assume missing scores are due to permission issues or missing custom fields, but the real constraint is a hard data volume minimum that the Einstein engine enforces silently.

How to eliminate wrong answers

Option B is wrong because if Einstein features were not enabled, no Einstein functionality would work at all, not just scoring for some accounts. Option C is wrong because the 'View Scores' permission controls user visibility of scores, not the generation of scores by the AI engine. Option D is wrong because Einstein Account Scoring uses standard fields and does not require custom fields; it leverages existing data like industry, revenue, and engagement history.

570
Multi-Selectmedium

A service manager wants to use Einstein for case deflection. Which TWO features can help automatically resolve or route cases without agent involvement? (Choose two.)

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

Classification can route cases to the right queue for faster resolution.

Why this answer

Einstein Case Classification (A) automatically categorizes incoming cases and can route them to the appropriate queue or team without agent intervention, enabling deflection by ensuring the right resource handles the issue. Einstein Bots (D) use natural language processing to handle common customer inquiries, resolve issues, or collect information before escalating, all without requiring a live agent.

Exam trap

The trap here is that candidates often confuse Einstein Next Best Action (a recommendation engine) with a feature that can automatically execute actions, when in fact it only suggests actions and requires manual intervention to complete them.

571
Multi-Selecthard

A company wants to use Einstein Prediction Builder to predict whether a support case will escalate (binary: escalate or not). They have historical case data in Salesforce. Which THREE steps are required to set up this prediction?

Select 3 answers
A.Build an Einstein Bot for escalation handling
B.Select the dataset (records to train on)
C.Select features (input fields)
D.Create a dashboard to monitor model performance
E.Select the prediction field (escalation flag)
AnswersB, C, E

Yes, you need to specify which records are used for training.

Why this answer

Option B is correct because selecting the dataset is a fundamental step in setting up an Einstein Prediction Builder model. You must specify which historical case records to use for training, ensuring the data includes both escalated and non-escalated cases so the model can learn patterns. Without a properly defined dataset, the prediction cannot be built.

Exam trap

The trap here is that candidates may confuse optional post-setup activities like building dashboards or bots with the mandatory configuration steps required to create the prediction model itself.

572
MCQmedium

A sales operations manager wants to use Einstein Lead Scoring to prioritize leads. They have historical data showing that leads from a certain postal code have a low conversion rate. However, they suspect the low conversion is due to a past marketing campaign that was poorly targeted, not the demographics of that area. What is the BEST way to ensure the AI model does not unfairly penalize leads from that postal code?

A.Manually increase the lead scores for all leads from that postal code
B.Audit the model for disparate impact on that postal code and retrain with updated labels that reflect the true conversion potential
C.Remove the postal code field from the model training data entirely
D.Use the model as-is because Salesforce AI is certified to be fair
AnswerB

Auditing identifies bias; correcting the labels (e.g., re-marketing campaign data as neutral) and retraining addresses the root cause without losing the feature's legitimate predictive power.

Why this answer

Bias in historical data can lead to unfair predictions. The best approach is to audit the model for bias and retrain with corrected labels or additional features that capture the true drivers of conversion, rather than simply omitting the feature or adjusting scores manually.

573
Multi-Selecteasy

Which TWO practices contribute to ethical AI transparency?

Select 2 answers
A.Using open-source algorithms.
B.Providing user-facing explanations.
C.Collecting sensitive demographic data.
D.Allowing users to opt out of AI processing.
E.Documenting model decisions.
AnswersB, E

Explanations help users understand how decisions are made.

Why this answer

Options A and C are correct. Documenting model decisions provides an audit trail, and providing user-facing explanations helps users understand AI behavior. Option B is wrong because open-source algorithms do not guarantee transparency about specific model decisions.

Option D is wrong because collecting sensitive data may violate privacy principles. Option E is wrong because opt-out is about user control, not transparency.

574
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.

575
MCQhard

An admin wants to create a prompt template that generates a personalized email to a lead. Which tool should they use to create and manage prompt templates for Einstein GPT?

A.Einstein Copilot
B.Prompt Builder
C.Einstein GPT Builder
D.Einstein Next Best Action
AnswerB

Why this answer

Prompt Builder is the correct tool because it is specifically designed within the Einstein GPT platform to create, version, and manage prompt templates for generative AI use cases, such as generating personalized emails to leads. Unlike other options, Prompt Builder provides a no-code interface to define the prompt structure, variables (like lead name or company), and output format, directly integrating with Salesforce data.

Exam trap

The trap here is that candidates confuse Einstein Copilot (a conversational interface) with Prompt Builder (the template creation tool), or they assume 'Einstein GPT Builder' is a valid product name, when in fact Salesforce uses 'Prompt Builder' as the official feature for managing prompt templates.

How to eliminate wrong answers

Option A is wrong because Einstein Copilot is an AI-powered conversational assistant that uses pre-built actions and prompts to answer user questions or perform tasks, but it is not the tool for creating and managing prompt templates; it consumes prompts created elsewhere. Option C is wrong because Einstein GPT Builder is not a real product name in the Salesforce ecosystem; the correct tool for prompt template management is Prompt Builder, and this option represents a distractor. Option D is wrong because Einstein Next Best Action is a recommendation engine that suggests the next best action (e.g., call or email) based on predictive models, but it does not create or manage generative AI prompt templates for personalized email content.

576
Multi-Selecteasy

A data scientist is preparing numeric features for a regression model. Which TWO transformations are commonly applied to improve model performance?

Select 2 answers
A.Normalize to a 0-1 range
B.Remove outliers beyond 3 standard deviations
C.Convert numbers to string labels
D.Apply one-hot encoding
E.Standardize to mean 0 and variance 1
AnswersA, E

Scales features to a common range, helpful for distance-based models.

Why this answer

Normalizing features to a 0-1 range (min-max scaling) ensures that all numeric features contribute equally to the model, preventing features with larger magnitudes from dominating the gradient descent optimization. This is especially important for distance-based algorithms like k-nearest neighbors or neural networks, where feature scale directly impacts convergence speed and model accuracy.

Exam trap

Salesforce often tests the distinction between data cleaning (e.g., outlier removal) and feature transformation (e.g., scaling), leading candidates to mistakenly select outlier removal as a transformation that improves model performance.

577
Multi-Selecteasy

A Salesforce administrator deploys an Einstein Bot. Which TWO ethical considerations should be addressed? (Choose two.)

Select 2 answers
A.The bot should disclose it is an AI
B.The bot should mimic a human
C.The bot should make decisions autonomously
D.The bot should not collect personal data
E.The bot should escalate to a human when needed
AnswersA, E

Correct. Transparency requires the bot to identify itself as AI.

Why this answer

Option A is correct because ethical AI guidelines, including those from Salesforce, require that bots disclose their non-human identity to users. This transparency builds trust and ensures users are aware they are interacting with an AI, not a human, which is a core ethical principle in AI deployment.

Exam trap

Salesforce often tests the misconception that ethical AI means bots should never collect personal data, but the real ethical requirement is transparency and consent, not an absolute prohibition on data collection.

578
MCQhard

An admin reviews the Einstein service configuration JSON. Based on the exhibit, which statement is true?

A.Lead scoring is disabled for the org
B.Opportunities will not have Einstein scores
C.The lead scoring model retrains daily
D.The admin has not configured any scoring fields for leads
AnswerB

Opportunity scoring is disabled (false).

Why this answer

Option B is correct because the JSON exhibit shows that the Einstein Opportunity Scoring feature is disabled (the 'status' field is set to 'Disabled'), meaning opportunities will not have Einstein scores. This is determined by the configuration flag that controls whether Einstein scoring is active for opportunities in the org.

Exam trap

Salesforce often tests the distinction between lead scoring and opportunity scoring configurations, and candidates may mistakenly assume that if lead scoring is enabled, opportunity scoring must also be enabled, or overlook the specific 'status' field for each object in the JSON.

How to eliminate wrong answers

Option A is wrong because the JSON shows lead scoring is enabled (the 'leadScoring' object has 'status' set to 'Enabled'), so lead scoring is not disabled for the org. Option C is wrong because the JSON does not contain any field indicating a retraining schedule for the lead scoring model; the retraining frequency is not specified in this configuration snippet. Option D is wrong because the JSON includes a 'scoringFields' array under 'leadScoring' that lists specific fields like 'Industry' and 'AnnualRevenue', indicating the admin has configured scoring fields for leads.

579
MCQmedium

A healthcare organization is using Einstein Bots to schedule patient appointments. They are subject to HIPAA regulations. What is the most important configuration they must apply to the Einstein Trust Layer?

A.Set up an audit trail for all bot interactions.
B.Enable toxicity detection to ensure the bot does not use offensive language.
C.Enable PII masking and configure it to identify and mask health-related data fields.
D.Disable data retention to ensure no customer data is stored.
AnswerC

PII masking is critical for HIPAA compliance to prevent PHI exposure.

Why this answer

HIPAA requires protection of Protected Health Information (PHI). PII masking in the Einstein Trust Layer ensures that PHI is not exposed or retained in logs or training.

580
MCQhard

A Salesforce admin has enabled Einstein Opportunity Scoring but notices that some opportunities are not being scored. The admin checks the data and finds that the opportunities have all required fields. What could be another reason for missing scores?

A.Opportunity team members have not been assigned
B.The org is on a Professional Edition
C.The org has fewer than 100 opportunities with activities
D.The opportunities are missing custom fields
AnswerC

Einstein requires sufficient data history to generate scores.

Why this answer

Einstein Opportunity Scoring requires a minimum of 100 opportunities with activities (e.g., emails, events, tasks) in the last 90 days to generate scores. Even if all required fields are present, the model needs sufficient historical data to calculate a predictive score. Option C correctly identifies this data volume threshold as the likely cause.

Exam trap

The trap here is that candidates assume missing scores are always due to missing fields or permissions, but Salesforce specifically requires a minimum data volume (100 opportunities with activities) for Einstein models to function.

How to eliminate wrong answers

Option A is wrong because opportunity team members are not a prerequisite for Einstein Opportunity Scoring; the model scores opportunities based on field values and activities, not team assignments. Option B is wrong because Einstein Opportunity Scoring is available on Professional Edition with the required add-on licenses, so edition alone does not prevent scoring. Option D is wrong because the admin already confirmed all required fields are present, and missing custom fields would not block scoring unless they are specifically mapped as required by the model, which is not the case here.

581
MCQmedium

An admin created a data stream to bring external customer data into Data Cloud for Einstein. The data stream fails with error 'Schema mismatch: expected 10 fields, got 8'. What is the likely cause?

A.The data flow has a filter that drops fields.
B.The target object has validation rules.
C.The source file has extra columns.
D.The data stream definition expects more fields than the source provides.
AnswerD

Directly matches the error: expected 10, got 8.

Why this answer

The error 'Schema mismatch: expected 10 fields, got 8' indicates that the data stream definition in Data Cloud is configured to map 10 fields from the source, but the actual source file or API response only provides 8 fields. This mismatch occurs when the schema defined in the data stream does not match the source schema, typically because the source has fewer columns than expected. Option D correctly identifies this as the likely cause.

Exam trap

Salesforce often tests the distinction between schema-level errors (field count mismatch) and data-level errors (validation rules, filters), leading candidates to confuse data flow operations with data stream schema definitions.

How to eliminate wrong answers

Option A is wrong because a filter in a data flow drops rows (records), not fields (columns), and the error explicitly mentions a field count mismatch, not a row count issue. Option B is wrong because validation rules on the target object would cause record-level failures during data insertion, not a schema mismatch error during the data stream definition or ingestion phase. Option C is wrong because extra columns in the source file would cause the error to report more fields than expected (e.g., 'expected 10, got 12'), not fewer.

582
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.

583
Multi-Selecthard

A data scientist wants to use Einstein Discovery to analyze customer churn. They want to understand which factors contribute most to churn and get actionable suggestions. Which THREE outputs does Einstein Discovery provide?

Select 3 answers
A.Prediction score for each record
B.Improvement suggestions (recommended actions)
C.Story (narrative explanation of insights)
D.Key drivers (most influential factors)
E.Waterfall chart (visualization of step-by-step impact)
AnswersB, C, D

Suggestions provide actionable steps to improve the outcome.

Why this answer

Option B is correct because Einstein Discovery provides improvement suggestions (recommended actions) that guide data scientists on specific changes to reduce churn. These actionable insights are generated from the predictive model's analysis of historical data, offering concrete steps like 'increase engagement frequency' or 'offer discount' to improve outcomes.

Exam trap

The trap here is that candidates confuse Einstein Discovery's outputs (key drivers, story, improvement suggestions) with Einstein Prediction Builder's outputs (prediction scores and probability distributions), leading them to select Option A incorrectly.

584
Multi-Selectmedium

A marketing manager wants to use Einstein Next Best Action to recommend offers to customers based on their behavior. Which TWO components are used in defining Next Best Action strategies?

Select 2 answers
A.Intents and entities
B.Prompt templates
C.Image classification models
D.Apex
E.Flows
AnswersD, E

Yes, Apex can also be used for custom logic.

Why this answer

Option D (Apex) is correct because Einstein Next Best Action strategies can use Apex classes to define custom logic for offer selection, such as querying external data or applying complex business rules. Option E (Flows) is correct because Flows allow you to orchestrate the decision process, including branching logic and data transformations, to determine which offers to present to a customer based on their behavior.

Exam trap

The trap here is that candidates may confuse components from other Einstein features (like Bots or Vision) with those used in Next Best Action, or assume that only declarative tools like Flows are valid, overlooking the programmatic option of Apex.

585
MCQmedium

During data transformation, a data scientist applies one-hot encoding to a categorical feature with 50 unique values. The resulting dataset has 50 new columns. What is a potential drawback of this transformation?

A.Reduction in training time
B.Increased interpretability of the model
C.High cardinality leading to sparse data and overfitting
D.Loss of ordinal information in categories
AnswerC

High cardinality creates many sparse columns, risking overfitting.

Why this answer

One-hot encoding a categorical feature with 50 unique values creates 50 binary columns, each representing one category. This high cardinality leads to a very sparse matrix (most entries are 0), which can cause the model to overfit by learning noise from rare categories, especially when the dataset is not large enough to support such dimensionality.

Exam trap

Salesforce often tests the misconception that one-hot encoding always improves model performance by preserving all information, when in fact high cardinality introduces sparsity and overfitting risks that can degrade model accuracy.

How to eliminate wrong answers

Option A is wrong because one-hot encoding increases the number of features, which typically increases training time due to higher dimensionality, not reduces it. Option B is wrong because adding 50 new binary columns reduces interpretability; the model becomes more complex and harder to explain, especially with many dummy variables. Option D is wrong because one-hot encoding is designed for nominal (unordered) categories; ordinal information is not lost because it was never present — the feature had no inherent order, so no information is lost.

586
MCQhard

A global company needs to ensure that customer data used for AI models complies with multiple regional regulations (GDPR, CCPA, LGPD). Which data governance practice is most effective?

A.Apply the strictest regulation globally.
B.Use a unified data catalog with tagging and classification.
C.Store all data in a single data warehouse.
D.Allow each region to manage its own data separately.
AnswerB

A data catalog helps track data lineage, apply policies, and ensure compliance per region.

Why this answer

Option D is correct because a unified data catalog with tagging and classification allows the organization to manage data governance and compliance across regions consistently.

587
MCQeasy

Which Einstein feature provides automated statistical analysis of Salesforce data, including story creation and improvement suggestions?

A.Einstein Forecasting
B.Einstein Prediction Builder
C.Einstein Recommendation Builder
D.Einstein Discovery
AnswerD

Einstein Discovery is the AI analytics engine that provides stories, waterfall charts, and prescriptions.

Why this answer

Einstein Discovery provides automated statistical analysis, generates stories, waterfall charts, and improvement suggestions.

588
MCQeasy

To ensure AI model fairness and avoid biased outcomes, which practice is most critical when preparing training data?

A.Use only recent data
B.Increase model complexity
C.Use balanced training data
D.Use more features
AnswerC

Balanced data reduces bias towards any group.

Why this answer

Option C is correct because using balanced training data across different groups helps prevent bias. Option A is wrong because adding more features can introduce bias. Option B is wrong because increasing model complexity may overfit.

Option D is wrong because using only recent data may not represent all demographics.

589
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.

590
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.

591
MCQeasy

A company wants to use AI to analyze call recordings and automatically capture key topics, talk time, and next steps. Which Einstein feature should they implement?

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

Correct. Conversation Insights processes call recordings for metrics and next steps.

Why this answer

Einstein Conversation Insights is the correct feature because it is specifically designed to analyze call recordings and automatically extract key topics, talk time, and next steps using natural language processing (NLP) and speech-to-text technology. It provides post-call summaries, identifies action items, and surfaces conversation trends without requiring manual note-taking or configuration.

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) and does not perform content analysis or topic extraction.

How to eliminate wrong answers

Option A is wrong because Einstein Activity Capture is a tool for automatically logging emails and events to Salesforce records, not for analyzing call recordings or extracting topics and talk time. Option C is wrong because Einstein Bots are used for automating chat-based conversations and handling routine customer inquiries, not for analyzing recorded calls or generating post-call insights. Option D is wrong because Einstein Email Insights focuses on analyzing email interactions to surface key information and sentiment, but it does not process audio or call recordings.

592
MCQeasy

Which Einstein feature creates automated statistical analyses and stories, including waterfall charts and improvement suggestions?

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

Why this answer

Einstein Discovery is the correct answer because it is the Einstein feature specifically designed to automatically generate statistical analyses, narratives, and visualizations such as waterfall charts, along with actionable improvement suggestions. Unlike other Einstein tools that focus on predictions or scoring, Einstein Discovery uses machine learning to uncover patterns in data and produce plain-language explanations of the insights.

Exam trap

The trap here is that candidates confuse Einstein Discovery's automated statistical analysis and storytelling capabilities with Einstein Prediction Builder's custom prediction functionality, as both involve machine learning but serve distinct purposes.

How to eliminate wrong answers

Option A (Einstein Prediction Builder) is wrong because it is a point-and-click tool for creating custom predictive models (e.g., binary classification or numeric prediction) and does not generate automated statistical analyses, waterfall charts, or improvement suggestions. Option C (Einstein Forecasting) is wrong because it focuses on time-series predictions for revenue, sales, or other metrics, not on generating statistical narratives or waterfall charts. Option D (Einstein Lead Scoring) is wrong because it assigns a score to leads based on likelihood to convert, and does not produce automated analyses, charts, or improvement suggestions.

593
MCQmedium

A marketing manager wants to use AI to generate personalized email content for customers. According to Salesforce's Trusted AI principles, what should the manager ensure before sending?

A.The emails are sent automatically to maximize efficiency
B.A human reviews the AI-generated content before sending
C.The emails are sent only to customers who opted in to AI interactions
D.The AI model is retrained daily on new customer data
AnswerB

Human review ensures the content is suitable and aligns with customer well-being.

Why this answer

Option B is correct because Salesforce's Trusted AI principles emphasize human oversight to ensure AI-generated content is accurate, appropriate, and aligned with brand values. The manager must have a human review the content before sending to mitigate risks like bias, inaccuracy, or inappropriate messaging, which aligns with the principle of accountability in AI deployment.

Exam trap

Cisco often tests the misconception that automation or consent alone satisfies AI ethics, but the trap here is that candidates overlook the mandatory human review step required by Trusted AI principles for any customer-facing AI-generated content.

How to eliminate wrong answers

Option A is wrong because automatically sending emails without human review violates the Trusted AI principle of accountability, as it bypasses necessary oversight to catch errors or harmful content. Option C is wrong because opting in to AI interactions does not guarantee that the AI-generated content is safe or appropriate; human review is still required regardless of consent. Option D is wrong because retraining the AI model daily on new customer data is not a principle of Trusted AI and could introduce instability or overfitting, and it does not address the need for human review of the output.

594
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.

595
Multi-Selectmedium

A company wants to ensure their AI model complies with ethical guidelines. Which TWO actions are essential? (Choose two.)

Select 2 answers
A.Avoid transparency
B.Provide human oversight
C.Use the most complex model
D.Automate all decisions
E.Document model decisions
AnswersB, E

Correct. Human oversight ensures decisions can be reviewed and overridden.

Why this answer

Human oversight (Option B) is essential because it ensures that AI decisions can be reviewed, overridden, or corrected by a person, which is a core requirement of ethical AI frameworks such as the EU AI Act and NIST AI Risk Management Framework. This oversight helps catch biased outputs, edge cases, or harmful actions that the model might produce, maintaining accountability and safety.

Exam trap

Salesforce often tests the misconception that 'automation' is always the goal of AI, but the trap here is that ethical guidelines require human oversight and documentation, not full automation or complexity.

596
MCQmedium

A marketing team wants to recommend relevant knowledge articles to service agents while they work on a case. Which Einstein feature provides these recommendations?

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

Why this answer

Einstein Article Recommendations is the correct feature because it specifically uses AI to analyze the context of a service case—such as case subject, description, and product—and then surfaces the most relevant knowledge articles directly within the Salesforce console for the agent. This is distinct from general recommendation engines because it is purpose-built for knowledge article suggestions in service workflows.

Exam trap

The trap here is that candidates confuse 'recommendation' features (like Next Best Action or Recommendation Builder) with the specific article recommendation capability, not realizing that Einstein Article Recommendations is a dedicated feature for knowledge article suggestions in service cases.

How to eliminate wrong answers

Option A is wrong because Einstein Next Best Action is a decision engine that presents guided actions or offers based on business rules and AI models, not specifically for recommending knowledge articles to service agents. Option B is wrong because Einstein Recommendation Builder is a tool for creating personalized product or content recommendations for customers on ecommerce sites, not for surfacing internal knowledge articles to agents. Option D is wrong because Einstein Case Classification uses AI to automatically classify cases (e.g., by type or priority) based on historical data, but it does not recommend knowledge articles.

597
Multi-Selecthard

Which TWO components are essential for an AI ethics governance framework?

Select 2 answers
A.Using the most recent algorithms
B.Maximizing data collection
C.Assigning an ethics officer
D.Conducting regular audits
E.Establishing a code of ethics
AnswersD, E

Ensures ongoing compliance.

Why this answer

Option A is correct because a code of ethics provides foundational principles. Option D is correct because regular audits ensure ongoing compliance. Option B is wrong while helpful, not always considered essential.

Option C is wrong using the latest algorithms is not an ethics component. Option E is wrong maximizing data collection contradicts ethical principles like privacy.

598
MCQmedium

An AI system used for medical diagnosis occasionally produces incorrect results. A doctor notices the errors but continues using the system without reporting them. Which ethical principle is primarily at risk?

A.Fairness
B.Transparency
C.Privacy
D.Accountability
AnswerD

Healthcare professionals are accountable for AI-assisted decisions and must report errors.

Why this answer

Option A is correct: Accountability means humans must oversee AI decisions and report issues. Option B is wrong because transparency is about disclosure. Option C is wrong because fairness is about bias.

Option D is wrong because privacy is about data protection.

599
MCQmedium

A company deploys an AI system that recommends loan amounts. They want to ensure explainability. Which approach best aligns with ethical AI?

A.Allow the system to update its features dynamically without documentation.
B.Restrict the system's use to only internal employees.
C.Provide loan recommendations with a detailed rationale.
D.Use a black-box neural network for highest accuracy.
AnswerC

Detailed rationale enables users to understand decisions.

Why this answer

Option B is correct because providing a detailed rationale supports explainability and transparency. Option A is wrong because black-box models lack interpretability. Option C is wrong because restricting use does not ensure explainability.

Option D is wrong because undocumented changes undermine accountability.

600
MCQmedium

Refer to the exhibit. An admin built a prediction model for case closure within 24 hours. The model accuracy is 72% with 500 training records. Which change would most likely improve accuracy?

A.Change the outcome to 'Escalated'
B.Increase the training sample size to 5000 records
C.Remove the 'Subject' field from the model
D.Add more fields like 'Comments'
AnswerB

More data typically improves accuracy.

Why this answer

Increasing the training sample size from 500 to 5000 records provides the model with more data to learn patterns from, which reduces overfitting and improves generalization. In CRM AI models, larger datasets typically lead to higher accuracy because the algorithm can better capture underlying relationships without being skewed by noise in a small sample.

Exam trap

Salesforce often tests the misconception that adding more fields always improves accuracy, when in reality, irrelevant or noisy features can degrade performance, while increasing sample size is a more reliable method to boost model accuracy.

How to eliminate wrong answers

Option A is wrong because changing the outcome to 'Escalated' alters the target variable entirely, which would require retraining a new model for a different prediction task and does not address the accuracy of the original case closure model. Option C is wrong because removing the 'Subject' field may discard valuable textual features that could help predict closure time; unless the field is irrelevant or noisy, reducing features often harms model performance. Option D is wrong because adding more fields like 'Comments' without ensuring data quality or relevance can introduce noise and increase dimensionality, potentially degrading accuracy rather than improving it.

Page 7

Page 8 of 14

Page 9