Salesforce AI Associate AI Associate (AI Associate) — Questions 301375

506 questions total · 7pages · All types, answers revealed

Page 4

Page 5 of 7

Page 6
301
MCQmedium

A company wants to use Einstein Bots to handle common customer service inquiries. Which feature should be enabled to allow the bot to escalate to a live agent when it cannot resolve the issue?

A.Einstein Case Classification
B.Einstein Reply Recommendations
C.Omni-Channel Flow
D.Einstein Article Recommendations
AnswerC

Omni-Channel Flow can route unresolved bot conversations to live agents.

Why this answer

Option D is correct because Omni-Channel Flow routes work to agents. Option A is wrong because Einstein Case Classification categorizes cases, not escalates. Option B is wrong because Einstein Article Recommendations suggests knowledge articles.

Option C is wrong because Einstein Reply Recommendations suggests responses, not escalation.

302
Multi-Selectmedium

Which TWO data sources can be used with Einstein Prediction Builder?

Select 2 answers
A.Files uploaded to Salesforce Files.
B.Data Cloud objects using the harmonized data model.
C.Standard Salesforce objects like Account and Opportunity.
D.Chatter feed posts.
E.Dashboard and report snapshots.
AnswersB, C

Data Cloud objects are supported.

Why this answer

Einstein Prediction Builder requires structured data that can be mapped to a prediction objective. Data Cloud objects using the harmonized data model provide a unified, standardized schema that Prediction Builder can consume directly, enabling predictions across multiple Salesforce and external data sources. Standard Salesforce objects like Account and Opportunity are also supported because they contain the fields and relationships needed to train predictive models.

Exam trap

Salesforce often tests the misconception that any data in Salesforce (like files or Chatter posts) can be used directly with Einstein Prediction Builder, when in fact only structured, field-level data from objects or harmonized Data Cloud objects is supported.

303
MCQmedium

A company uses Einstein Prediction Builder to predict customer churn. The model's accuracy is low. The admin reviews the training data and notices that only 2% of records are churned. What should the admin do to improve the model?

A.Remove the churned records.
B.Increase the amount of training data.
C.Use oversampling techniques.
D.Change the prediction field.
AnswerC

Oversampling balances the classes and improves model sensitivity.

Why this answer

Option C is correct because when a dataset has severe class imbalance (only 2% churned records), the model becomes biased toward predicting the majority class (non-churned), leading to low accuracy despite high apparent performance. Oversampling techniques, such as SMOTE or random oversampling, artificially increase the number of churned records in the training set to balance the classes, allowing Einstein Prediction Builder to learn patterns for the minority class more effectively.

Exam trap

Salesforce often tests the misconception that adding more data always improves model performance, but here the trap is that candidates overlook class imbalance and choose 'Increase the amount of training data' (Option B) without realizing that more data with the same imbalance does not solve the problem.

How to eliminate wrong answers

Option A is wrong because removing the churned records would eliminate the minority class entirely, making it impossible for the model to learn to predict churn, and would result in a model that always predicts non-churn. Option B is wrong because simply increasing the amount of training data without addressing the class imbalance will likely maintain the same 2% churn ratio, providing more majority-class examples but not improving minority-class learning. Option D is wrong because changing the prediction field would alter the target variable itself, which does not fix the underlying class imbalance issue and would require redefining the business problem.

304
MCQeasy

A developer is creating a custom AI model on Salesforce. To ensure the model is fair across demographic groups, which activity should be included in the development process?

A.Feature selection using correlation matrix.
B.Bias testing using a diverse test dataset.
C.Cross-validation to avoid overfitting.
D.Hyperparameter tuning with grid search.
AnswerB

This evaluates model performance across demographics.

Why this answer

Bias testing using diverse datasets directly evaluates fairness across groups.

305
MCQmedium

A sales manager sees that the Einstein Lead Score for a high-profile lead is low but expects it to be high. What should the manager do to investigate the discrepancy?

A.Retrain the model to improve its accuracy for that lead.
B.Override the score manually to reflect their judgment.
C.Disable Einstein Lead Scoring for that lead record.
D.Use the Einstein Lead Score Insights to analyze the factors that contributed to the score.
AnswerD

Insights show top reasons influencing the score.

Why this answer

Option C is correct because Einstein Leaderboard provides user-level analytics to compare individual scores and understand distributions. Option A is wrong because changing the score manually defeats the purpose. Option B is wrong as disabling the model is drastic.

Option D is wrong because retraining may not be needed for a single case.

306
MCQmedium

You are an admin at a financial services firm. The firm wants to use Einstein Next Best Action to offer personalized product recommendations to customers on its service portal. The data includes customer profiles, transaction history, and support case history. The Einstein Next Best Action strategy is configured with a recommendation that shows a 'Savings Account' offer to customers who have a checking account. However, the recommendation is not appearing for any customers. You check the Data Flow and see that the 'Account' object data is flowing correctly. The recommendation's filter condition is: AND( Has_Checking_Account__c = true, Age__c > 18 ). You verify that many customers meet these conditions. What is the most likely reason the recommendation is not appearing?

A.The 'Account' object is not supported by Einstein Next Best Action
B.The recommendation is not activated or published
C.The customer data is not being refreshed in real time
D.The filter condition is syntactically incorrect
AnswerB

Recommendations must be activated and published to be served to customers.

Why this answer

The most likely reason the recommendation is not appearing is that it has not been activated or published. In Einstein Next Best Action, recommendations must be explicitly activated or published to become available for serving to customers; configuration alone does not make them live. Since the data flow is correct and the filter conditions are valid, the missing activation step is the typical cause of a recommendation not showing.

Exam trap

The trap here is that candidates may focus on data flow or filter syntax issues, but the real test is understanding that activation is a required step in Einstein Next Best Action to make recommendations live.

How to eliminate wrong answers

Option A is wrong because the 'Account' object is fully supported by Einstein Next Best Action, as it is a standard Salesforce object that can be used in recommendation strategies. Option C is wrong because Einstein Next Best Action does not require real-time data refresh; it works with batch-synced data, and the Data Flow showing correct data indicates the data is available. Option D is wrong because the filter condition AND( Has_Checking_Account__c = true, Age__c > 18 ) is syntactically correct in Salesforce formula syntax and would not cause the recommendation to fail silently.

307
MCQhard

An autonomous vehicle AI is trained in simulation but performs poorly in rain and snow. The development team decides to deploy anyway, arguing that bad weather is rare. What ethical concern is most critical?

A.Bias against certain weather conditions
B.Insufficient robustness and safety
C.Lack of human accountability
D.Lack of transparency
AnswerB

AI must be safe and robust in all expected conditions.

Why this answer

Option C is correct: Robustness and safety require that AI performs reliably under all foreseeable conditions. Option A is wrong because bias is about demographic fairness. Option B is wrong because transparency is about disclosure.

Option D is wrong because accountability is about oversight.

308
MCQeasy

A Salesforce admin is configuring an AI model to automatically approve customer refunds under $50. To ensure ethical use, what is the most important action?

A.Train the model on all historical refund data to maximize accuracy
B.Implement a human review process for all AI decisions
C.Set the approval threshold to $100 to cover more cases
D.Disable logging to protect customer privacy
AnswerB

Human oversight ensures fairness and accountability in automated decisions.

Why this answer

The correct answer is D because human oversight is critical for ethical AI, especially when decisions affect customers. Option A is wrong because training on all data may introduce bias. Option B is wrong because it is not always necessary to approve all refunds; the model should be accurate, not overly generous.

Option C is wrong because disabling logging reduces accountability.

309
MCQmedium

An organization uses Einstein to predict sales opportunities. They notice the model performs poorly for small businesses. What is the most ethical approach?

A.Reduce the model's complexity to improve performance.
B.Use a completely different model for small businesses.
C.Retrain the model with more data from small businesses.
D.Ignore small businesses as they contribute little revenue.
AnswerC

More representative data can improve model fairness.

Why this answer

Option B is correct because adding representative data from small businesses addresses the bias. Option A is wrong because ignoring small businesses is unethical. Option C is wrong because using a completely different model may create inconsistent experiences.

Option D is wrong because reducing complexity may not fix the data imbalance.

310
MCQeasy

A sales team uses an AI tool to prioritize leads. The tool is found to give lower scores to leads from certain regions. What ethical principle is most violated?

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

Fairness requires no discrimination.

Why this answer

Option C is correct because fairness requires that AI systems do not discriminate against groups. Option A is wrong because transparency is about openness, not nondiscrimination. Option B is wrong because accountability is about responsibility.

Option D is wrong because privacy is about data protection.

311
Multi-Selecteasy

Which TWO considerations are important when labeling data for a supervised learning model?

Select 2 answers
A.Maintaining consistent guidelines.
B.Labeler expertise.
C.Using automated labeling for all tasks.
D.Ignoring inter-labeler agreement.
E.Labeling only a small sample.
AnswersA, B

Clear guidelines ensure labelers apply the same criteria, reducing variability.

Why this answer

Maintaining consistent guidelines (A) is critical because supervised learning models learn patterns from labeled data; inconsistent labels introduce noise and confuse the model, degrading its accuracy. Labeler expertise (B) ensures that domain-specific nuances are correctly captured, which is especially important for tasks like medical imaging or legal document classification where errors have high cost.

Exam trap

Salesforce often tests the misconception that automated labeling is a complete substitute for human labeling, when in reality it requires careful validation and is typically used to augment, not replace, human effort.

312
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

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

313
MCQmedium

A data scientist is preparing data for Einstein Discovery. The dataset has 10,000 records with 5 predictors and one outcome. The outcome is binary (1/0). What is the minimum number of positive outcomes typically required for a reliable model?

A.250
B.500
C.100
D.50
AnswerA

50 per predictor * 5 predictors = 250 positive outcomes.

Why this answer

Option A is correct because for binary classification with 10,000 records and 5 predictors, a common rule of thumb in predictive modeling (including Einstein Discovery) is to have at least 10 events per predictor variable (EPV). With 5 predictors, you need at least 50 positive outcomes, but to ensure model stability and reliable training, a minimum of 250 positive outcomes (5% of 10,000) is typically required. This aligns with best practices for avoiding overfitting and achieving adequate statistical power.

Exam trap

Salesforce often tests the 10 events per predictor variable (EPV) rule, but the trap here is that candidates mistakenly apply the EPV rule directly (50 for 5 predictors) without considering the additional requirement for a minimum of 250 positive outcomes to ensure model reliability in Einstein Discovery.

How to eliminate wrong answers

Option B (500) is wrong because it overestimates the minimum requirement; while 500 positive outcomes would certainly be sufficient, the question asks for the minimum typically required, which is lower at 250. Option C (100) is wrong because it underestimates the requirement; with 5 predictors, 100 positive outcomes would only provide 20 events per predictor, which is below the recommended 10 EPV rule for reliable models. Option D (50) is wrong because it represents the bare minimum for 5 predictors under the 10 EPV rule, but in practice, Einstein Discovery and general best practices require a higher minimum (often 250 or 5% of records) to ensure model convergence and avoid instability.

314
MCQeasy

A company uses Einstein Prediction Builder to predict customer churn. They notice the model is less accurate for a particular demographic group. According to ethical AI principles, what should the company do first?

A.Conduct a bias audit to assess the model's fairness across demographics
B.Retrain the model with more data from that demographic group only
C.Ignore the discrepancy as it might be due to random variation
D.Switch to a different AI model without investigating
AnswerA

This is the recommended ethical practice to identify and address bias.

Why this answer

The correct first step is to conduct a bias audit to identify sources of disparity. Option B is correct because ethical AI requires proactive bias detection. Option A (ignore) violates fairness.

Option C (retrain on more data of that group) might introduce bias. Option D (use a different model without audit) ignores the root cause.

315
MCQeasy

A company wants to use AI to automatically recommend the best next action for service agents during a live chat with a customer. Which Einstein feature should be enabled?

A.Einstein Article Recommendations
B.Einstein Bots
C.Einstein Reply Recommendations
D.Einstein Next Best Action
AnswerD

Next Best Action recommends the best action for agents.

Why this answer

Option D, Einstein Next Best Action, is correct because it is specifically designed to recommend the optimal next step for service agents during live interactions. It uses AI to analyze the customer context, conversation history, and business rules to surface the most relevant action, such as offering a discount or escalating the case, directly within the agent's console.

Exam trap

The trap here is that candidates confuse 'Reply Recommendations' (text suggestions) with 'Next Best Action' (broader business actions), as both appear in the Service Console but serve fundamentally different purposes.

How to eliminate wrong answers

Option A is wrong because Einstein Article Recommendations suggests knowledge base articles for agents or customers to read, not actionable next steps during a live chat. Option B is wrong because Einstein Bots are automated chatbots that handle customer interactions without a human agent, not a feature that recommends actions to a live agent. Option C is wrong because Einstein Reply Recommendations suggests pre-written text responses for agents to send in chat, which is a subset of communication assistance, not a broader recommendation of business actions like transfers or promotions.

316
MCQmedium

A healthcare organization is deploying an AI model to predict patient readmission risk. The model was trained on historical data that underrepresented minority populations. During testing, the model shows lower accuracy for those groups. What should the data scientist do first?

A.Remove sensitive attributes like race and gender from the training data.
B.Ignore the disparity because the model's overall accuracy is acceptable.
C.Retrain the model with more complex algorithms to improve accuracy.
D.Re-evaluate the training data to ensure balanced representation and consider re-sampling techniques.
AnswerD

Ensuring data representativeness addresses root cause of bias.

Why this answer

Option D is correct because the first step in addressing model bias is to audit the training data for representational imbalance. Re-evaluating the data and applying re-sampling techniques (e.g., oversampling minority groups or undersampling the majority) directly targets the root cause of the disparity—skewed class distributions—before modifying the model or its features.

Exam trap

Salesforce often tests the misconception that removing sensitive attributes or improving model complexity automatically fixes bias, when in fact the data imbalance must be addressed first at the dataset level.

How to eliminate wrong answers

Option A is wrong because simply removing sensitive attributes does not eliminate bias; proxy variables (e.g., ZIP code, income) can still encode race or gender, and the model may still learn biased correlations from remaining features. Option B is wrong because ignoring the disparity violates ethical AI principles and regulatory expectations (e.g., FDA or HIPAA guidelines for healthcare models), and overall accuracy can mask significant harm to underrepresented groups. Option C is wrong because using more complex algorithms (e.g., deeper neural networks) does not fix biased training data; it may even amplify existing disparities by overfitting to the majority class patterns.

317
Multi-Selecthard

Refer to the exhibit. A Salesforce AI Associate is reviewing the AI model evaluation data. Which TWO ethical concerns should the associate identify?

Select 2 answers
A.The demographic parity difference of 0.12 indicates potential bias against a protected group.
B.The model accuracy of 0.95 is too low to be deployed in production.
C.The model was approved by a single individual, which violates the principle of diversity in AI oversight.
D.The disparate impact ratio of 0.85 falls below the acceptable threshold of 0.80, indicating adverse impact.
E.The audit trail shows that bias was detected but does not indicate what remedial actions were taken.
AnswersA, E

A difference of 0.12 is often considered above acceptable limits, raising fairness concerns.

Why this answer

Option B is correct because a demographic parity difference of 0.12 exceeds commonly accepted thresholds (e.g., 0.1), indicating potential bias. Option D is correct because the audit trail shows bias was detected but does not document specific remedial actions, which is a transparency concern. Option A is incorrect because 0.95 accuracy is typically acceptable.

Option C is incorrect because a disparate impact of 0.85 is above the 0.80 threshold, so it does not indicate adverse impact. Option E is incorrect while having a single approver may be noted, but it is not explicitly an ethical concern without context.

318
MCQhard

An insurance company uses an AI model to set auto insurance premiums. The model uses factors including driving history, age, and ZIP code. A regulator finds that premiums in certain low-income neighborhoods are significantly higher than in affluent neighborhoods with similar risk profiles. The company's actuaries argue that the model is actuarially sound because it accurately predicts claims based on historical data. The company wants to comply with ethical guidelines and avoid legal action. Which action should they take?

A.Defend the model based on its actuarial accuracy and historical claims data.
B.Incorporate a fairness constraint that requires similar premiums for similar risk profiles regardless of ZIP code.
C.Cap premium increases in low-income neighborhoods at a fixed percentage.
D.Remove ZIP code from the model inputs entirely.
AnswerB

This ensures fairness while preserving the model's ability to differentiate based on actual risk.

Why this answer

Option B is correct because introducing a fairness check ensures that similar risk levels result in similar premiums across neighborhoods, addressing ethical concerns without discarding valid risk factors. Option A ignores the issue. Option C removes a potentially relevant factor, but may reduce accuracy.

Option D is a band-aid that doesn't fix underlying bias.

319
Multi-Selectmedium

Which THREE actions align with Salesforce's responsible AI principles?

Select 3 answers
A.Involving diverse stakeholders in AI development.
B.Ensuring human oversight for critical decisions.
C.Continuously monitoring model performance for bias.
D.Using only internal data sources.
E.Prioritizing model accuracy over fairness.
AnswersA, B, C

Diverse perspectives help identify potential ethical issues.

Why this answer

Options A, C, and E are correct. Monitoring for bias (A) ensures ongoing fairness, involving diverse stakeholders (C) reduces blind spots, and human oversight (E) ensures accountability. Option B is wrong because restricting data sources may limit representativeness.

Option D is wrong because accuracy should not override fairness.

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

321
MCQmedium

A financial services firm deploys an Einstein AI chatbot that provides investment advice. A customer asks why a particular recommendation was made. The chatbot is unable to provide any reasoning. Which ethical principle is most directly violated?

A.Privacy
B.Reliability
C.Transparency
D.Human oversight
AnswerC

Transparency requires AI systems to provide explanations for their outputs.

Why this answer

The correct answer is B because the chatbot cannot explain its reasoning, violating transparency. Option A is wrong because privacy is not involved in explaining decisions. Option C is wrong because reliability is about accuracy, not explainability.

Option D is wrong because human oversight is about having humans in the loop, not about explaining decisions.

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

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

324
MCQeasy

A news outlet wants to build an AI model that predicts article popularity using real-time social media mentions. Which data source type should they use to ingest tweets?

A.Calculated Insight
B.Data Transform
C.Data Lake Object
D.Data Stream with Ingestion API connector
AnswerD

Enables real-time streaming from APIs.

Why this answer

Option A is correct because Data Stream with Ingestion API from Twitter allows real-time streaming. Option B is wrong because Data Lake Objects are for batch. Option C is wrong because Calculated Insights are for aggregates.

Option D is wrong because Data Transformations process existing data.

325
MCQhard

An AI system for hiring is deployed. After six months, the HR team notices that the model's recommendations closely mimic past human hires, which were biased. The team wants to correct this. What should be their first step?

A.Shut down the AI system entirely
B.Implement continuous monitoring and a feedback loop to detect and mitigate bias
C.Retrain the model with the same historical data but with more features
D.Make the model's decision process fully transparent to all candidates
AnswerB

Monitoring allows ongoing adjustment to ensure fairness.

Why this answer

Option B is correct: Continuous monitoring and feedback loops can detect and correct drift or bias. Option A is wrong because removing the model does not solve underlying bias. Option C is wrong because past data already contains bias.

Option D is wrong because complete transparency does not automatically correct bias.

326
MCQhard

An organization uses Einstein Discovery to analyze survey data. The model reveals a correlation between age and satisfaction. What is the responsible use of this insight?

A.Act on the correlation immediately
B.Investigate causality before action
C.Discard the result
D.Publish the result as-is
AnswerB

Correct. Investigation ensures decisions are based on sound reasoning.

Why this answer

Correlation does not imply causation; responsible use involves investigating the underlying cause before acting.

327
MCQhard

An admin notices that Einstein Opportunity Scoring is not generating scores for new opportunities created in the past week. Which troubleshooting step should the admin take first?

A.Retrain the Opportunity Scoring model
B.Verify that users have the 'View Einstein Scores' permission
C.Check that there are at least 50 won and 50 lost opportunities with populated fields
D.Wait 48 hours for the model to update
AnswerC

Einstein models require a minimum of 50 won and 50 lost records to generate scores.

Why this answer

Option C is correct because Einstein Opportunity Scoring requires a minimum of 50 won and 50 lost opportunities with populated fields to generate scores. Without this historical data, the model cannot learn patterns to score new opportunities. The admin should first verify this prerequisite before considering other steps.

Exam trap

Salesforce often tests the prerequisite data requirements for Einstein features, and the trap here is that candidates assume retraining or permissions are the issue, overlooking the minimum data threshold that must be met before scoring can begin.

How to eliminate wrong answers

Option A is wrong because retraining the model is not the first step; the issue is likely a lack of sufficient training data, not a model malfunction. Option B is wrong because the 'View Einstein Scores' permission controls visibility of scores, not the generation of scores; scores are generated regardless of user permissions. Option D is wrong because waiting 48 hours is unnecessary; the model updates daily, but the root cause is insufficient historical data, not a delay in processing.

328
MCQmedium

A company deployed an AI chatbot to handle customer service. The chatbot sometimes generates responses that are biased against certain demographics. The company wants to mitigate this. What is the best first step?

A.Restrict chatbot to only predefined responses.
B.Increase model complexity.
C.Remove all demographic data from training.
D.Conduct an AI ethics audit.
AnswerD

An ethics audit helps identify root causes and establish a mitigation plan.

Why this answer

Option B is correct because conducting an AI ethics audit helps identify the root cause of bias and establish a baseline for mitigation. Option A is wrong because simply removing demographic data may not eliminate bias and could lose important context. Option C is wrong because increasing model complexity often exacerbates bias.

Option D is wrong because restricting to predefined responses limits the chatbot's utility and doesn't address underlying bias.

329
MCQmedium

An AI Associate reviews the bot configuration and test results. Which action best addresses the ethical issue?

A.Increase the fallback threshold for all languages.
B.Collect more data from Spanish-speaking customers and retrain the English model.
C.Disable sentiment analysis for non-English conversations.
D.Add Spanish language support with separate sentiment model and intents.
AnswerD

This directly addresses the language gap.

Why this answer

The bot underperforms for Spanish speakers, so adding a Spanish sentiment model and intents would improve fairness. Option A does not fix the disparity. Option C may not solve the root cause.

Option D is about privacy, not the language issue.

330
MCQmedium

A company deploys an AI system that makes decisions about loan approvals. For transparency, what should they provide to applicants?

A.Explanation of factors considered
B.The training data
C.The full algorithm
D.Confidence scores
AnswerA

Correct. Providing the key factors used in the decision meets transparency requirements.

Why this answer

Option A is correct because transparency in AI-driven loan approvals requires providing applicants with an explanation of the factors considered in the decision, such as credit score, income, or debt-to-income ratio. This aligns with ethical AI principles like explainability and fairness, enabling applicants to understand and potentially contest the decision. Providing the full algorithm or training data would expose proprietary information and potentially violate data privacy regulations like GDPR.

Exam trap

Salesforce often tests the distinction between transparency (explaining the decision) and disclosure (revealing the model internals), trapping candidates who think providing the full algorithm or training data is necessary for transparency.

How to eliminate wrong answers

Option B is wrong because providing the training data would reveal sensitive personal information of other applicants, violate data privacy laws (e.g., GDPR, CCPA), and could introduce bias or security risks without helping the individual understand their specific decision. Option C is wrong because disclosing the full algorithm would expose proprietary intellectual property, enable gaming of the system, and is unnecessary for transparency—explainability focuses on decision factors, not code. Option D is wrong because confidence scores alone do not explain why a decision was made; they only indicate the model's certainty, which lacks the actionable reasoning required for transparency and regulatory compliance.

331
MCQeasy

A company wants to use Einstein Article Recommendations to surface relevant knowledge articles to its support agents. What two data components are required to set up this feature?

A.Email-to-case logs and Knowledge Article feedback
B.Knowledge Article View event data and Case records
C.Knowledge Article categories and Case priority
D.Community user activity and Knowledge Article ratings
AnswerB

Article views show which articles were read; Cases provide context for recommendations.

Why this answer

Einstein Article Recommendations uses historical Knowledge Article View event data to understand which articles agents have found useful in the past, and Case records to provide context about the current issue. By analyzing patterns between case attributes and article views, the AI can predict and surface the most relevant articles for a given case. Without both data components, the recommendation engine cannot learn the association between case details and article usefulness.

Exam trap

Salesforce often tests the distinction between optional enhancement data (like ratings or categories) and the mandatory data sources (view events and case records) required to train the recommendation model.

How to eliminate wrong answers

Option A is wrong because Email-to-case logs are used for email-to-case routing and parsing, not for training article recommendations, and Knowledge Article feedback is a secondary signal, not a required data component. Option C is wrong because Knowledge Article categories and Case priority are metadata fields that can influence recommendations but are not the two required data components; the feature specifically needs view event data and case records. Option D is wrong because Community user activity is unrelated to agent-facing article recommendations, and Knowledge Article ratings are optional feedback, not a core requirement.

332
MCQeasy

A company wants to use Einstein Reply Recommendations in Service Cloud. What data is required to train the model?

A.Knowledge articles only.
B.Email templates.
C.Case comments and chat transcripts.
D.Historical email replies and customer satisfaction ratings.
AnswerC

These capture actual agent-customer interactions used for training.

Why this answer

Einstein Reply Recommendations in Service Cloud uses historical service interactions to suggest relevant replies to agents. The model is trained on case comments and chat transcripts because these contain the natural language patterns and resolutions that agents actually use in real-time service conversations, enabling the AI to learn effective response strategies.

Exam trap

Salesforce often tests the misconception that Einstein Reply Recommendations uses Knowledge articles or email templates, when in fact it relies on unstructured service conversation data like case comments and chat transcripts to learn agent-specific reply patterns.

How to eliminate wrong answers

Option A is wrong because Knowledge articles are structured content used for knowledge-based answers, not the conversational reply patterns needed for Einstein Reply Recommendations. Option B is wrong because email templates are pre-written, static responses that lack the dynamic, contextual language variations found in actual service interactions. Option D is wrong because historical email replies and customer satisfaction ratings are not the primary training data; Einstein Reply Recommendations specifically requires case comments and chat transcripts to learn from direct agent-customer exchanges.

333
MCQeasy

A sales team uses Einstein Lead Scoring. They notice leads from certain industries are always low-scored. What should they do?

A.Retrain the model weekly
B.Ignore the scores
C.Use a different AI system
D.Review training data for bias
AnswerD

Bias in training data can cause unfair scoring across industries.

Why this answer

Option D is correct because low scores for specific industries often indicate bias in the training data, where historical lead data may have underrepresented or mislabeled those industries. Reviewing the training data for bias allows the team to identify and correct such imbalances, ensuring the Einstein Lead Scoring model produces fair and accurate predictions across all segments.

Exam trap

Salesforce often tests the misconception that retraining or replacing the AI system is the solution to bias, when in fact the root cause lies in the training data, not the model or its update frequency.

How to eliminate wrong answers

Option A is wrong because retraining the model weekly does not address the root cause of bias; if the training data itself is biased, more frequent retraining will only perpetuate the same skewed patterns. Option B is wrong because ignoring the scores defeats the purpose of using AI-driven lead scoring and can lead to missed opportunities or misallocated sales efforts. Option C is wrong because switching to a different AI system does not guarantee unbiased scoring; without addressing the underlying data bias, any model trained on the same flawed data will exhibit similar issues.

334
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

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

335
MCQmedium

A manufacturer wants to improve demand forecasting by enriching its CRM orders with external demographic data. The external data is available via a SOAP API. How should the data architect implement this?

A.Configure a Data Action to call the API on a schedule or trigger
B.Use a Data Transform to pull the external data
C.Set up a Data Stream to continuously ingest the external API
D.Create a Calculated Insight to reference the API
AnswerA

Data Actions are built for external API integration.

Why this answer

Option D is correct because a Data Action can call an external API and store the response. Option A is wrong because Data Transform only works on data already in Data Cloud. Option B is wrong because Data Streams are for continuous ingest, not on-demand enrichment.

Option C is wrong because a Calculated Insight cannot fetch external data.

336
MCQmedium

A telecom company uses Einstein Discovery to predict customer churn. The training dataset contains 100,000 records, but only 5% represent churned customers. The model achieves 95% accuracy on a holdout test set, but the recall for churn is only 20%. The business wants to proactively retain at-risk customers, so they need to identify as many churners as possible. What action should the data scientist take to improve churn recall?

A.Increase the regularization parameter to prevent overfitting.
B.Collect more data, especially of churned customers.
C.Oversample the minority class using SMOTE to create synthetic churn examples.
D.Undersample the majority class to match the minority class size.
AnswerC

SMOTE generates synthetic instances of the minority class, balancing the dataset and improving recall without losing information.

Why this answer

Class imbalance causes the model to favor the majority class. Oversampling the minority class (e.g., using SMOTE) balances the dataset, helping the model learn churn patterns better and improve recall.

337
Multi-Selectmedium

Which TWO are best practices for data labeling in AI projects? (Choose two.)

Select 2 answers
A.Have multiple labelers cross-check annotations
B.Label all available data immediately
C.Label only training data
D.Use automated labeling tools exclusively
E.Use clear labeling guidelines
AnswersA, E

Cross-checking improves label accuracy.

Why this answer

Options B and D are correct. Multiple labelers cross-checking reduces errors, and clear guidelines ensure consistency. Option A is wrong because relying solely on automated tools can introduce inaccuracies.

Option C is wrong because labeling all data immediately may not be feasible or prioritize quality. Option E is wrong because labeling only training data ignores validation/testing needs.

338
MCQmedium

A data scientist is building a model for credit scoring. They have access to a dataset with historical bias. What should they do?

A.Apply fairness constraints during training.
B.Discard all biased variables.
C.Use the data as is because it reflects reality.
D.Use a more complex model to reduce bias.
AnswerA

Helps mitigate bias.

Why this answer

Option B is correct because applying fairness constraints during training helps mitigate bias. Option A is wrong using biased data as is perpetuates bias. Option C is wrong discarding all biased variables may remove useful information and doesn't guarantee fairness.

Option D is wrong increasing model complexity can amplify bias.

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

340
MCQhard

You are a Salesforce AI Specialist at a mid-sized manufacturing company. The company uses Einstein Lead Scoring to prioritize leads. The model was trained on historical lead data and has been in production for three months. Recently, the sales team reports that high-scoring leads are not converting as expected. You investigate and find that the model's data source includes leads from the past 18 months. However, six months ago, the company changed its lead qualification process: they started requiring a demo before scoring leads as 'qualified.' As a result, the definition of a converted lead changed. What is the best course of action to improve model performance?

A.Manually adjust the model's prediction threshold to account for the new process
B.Retrain the model using only leads from the last six months after the process change
C.Remove the 'Demo Scheduled' field from the model to avoid bias
D.Add more historical leads from before the process change to increase data volume
AnswerB

This ensures the model learns from data that reflects the current conversion criteria.

Why this answer

Option B is correct because the change in lead qualification process six months ago introduced a data distribution shift (concept drift), making older leads no longer representative of the current conversion behavior. Retraining the model on only the last six months of data aligns the training set with the new definition of a 'converted lead,' allowing Einstein Lead Scoring to learn the updated patterns and improve prediction accuracy.

Exam trap

The trap here is that candidates may think adjusting the threshold (Option A) is sufficient, but they fail to recognize that a change in the definition of the target variable requires retraining on a representative dataset, not just tuning a post-processing parameter.

How to eliminate wrong answers

Option A is wrong because manually adjusting the prediction threshold does not address the underlying change in the definition of a converted lead; it only shifts the cutoff for scoring, which cannot compensate for a fundamentally different target variable. Option C is wrong because removing the 'Demo Scheduled' field does not solve the problem—the issue is the change in the conversion definition, not bias from that field; in fact, the field may now be more predictive under the new process. Option D is wrong because adding more historical leads from before the process change would exacerbate the data mismatch, as those leads follow the old qualification rules and would dilute the model's ability to learn the current conversion patterns.

341
MCQhard

An AI system for medical diagnosis is trained on data from one region. When deployed globally, it performs poorly. This is an issue of?

A.Accountability
B.Overfitting
C.Privacy violation
D.Generalizability
AnswerD

Lack of generalizability means the model fails on data from different distributions.

Why this answer

Option B is correct because poor generalization across regions indicates the model is not generalizable. Option A is wrong overfitting would cause poor performance on new data within the same region. Option C is wrong privacy relates to data protection, not performance.

Option D is wrong accountability is about responsibility, not technical limitation.

342
MCQmedium

A data scientist needs to feed customer interaction data into Einstein Discovery for predictive analysis. Which data format is required?

A.CSV
B.XML
C.Parquet
D.JSON
AnswerA

CSV is the required format for Einstein Discovery.

Why this answer

Option C is correct because Einstein Discovery typically requires data in CSV format. Option A is wrong because JSON is not the standard input format for Einstein Discovery. Option B is wrong because XML is not commonly used.

Option D is wrong because Parquet is a columnar storage format not directly supported.

343
Multi-Selecteasy

Which TWO of the following are required for GDPR compliance when using AI with personal data?

Select 2 answers
A.Storing data indefinitely for future AI training
B.Obtaining explicit consent from users before processing their data
C.Selling user data to third parties for AI model improvement
D.Providing users the ability to request deletion of their data
E.Processing data without informing users
AnswersB, D

Consent is a lawful basis for processing under GDPR.

Why this answer

Options A and C are correct: Obtaining explicit consent and enabling data deletion (right to erasure) are GDPR requirements. Option B (Storing data indefinitely) violates storage limitation. Option D (Selling data without permission) is illegal.

Option E (Processing data without consent) is not allowed.

344
Multi-Selecthard

Which THREE are key dimensions of data quality that directly impact AI model performance?

Select 3 answers
A.Consistency.
B.Timeliness.
C.Accuracy.
D.Data volume.
E.Completeness.
AnswersA, C, E

Inconsistent data (e.g., different formats) confuses models and degrades accuracy.

Why this answer

Consistency is a key dimension of data quality because AI models rely on stable patterns in the data. If the same entity is represented differently across records (e.g., 'NY' vs 'New York'), the model may learn incorrect correlations, leading to degraded prediction accuracy and unreliable outputs.

Exam trap

Salesforce often tests the distinction between data quality dimensions and data quantity metrics, so candidates mistakenly select 'data volume' thinking more data always improves AI performance, when in fact the exam focuses on accuracy, completeness, and consistency as the three critical quality dimensions.

345
MCQmedium

A company uses Einstein Lead Scoring and finds that leads with high scores are not converting. What should the admin do to improve prediction accuracy?

A.Increase the scoring model's maximum score
B.Retrain the model with more recent conversion data
C.Disable field-level security for scoring fields
D.Lower the lead conversion threshold
AnswerB

Retraining with current data improves the model's relevance.

Why this answer

Option B is correct because retraining the model with more recent conversion data allows the Einstein Lead Scoring model to adapt to changing patterns in lead behavior and conversion criteria. When high-scoring leads fail to convert, it indicates that the historical data used to train the model no longer reflects current conversion dynamics, so refreshing the training dataset improves prediction accuracy by aligning the model with recent outcomes.

Exam trap

Salesforce often tests the misconception that adjusting score thresholds or model parameters can fix accuracy issues, when the real solution is to refresh the training data to reflect current conversion patterns.

How to eliminate wrong answers

Option A is wrong because increasing the maximum score does not address the underlying data mismatch; it merely scales the output range without improving the model's ability to distinguish converters from non-converters. Option C is wrong because disabling field-level security for scoring fields would expose sensitive data and violate Salesforce security best practices, and it does not affect the model's training data or prediction logic. Option D is wrong because lowering the lead conversion threshold artificially inflates conversion rates without fixing the model's accuracy; it treats the symptom (low conversion) rather than the cause (stale training data).

346
MCQhard

Refer to the exhibit. A company configures a Prompt Builder policy for Einstein GPT. What is the primary role of the 'checkPromptOutput' flag?

A.To log all prompts for audit purposes.
B.To scan the generated text against the banned words list.
C.To limit the total number of tokens in the generated response.
D.To send the output to a human reviewer before sending.
AnswerB

checkPromptOutput likely enables content scanning.

Why this answer

The 'checkPromptOutput' flag in a Prompt Builder policy for Einstein GPT is specifically designed to scan the generated text against a banned words list. This ensures that the AI output does not contain prohibited or sensitive terms, aligning with ethical and compliance requirements. It is a content filtering mechanism, not a logging, token-limiting, or human-review function.

Exam trap

The trap here is that candidates often confuse content filtering (banned words scanning) with broader safety mechanisms like logging, token limits, or human review, because all are related to output control but serve distinct purposes.

How to eliminate wrong answers

Option A is wrong because logging prompts for audit purposes is typically handled by separate audit trail or logging configurations, not the 'checkPromptOutput' flag which focuses on real-time content scanning. Option C is wrong because limiting the total number of tokens in the generated response is controlled by token limit parameters or max tokens settings, not by a flag that checks for banned words. Option D is wrong because sending output to a human reviewer before sending is a human-in-the-loop workflow, often managed by approval policies or review queues, not by the 'checkPromptOutput' flag which automates filtering without human intervention.

347
MCQhard

A data architect is designing a data model for Einstein Discovery. The data includes categorical variables with high cardinality (e.g., postal codes). What is the best practice to handle such features?

A.Encode them as one-hot vectors.
B.Exclude them from the model.
C.Use the raw values without transformation.
D.Group them into higher-level categories (e.g., region).
AnswerD

Reduces cardinality while preserving signal.

Why this answer

Grouping high-cardinality categories into broader categories reduces overfitting and improves model stability.

348
Multi-Selectmedium

A Salesforce admin is configuring Einstein Next Best Action. Which TWO actions demonstrate ethical AI practices? (Choose two.)

Select 2 answers
A.Allow the AI to automatically take actions without human approval for all recommendations
B.Use the same recommendation for all customers to ensure fairness
C.Keep the AI's reasoning hidden from business users to avoid confusion
D.Regularly review recommendation logs for patterns of bias or unfair treatment
E.Set up human review for recommendations that involve sensitive decisions about customers
AnswersD, E

Ongoing monitoring detects bias.

Why this answer

Option B (Set up human review for recommendations that involve sensitive decisions) is correct for accountability. Option D (Regularly review recommendation logs for patterns of bias) is correct for monitoring. Option A (Allow the AI to act autonomously without human approval) reduces accountability.

Option C (Use the same recommendation for all customers) ignores personalization ethics. Option E (Hide the AI's reasoning from business users) violates transparency.

349
MCQmedium

A company has deployed an AI-powered chatbot to handle customer service inquiries. The chatbot is designed to answer frequently asked questions and escalate complex issues to human agents. Which action best aligns with ethical AI principles regarding transparency?

A.Configure the chatbot to answer all queries without human intervention to maximize efficiency.
B.Use historical customer interaction data without auditing for bias to train the chatbot's responses.
C.Program the chatbot to identify itself as a human agent to build trust with customers.
D.Clearly disclose that the chatbot is an AI and provide an option for customers to switch to a human agent.
AnswerD

This ensures transparency by informing customers of the AI nature and respecting user autonomy with an opt-in for human assistance.

Why this answer

Option C is correct because transparency requires disclosing that the interaction is with an AI and allowing customers to opt for human assistance. Option A is wrong because it may not be feasible or ethical to force the chatbot to handle all queries. Option B is wrong because misrepresenting the AI as human is deceptive.

Option D is wrong because ignoring bias in training data is unethical.

350
Multi-Selecthard

Which TWO considerations are critical when planning data labeling for a computer vision project in a regulated industry?

Select 2 answers
A.Data storage location for label files
B.Mitigating labeler bias to ensure fairness
C.Compliance with data privacy regulations (e.g., GDPR)
D.Labeling timeline and budget constraints
E.Choosing between bounding boxes and segmentation masks
AnswersB, C

Bias can affect model fairness and regulatory requirements.

Why this answer

Option B is correct because labeler bias can introduce systematic errors into the training data, leading to models that perform unfairly or inaccurately across different demographic groups. In regulated industries, such bias can violate anti-discrimination laws and regulatory standards, making its mitigation a critical planning consideration.

Exam trap

Salesforce often tests the distinction between operational details (like storage location or annotation type) and critical regulatory or ethical considerations, leading candidates to choose technically valid but non-critical options like A or E.

351
MCQeasy

A sales team uses an AI tool to recommend products to customers. The tool recommends high-commission products over what best fits the customer. Which ethical principle is being violated?

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

Recommending based on commission rather than customer need is unfair.

Why this answer

Option B is correct because fairness requires that recommendations benefit the customer, not just the seller. Option A is wrong as transparency is about openness, not directly violated here. Option C is wrong because accountability involves responsibility, which may also be an issue but fairness is primary.

Option D is wrong because privacy is about data protection.

352
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

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

353
MCQeasy

A Salesforce developer is building an AI model to predict customer churn. What is the most important ethical consideration when collecting training data?

A.Include as many features as possible
B.Focus on data from the last month for relevance
C.Collect only data that is necessary for the prediction
D.Use as much historical data as possible
AnswerC

Minimizing data collection protects customer privacy and reduces ethical risks.

Why this answer

The correct answer is B because data privacy is critical; collecting only necessary data minimizes risk. Option A is wrong because historical data can contain bias. Option C is wrong because older data may be less relevant.

Option D is wrong because more features can increase privacy risks and complexity.

354
MCQhard

A company uses Einstein's predictive lead scoring. The model inadvertently overweights leads from certain geographic regions. Which action aligns with Salesforce's Responsible AI principles?

A.Implement a feedback loop to continuously monitor and adjust.
B.Remove the geographic feature from the model.
C.Use the model as-is because it improves overall accuracy.
D.Only use the model for regions where it performs well.
AnswerA

Continuous monitoring allows ongoing bias detection and correction.

Why this answer

Option B is correct because continuous monitoring and adjustment is a key component of responsible AI. Option A is wrong because simply removing the geographic feature may not eliminate proxy variables. Option C is wrong because ignoring bias is unethical.

Option D is wrong because restricting usage may cause inequity.

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

356
MCQhard

A financial institution deploys an AI system to recommend investment portfolios to retail clients. The system uses reinforcement learning to maximize returns based on client risk profiles. After six months, an internal audit reveals that the system has been consistently recommending high-risk, high-commission products to elderly clients with low risk tolerance, resulting in significant financial losses for those clients. The system's training data included historical transactions, which showed that elderly clients were less likely to complain or switch advisors. The institution's AI ethics policy mandates fairness, transparency, and accountability. The system currently provides no explanations for its recommendations, and there is no human oversight process. The compliance team needs to remediate the situation. Which course of action BEST addresses the ethical violations?

A.Disable the AI system and revert to manual portfolio management.
B.Add a disclaimer to all recommendations stating that past performance does not guarantee future results.
C.Adjust the model to lower the risk threshold for all clients.
D.Retrain the model on a balanced dataset, implement explainability features, and require human approval for high-risk recommendations to elderly clients.
AnswerD

This addresses bias, transparency, and accountability.

Why this answer

Option D is correct because it directly addresses the root cause of the ethical violations: biased training data (historical transactions where elderly clients were less likely to complain) and lack of transparency. Retraining on a balanced dataset mitigates the reinforcement learning model's exploitation of that bias, while explainability features (e.g., SHAP values or LIME) and human-in-the-loop approval for high-risk recommendations ensure accountability and fairness as mandated by the AI ethics policy.

Exam trap

Salesforce often tests the misconception that a single technical fix (like lowering risk thresholds or adding disclaimers) is sufficient to resolve ethical violations, when in fact a multi-pronged approach addressing data bias, transparency, and human oversight is required.

How to eliminate wrong answers

Option A is wrong because disabling the AI system and reverting to manual management is a reactive, non-scalable solution that does not address the underlying bias or provide a path to compliant AI deployment; it also ignores the potential benefits of AI when properly governed. Option B is wrong because adding a disclaimer does not fix the biased recommendations or lack of transparency; it merely shifts legal liability without correcting the model's unethical behavior or providing explanations. Option C is wrong because lowering the risk threshold for all clients is a blunt, one-size-fits-all approach that disregards individual risk profiles and may still result in inappropriate recommendations for elderly clients with low risk tolerance; it does not address the training data bias or the need for explainability and human oversight.

357
Multi-Selecthard

Which TWO are best practices for mitigating bias in AI models when using Salesforce Einstein? (Choose two.)

Select 2 answers
A.Use diverse and representative training data that reflects the target population.
B.Exclude demographic features that have small sample sizes to avoid statistical noise.
C.Prioritize accuracy for the majority group to maximize overall performance.
D.Rely on convenience sampling to quickly gather a large dataset.
E.Conduct regular bias audits using Einstein's fairness evaluation tools.
AnswersA, E

Diverse data reduces the risk of biased outcomes.

Why this answer

Options A and D are correct. Option B is wrong because convenience sampling can introduce bias. Option C is wrong because ignoring small groups can perpetuate bias.

Option E is wrong because focusing only on high-accuracy groups may sacrifice fairness.

358
MCQhard

A financial services firm uses Data Cloud to enrich sales data with external credit scores via an API. They set up a Data Action to call the credit bureau API for each new lead. Over time, API costs are rising, and the action is slowing down lead processing. They only need credit scores for leads with a high probability of conversion. What is the best approach to reduce costs and improve performance?

A.Remove the Data Action and manually verify credit scores for top leads
B.Apply a Data Transform to filter leads that have incomplete data before the Data Action
C.Schedule the Data Action to run daily in batch instead of real-time
D.Use a Calculated Insight to score leads based on internal data and only invoke the Data Action for leads with a high probability of conversion
AnswerD

Selectively calls API only for promising leads, reducing costs and load.

Why this answer

Option C is the best solution because it uses a Calculated Insight to compute a conversion probability score based on internal data, then only triggers the Data Action for leads above a threshold. This reduces API calls significantly. Option A filters but still requires an initial call? Actually, a Data Transform filter could be applied before the Data Action, but a Calculated Insight allows dynamic scoring.

Option B runs the action in batch, but still calls for all leads. Option D removes the action entirely, losing the enrichment.

359
MCQeasy

When implementing AI in Salesforce, which practice best supports the ethical principle of transparency?

A.Provide human-readable explanations for each AI prediction
B.Use proprietary algorithms without disclosing their logic
C.Deploy a complex neural network model without interpretability features
D.Only report overall model accuracy metrics to end users
AnswerA

Explanations enable understanding and trust.

Why this answer

Transparency requires that the logic and outcomes of AI systems are understandable. Option A is correct because providing explanations for predictions allows users to understand and trust the AI. Option B (keeping proprietary algorithms secret) hinders transparency.

Option C (using complex models without explanation) obscures decision-making. Option D (only reporting accuracy metrics) does not explain specific decisions.

360
Multi-Selecteasy

Which THREE of the following are Einstein features available for Sales Cloud? (Choose three.)

Select 3 answers
A.Einstein Lead Scoring
B.Einstein Opportunity Scoring
C.Einstein Activity Capture
D.Einstein Bot
E.Einstein Analytics
AnswersA, B, C

Predicts lead conversion.

Why this answer

Einstein Lead Scoring is a correct Einstein feature for Sales Cloud because it uses predictive AI models to automatically score leads based on historical conversion data, helping sales reps prioritize high-quality leads. It is natively integrated into Sales Cloud without requiring additional licenses or complex setup, leveraging standard Salesforce objects and fields.

Exam trap

Salesforce often tests candidates' ability to distinguish between Einstein features that are native to Sales Cloud (like scoring and activity capture) versus those that are cross-cloud or require separate licenses (like Einstein Bot or Einstein Analytics), leading to confusion when options include features that are technically available but not part of the core Sales Cloud Einstein set.

361
MCQmedium

A financial services company uses Einstein AI to recommend credit limits. The model tends to assign lower limits to applicants from a certain region. Which action best aligns with ethical AI practices?

A.Replace the AI model with a simpler rule-based system
B.Investigate the data and model for bias, and adjust the model if necessary
C.Manually increase credit limits for all applicants from that region
D.Ignore the pattern since the model is statistically valid
AnswerB

Investigation and adjustment is the correct ethical approach.

Why this answer

Option A (Investigate the data and model for bias, and adjust the model if necessary) is correct because ethical AI requires proactive identification and mitigation of bias. Option B (ignoring the pattern) could allow discrimination. Option C (increasing limits for that region without analysis) may not be justified.

Option D (using a different AI model without investigation) does not address the root cause.

362
MCQmedium

A data engineer needs to create a feature that represents the average purchase amount per customer over the last 30 days. The transactional data is timestamped. Which feature engineering technique is most appropriate?

A.Sum of all purchase amounts per customer
B.Rolling average of purchase amounts over a 30-day window
C.Count of purchases per customer
D.Minimum purchase amount per customer
AnswerB

Rolling average matches the requirement.

Why this answer

Option B is correct because a rolling average over a 30-day window directly computes the average purchase amount per customer for only the most recent 30 days of transactions, which matches the requirement of a time-sensitive feature. This technique uses a sliding window function (e.g., AVG() with a ROWS or RANGE frame in SQL, or rolling().mean() in pandas) that respects the timestamp order, ensuring only relevant data contributes to the feature.

Exam trap

Salesforce often tests the distinction between simple aggregation (like sum or count) and time-windowed aggregation, trapping candidates who overlook the 'over the last 30 days' temporal constraint and choose a static aggregate instead.

How to eliminate wrong answers

Option A is wrong because summing all purchase amounts per customer ignores the 30-day time constraint and would include historical data outside the window, producing a feature that does not reflect recent behavior. Option C is wrong because counting purchases per customer measures frequency, not the average amount spent, and also lacks the time window restriction. Option D is wrong because the minimum purchase amount per customer is a different aggregate (minimum) that does not capture the central tendency of spending and similarly ignores the 30-day window.

363
MCQeasy

A company uses an AI model to screen job applicants. They discover the model is rejecting candidates from a certain demographic at a higher rate. Which ethical principle is most clearly violated?

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

Correct. The model's bias against a demographic violates fairness.

Why this answer

Fairness requires that AI systems do not discriminate against groups. The model's disparate impact violates fairness.

364
MCQmedium

A university uses an AI system to predict first-year student retention. The system uses factors such as high school GPA, SAT scores, and socioeconomic indicators. After two years, administrators notice that the model consistently predicts lower retention probabilities for students from low-income families, even when their academic profiles are strong. The university's mission emphasizes equity and inclusion. The admissions office is considering using the predictions to allocate support resources. The model's accuracy on historical data is 85%. What should the university do to align with ethical AI principles?

A.Remove socioeconomic indicators from the model inputs.
B.Abandon the AI system and rely on human advisors for resource allocation.
C.Retrain the model with a fairness constraint such as equalized odds to reduce income-based disparities.
D.Use the predictions as-is because they are accurate for the majority of students.
AnswerC

Fairness constraints directly address the ethical concern while maintaining predictive power.

Why this answer

Option B is correct because implementing a fairness metric like equal opportunity ensures the model does not disadvantage a protected group. Option A would perpetuate inequity. Option C removes a feature that may still allow bias through correlated variables.

Option D abandons a potentially useful tool without addressing bias.

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

366
MCQmedium

Refer to the exhibit. Which ethical principle is most at risk based on this AI governance configuration?

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

Lack of human override and explanation reduces accountability.

Why this answer

The configuration lacks human override and does not require explanations, which undermines accountability. Option C (Accountability) is correct. Option A (Fairness) is not directly addressed but audit trail may help.

Option B (Privacy) is not mentioned. Option D (Transparency) is partially addressed by audit trail but not explanation. The absence of human override is a key accountability gap.

367
MCQeasy

A company is preparing data for Einstein Article Recommendation. Which data source is most appropriate for training the model?

A.Historical article view and click data.
B.Org metadata.
C.System debug logs.
D.User profile data only.
AnswerA

This captures user preferences directly.

Why this answer

Einstein Article Recommendation uses supervised machine learning to predict which articles users are likely to find relevant. The model must be trained on historical user engagement signals—specifically article view and click data—to learn patterns of relevance. Without this behavioral data, the model cannot establish a correlation between user actions and article content.

Exam trap

Salesforce often tests the misconception that static data like user profiles or org metadata can substitute for behavioral training data, but the model fundamentally requires historical interaction signals to learn relevance.

How to eliminate wrong answers

Option B is wrong because org metadata (e.g., company name, industry) provides only static contextual information and lacks the user-article interaction signals required for training a recommendation model. Option C is wrong because system debug logs contain low-level technical events (e.g., errors, stack traces) that are irrelevant to user content preferences and would introduce noise rather than meaningful training features. Option D is wrong because user profile data alone (e.g., role, department) does not capture which articles users actually viewed or clicked, so the model cannot learn relevance from user behavior.

368
MCQhard

A retail company deploys an AI system that adjusts prices dynamically based on customer browsing history. The system charges higher prices to returning customers. This practice is known as:

A.Lack of transparency
B.Unfair price discrimination
C.Personalization
D.Dynamic pricing
AnswerB

Charging loyal customers more is unfair and unethical.

Why this answer

Option D is correct because price discrimination based on customer data is unfair and often unethical. Option A is wrong because personalization is about tailoring experience, not price gouging. Option B is wrong as dynamic pricing is legal but can be unethical.

Option C is wrong because transparency issue is secondary.

369
MCQhard

An AI Associate reviews the Lead Scoring model exhibit. What is the primary ethical concern with this model?

A.The model uses too many features.
B.The model has low recall, potentially missing minority class leads.
C.The model is not explainable.
D.The training data is imbalanced.
AnswerB

Low recall can lead to underrepresentation of certain groups.

Why this answer

The primary ethical concern is that the model has low recall, meaning it fails to identify a significant portion of actual positive leads (the minority class). In a lead scoring context, this can result in missed business opportunities and potential bias against certain customer segments, as the model systematically overlooks valuable leads that do not fit the majority pattern.

Exam trap

Salesforce often tests the distinction between a technical problem (like imbalanced data) and its ethical consequence (like low recall causing unfair outcomes), so candidates mistakenly pick the technical cause (D) instead of the ethical impact (B).

How to eliminate wrong answers

Option A is wrong because using many features is not inherently an ethical concern; feature selection impacts performance and overfitting, but the ethical issue here is about fairness and missed opportunities, not feature count. Option C is wrong because the exhibit does not indicate a lack of explainability; the model could be a decision tree or logistic regression that is inherently interpretable, and explainability is not the primary ethical issue raised by the confusion matrix. Option D is wrong because imbalanced training data is a technical challenge that can lead to low recall, but the primary ethical concern is the consequence of that imbalance—specifically the model's low recall causing minority class leads to be missed—not the imbalance itself.

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

371
MCQeasy

A retail company uses an AI recommendation engine to suggest products to online shoppers. The engine uses past purchase history and browsing behavior. Recently, a customer advocacy group publishes a report showing that the engine recommends higher-priced products to customers in affluent zip codes and lower-priced products to customers in lower-income areas, even when both groups have similar browsing histories. The company's revenue has increased since implementing the engine, and marketing teams are pleased. However, the company wants to maintain a reputation for fairness. Which action should the company take?

A.Show only the most popular products to all customers regardless of browsing history.
B.Discontinue the AI recommendation system entirely.
C.Keep the current system as it maximizes revenue.
D.Implement fairness constraints to ensure similar recommendation distributions across demographic groups.
AnswerD

Fairness constraints balance business goals with ethical considerations, maintaining personalization while avoiding bias.

Why this answer

Option B is correct because implementing fairness constraints ensures recommendations are not systematically skewed, while still allowing personalization. Option A prioritizes revenue over ethics. Option C is too drastic and would lose benefits.

Option D reduces personalization and may not be effective.

372
MCQhard

A financial services firm deployed an AI model to automate loan approvals. The model was trained on historical loan data from the past 10 years, which shows that applicants from certain zip codes have higher default rates. After six months, the company's compliance team receives complaints that applicants from predominantly low-income neighborhoods are being rejected at a much higher rate than applicants from affluent areas, even when their financial profiles are similar. The model's overall accuracy remains high (95%), and the loan default rate has decreased by 15% since deployment. The company wants to address the ethical concerns without sacrificing performance. Which course of action should the company take?

A.Remove the zip code feature from the model inputs.
B.Retrain the model with a balanced dataset that includes more examples from underrepresented neighborhoods and enforce fairness constraints.
C.Adjust the approval threshold lower only for applicants from low-income neighborhoods.
D.Continue using the existing model since it has high accuracy and reduces defaults.
AnswerB

Balanced data reduces bias and fairness constraints ensure equitable treatment, aligning with ethical AI principles.

Why this answer

Option B is correct because retraining with balanced data mitigates the representation bias, addressing the root cause. Option A ignores the fairness issue. Option C removes a feature that may be a proxy for other factors, but it may not eliminate bias if other correlated features remain.

Option D adjusts thresholds only for some groups, which could be considered unfair and may not be accepted by regulators.

373
MCQeasy

Refer to the exhibit. Which ethical principle is most directly violated?

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

PII leakage violates privacy.

Why this answer

Option B is correct because PII leakage violates privacy. Option A is wrong fairness is about bias. Option C is wrong transparency is about openness.

Option D is wrong accountability is about responsibility, but the immediate violation is privacy.

374
MCQhard

A social media platform uses an AI model to automatically detect and remove hate speech. The model uses natural language processing and was trained on public posts. Recently, an internal audit reveals that the model removes posts from minority ethnic groups at a rate 3 times higher than from majority groups, even when the content is similar. The model achieves high precision and recall on the test set. The platform's content moderation team is overwhelmed with appeals. The company wants to maintain a safe environment while being fair. Which approach best addresses both goals?

A.Disable the AI moderation and rely solely on user reports.
B.Conduct an audit of the training data to identify gaps, then retrain with more representative data including diverse examples of hate speech and non-hate speech.
C.Add more human moderators to review all flagged content from minority groups.
D.Adjust the detection threshold only for minority group posts to reduce flags.
AnswerB

This tackles the root cause of bias: underrepresentation of certain groups in training data leads to over-sensitivity.

Why this answer

Option B is correct because a comprehensive audit and retraining with diverse data addresses the bias at the root. Option A gives special treatment that could be seen as unfair. Option C removes moderation, risking harmful content.

Option D does not solve the underlying bias.

375
MCQeasy

A company is deploying an AI-powered chatbot to handle customer service inquiries. The bot uses historical chat data for training. Which ethical consideration is MOST important to address before deployment?

A.Maximizing the chatbot's response accuracy
B.Obtaining consent from customers whose data is used for training
C.Ensuring the chatbot can handle high traffic volumes
D.Designing a human handoff protocol for complex issues
AnswerB

Using customer data requires informed consent and adherence to privacy laws.

Why this answer

The most critical ethical consideration is obtaining consent from customers whose historical chat data is used to train the chatbot. Under regulations like GDPR and CCPA, personal data (including chat transcripts) requires explicit consent for processing, especially when used to train an AI model. Deploying without consent violates data privacy laws and erodes user trust, regardless of the chatbot's technical performance.

Exam trap

Salesforce often tests the distinction between ethical obligations (like consent) and technical or operational features (like accuracy or scalability), leading candidates to confuse a performance metric with a compliance requirement.

How to eliminate wrong answers

Option A is wrong because maximizing response accuracy is a performance goal, not an ethical consideration; it does not address the legal and moral requirement for data consent. Option C is wrong because ensuring high traffic handling is a scalability and infrastructure concern, unrelated to the ethical principle of data privacy and consent. Option D is wrong because designing a human handoff protocol is a user experience and operational safety measure, not the primary ethical issue; it does not resolve the fundamental need for consent before using customer data for training.

Page 4

Page 5 of 7

Page 6

All pages

Practice AI Associate by domain

Target a specific domain to shore up weak areas.

See all domains with question counts →