AI Associate • Practice Test 14
Free AI Associate practice test — 15 questions with explanations. Set 14. No signup required.
Refer to the exhibit. An AI loan approval policy is defined as a JSON rule set. Which ethical issue is most prominent based on this policy?
{
"policy": {
"model": "loan-approval-v2",
"version": 1.2,
"rules": [
{
"condition": "income >= 30000",
"action": "approve"
},
{
"condition": "credit_score >= 700",
"action": "approve"
},
{
"condition": "zip_code IN ['90210', '10001']",
"action": "approve"
}
],
"default_action": "deny"
}
}