AI Associate AI Capabilities in CRM • Complete Question Bank
Complete AI Associate AI Capabilities in CRM question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
```
{
"einsteinServices": {
"leadScoring": {
"enabled": true,
"modelName": "Lead Score Model V2",
"scoringFields": ["AnnualRevenue", "Industry", "NumberOfEmployees", "LeadSource"],
"retrainingFrequency": "WEEKLY",
"lastRetrained": "2025-01-15"
},
"opportunityScoring": {
"enabled": false,
"modelName": "Default",
"scoringFields": ["Amount", "Type", "StageName", "CloseDate"],
"retrainingFrequency": "DAILY",
"lastRetrained": "2025-01-20"
}
}
}
```{
"predictionField": "Lead_Score__c",
"predictionType": "BinaryClassification",
"targetObject": "Lead",
"recordCount": 450,
"modelStatus": "Active"
}Error: Lead Scoring is not available. Reason: Insufficient data. Minimum required: 100 leads with activities. Current count: 87.
Apex Trigger:
trigger LeadScoringTrigger on Lead (after insert) {
for(Lead l : Trigger.new) {
l.Score__c = Einstein_Prediction_API.predict('Lead_Score', l.Id);
}
}{
"predictionDefinition": {
"type": "Einstein Prediction Builder",
"targetObject": "Case",
"predictedField": "Status",
"outcome": "Closed within 24 hours",
"trainingRecords": 500,
"fieldsUsed": ["Subject", "Description", "Priority", "Origin", "Type"],
"modelAccuracy": 72%,
"lastTrainingDate": "2024-01-15"
}
}C:\> sfdx force:data:soql:query -q "SELECT Id, Score__c FROM Lead WHERE CreatedDate = TODAY" Rows: 2000 Time: 4.2s C:\> sfdx force:data:soql:query -q "SELECT Id, Score__c FROM Lead WHERE CreatedDate = LAST_N_DAYS:30" Rows: 45000 Time: 28.7s
Universal Containers (UC) uses Einstein Lead Scoring to prioritize leads. They have 500,000 leads in the system. Recently, the model scores have been inconsistent: some leads with low activity receive high scores, while active leads score low. The model was trained 3 months ago. UC updates lead records daily via an external system, but the data is often incomplete (e.g., missing company size). Support has reported slow performance on lead views. The admin notices that the 'Data Refresh Status' for Einstein Lead Scoring shows 'Pending' for 2 weeks. UC wants to improve model accuracy and performance.
Which action should the admin take first?