nerdexam
IAPP

AIGP · Question #170

A regulator has ruled that the AI model used by some features of your product should not be used in their jurisdiction. What is the most robust way of reacting to this situation?

The correct answer is C. Implement a feature flag to enable or disable the features based on a user's country of origin.. Feature flags (option C) are the most robust solution because they allow you to surgically disable only the regulated AI-powered features for users in the affected jurisdiction, while keeping the rest of the product fully operational - no downtime, no duplicate codebases, and eas

Legal and Regulatory Landscape

Question

A regulator has ruled that the AI model used by some features of your product should not be used in their jurisdiction. What is the most robust way of reacting to this situation?

Options

  • AShut down the service in the jurisdiction to pressure the regulator to change their position.
  • BCreate a second, separate version of the application and deploy it to users in the jurisdiction.
  • CImplement a feature flag to enable or disable the features based on a user's country of origin.
  • DRe-train your AI model and deploy it immediately to show you can react quickly to regulator's

How the community answered

(49 responses)
  • A
    6% (3)
  • B
    14% (7)
  • C
    78% (38)
  • D
    2% (1)

Explanation

Feature flags (option C) are the most robust solution because they allow you to surgically disable only the regulated AI-powered features for users in the affected jurisdiction, while keeping the rest of the product fully operational - no downtime, no duplicate codebases, and easy rollback if regulations change.

Why the distractors fail:

  • A is a business and legal risk - shutting down to apply pressure is adversarial toward regulators and harms your users, likely violating contracts and accelerating penalties.
  • B creates a maintenance burden of two diverging codebases; any update must be applied twice, and divergence bugs compound over time.
  • D is incomplete and reckless - re-training a model doesn't guarantee it meets the regulator's specific concerns, and rushing a deployment without validation could worsen the compliance situation.

Memory tip: Think of feature flags as a light switch per country - you flip the switch off for one region without rewiring the whole building. Regulators change rules; flags change fast.

Topics

#regulatory compliance#jurisdictional restrictions#feature flags#AI deployment strategy

Community Discussion

No community discussion yet for this question.

Full AIGP Practice