This question runs in a pre-configured Salesforce environment - no personal connection required.
Return a List of all accounts with AnnualRevenue between a minimum and maximum value (inclusive). Query should select Id, Name, and AnnualRevenue fields. Sort results by AnnualRevenue descending. Return empty list if no accounts match or if min/max are null.
Examples:
Input: minRevenue = 1000000, maxRevenue = 10000000
Output: List of Account records with AnnualRevenue between 1M and 10M
Explanation: Returns accounts where AnnualRevenue is greater than or equal to 1M and less than or equal to 10M, sorted by revenue descending
Input: minRevenue = 100000000, maxRevenue = 500000000
Output: Empty list
Explanation: No accounts in the org have revenue in this range
Input: minRevenue = null, maxRevenue = 10000000
Output: Empty list
Explanation: Returns empty list when either parameter is null
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
Note
You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.