Create a method that categorizes products based on price and weight following specific rules.

Rules:

  1. If the product is free (price = 0), categorize it as "Digital"
  2. For products with a price greater than 0:
    • If the weight is 0, categorize it as "Digital" (regardless of price)
    • If the weight is less than or equal to 1 (kg), categorize it as "Light"
    • If the weight is less than or equal to 10 (kg), categorize it as "Regular"
    • If the weight is greater than 10 (kg), categorize it as "Heavy"

Examples:

Input: price = 0, weight = 5 Output: "Digital" Explanation: Free products are always Digital Input: price = 10, weight = 0.5 Output: "Light" Explanation: Paid product with weight ≤ 1kg
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.