Salesforce
PDI · Question #225
Which statement generates a list of Leads and Contacts that have a field with the phrase 'ACME'?
Sign in or unlock PDI to reveal the answer and full explanation for question #225. The question stem and answer options stay visible for context.
Submitted by klara.se· Apr 18, 2026Salesforce Fundamentals
Question
Which statement generates a list of Leads and Contacts that have a field with the phrase 'ACME'?
Options
- AList<List <sObject>> searchList = [SELECT Name, ID FROM Contact, Lead WHERE Name like
- BList<List <sObject>> searchList = [FIND 'ACME" IN ALL FIELDS RETURNING Contact, Lead];
- CMap <sObject> searchList = [FIND 'ACME' IN ALL FIELDS RETURNING Contact, Lead];
- DList <sObject> searchList = [FIND 'ACME' IN ALL FIELDS RETURNING Contact, Lead];
Unlock PDI to see the answer
You've previewed enough free PDI questions. Unlock PDI for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.
Topics
#SOSL#Apex Query Language#Data Retrieval#Search