Multiple choice technology mainframe

A business rule applies a graduated discount rate based on an input customer's total purchases over the past year. How should the business rule be implemented?

  1. As a rule set

  2. As a rule group

  3. As a decision table

  4. As a business rule bean

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

A graduated discount rate (where different purchase thresholds trigger different discount percentages) is best implemented as a rule set. Rule sets can contain multiple rules with conditions and actions, allowing for complex logic like 'if purchases > \$1000 then discount = 10%, else if > \$500 then discount = 5%'. Decision tables are better for uniform condition-action matrices, not graduated logic.