Question 1mediummultiple choice
Read the full NAT/PAT explanation →AI0-001 AI Security, Ethics and Governance • Complete Question Bank
Complete AI0-001 AI Security, Ethics and Governance question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit. ``` [2025-03-15 14:23:45] ERROR: Model inference failed for user 'jdoe'. [2025-03-15 14:23:45] WARNING: Input contains special characters at position 45. [2025-03-15 14:23:45] INFO: Input length: 1200 characters. [2025-03-15 14:23:46] ERROR: Memory allocation error during processing. [2025-03-15 14:23:46] CRITICAL: Model server crashed. ```
Refer to the exhibit. ``` [2025-04-01 14:23:45] INFO: Model inference call for job_id=123 [2025-04-01 14:23:45] ALERT: Drift detected on feature 'transaction_amount' - PSI: 0.35 (threshold: 0.20) [2025-04-01 14:23:46] ALERT: Unusual request pattern from IP 10.0.0.55: 100 queries in 5 seconds (limit: 50) [2025-04-01 14:23:47] WARN: Model 'fraud_detection_v2' confidence score dropped below 0.8 for 15 consecutive predictions [2025-04-01 14:23:48] ALERT: Response time for inference increased to 200ms (baseline: 50ms) ```
Refer to the exhibit.
```json
{
"policyId": "AI-ACCESS-001",
"resources": ["model: fraud_detection_v2", "model: credit_scoring_v1"],
"principals": ["role: data_scientist", "role: auditor"],
"actions": ["inference", "explain", "audit_log"],
"conditions": {
"ipRange": ["10.0.0.0/8", "172.16.0.0/12"],
"timeWindow": "09:00-17:00",
"mfaRequired": true
},
"effect": "Allow"
}
```Refer to the exhibit. ``` [ERROR] 2025-04-01 15:12:33 - InferenceEngine-7: Input tensor contains NaN values for feature 'age'. Model 'loan_model_v3' returning error code -1. [WARN] 2025-04-01 15:12:34 - SecurityFilter: Input flagged as potentially adversarial (score: 0.89). Action: blocked. [INFO] 2025-04-01 15:12:35 - API Gateway: Request from 192.168.1.10 blocked due to security filter alert. ```
{
"policy": {
"model": "loan-approval-v2",
"access": [
{"role": "data_scientist", "permissions": ["train", "evaluate", "deploy"]},
{"role": "auditor", "permissions": ["view_logs", "view_predictions"]},
{"role": "developer", "permissions": ["inference"]},
{"role": "external_user", "permissions": ["inference"]}
],
"audit": {"enabled": true, "log_all_access": true},
"fairness_check": {"required": true, "threshold": 0.8}
}
}Model Audit Log - 2024-09-01 Timestamp | Event | User | Details 2024-09-01 08:15 | Model training started | alice | dataset:v3, hyperparams:... 2024-09-01 09:30 | Model training completed| alice | accuracy:0.94 2024-09-01 10:00 | Model deployed | bob | endpoint:prod 2024-09-01 10:05 | Prediction request | system | 1500 requests/min 2024-09-01 10:10 | Anomaly detected | system | accuracy drop to 0.72 2024-09-01 10:15 | Model rollback | carol | version: v2.1
[security] enable_model_encryption = false enable_input_sanitization = true enable_adversarial_defense = false audit_level = basic [privacy] data_minimization = enabled pii_detection = enabled [governance] fairness_audit = quarterly
AI Model Evaluation Report Model: LoanClassifier v1.2 Date: 2023-08-15 Accuracy: 0.92 Precision: 0.89 Recall: 0.88 F1: 0.88 Fairness Metric (Demographic Parity Difference): 0.15
{
"policy": {
"name": "AI Governance Policy",
"principles": [
"Human oversight",
"Transparency",
"Fairness",
"Accountability",
"Privacy"
],
"requirements": {
"bias_testing": "quarterly",
"explainability": "SHAP or LIME",
"risk_assessment": "pre-deployment"
},
"exceptions": [
{
"model": "CreditScorer v2",
"reason": "legacy system"
}
]
}
}Refer to the exhibit.
```json
{
"policy_name": "model_access_ctrl",
"rules": [
{
"role": "data_scientist",
"permissions": ["train", "evaluate", "deploy_to_staging"],
"conditions": {
"time_window": "09:00-17:00",
"mfa_required": true
}
},
{
"role": "ml_engineer",
"permissions": ["deploy_to_production", "monitor", "rollback"],
"conditions": {
"approval_required": "manager"
}
},
{
"role": "auditor",
"permissions": ["read_logs", "view_versions"],
"conditions": {}
}
]
}
```