This question runs in a pre-configured Salesforce environment - no personal connection required.
Query all Contact records where the Title field is not null. Return a list of their record IDs. If no contacts have a Title, return an empty list.
Examples:
Input: (no parameters - queries org data)
Output: List of Contact IDs where Title != null
Explanation: Returns IDs of all contacts that have a Title field populated
Example with data:
Contact 'John Doe' has Title = 'Manager' -> included
Contact 'Jane Smith' has Title = null -> excluded
Output: [Id of John Doe]
Apex Code Editor
Welcome to Lightning Challenge!
How It Works
- • Write your solution in the code editor
- • This challenge runs without connecting your own org
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.