This question runs in a pre-configured Salesforce environment - no personal connection required.

Return a List of all accounts that meet ALL these criteria: Rating is Hot, Type is Customer, AnnualRevenue is greater than or equal to 50000000, and BillingCountry is USA. The query should select Id, Name, AnnualRevenue, and BillingCountry fields. Sort the results by AnnualRevenue in descending order. Return an empty list if no accounts match all criteria.

Examples:

Input: None (query all accounts) Output: List<Account> containing accounts matching ALL criteria, sorted by AnnualRevenue DESC Explanation: Returns Hot, Customer accounts in USA with revenue >= 50M Input: None Output: Empty List<Account> Explanation: If no accounts meet all four criteria, return empty list
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 account

How 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.