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
🏆 All Time Leaderboard
Contest runs January 1, 1970 - December 31, 9999. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.