This question runs in a pre-configured Salesforce environment - no personal connection required.
Create a method that performs bulk update operations on Account Industry field.
Parameters:
accountIds(List<Id>): List of Account IDs to updatenewIndustry(String): The new industry value
Returns:
Integer: The number of accounts successfully updated, or 0 if none
Requirements:
- Use DML bulk update operation
- Handle null or empty accountIds list by returning 0
- Query accounts by IDs before updating
- Handle DML exceptions gracefully
- Return the count of successfully updated records
Example:
List<Id> accountIds = new List<Id>{accountId1, accountId2};
Integer updated = bulkUpdateAccountIndustry(accountIds, 'Technology');
// Returns: 2
Apex Code Editor
Welcome to Lightning Challenge!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.