Back to CompTIA AI+ AI0-001 questions

Scenario-based practice

Refer to the Exhibit Practice Questions

Practise CompTIA AI+ AI0-001 practice questions — original exam-style scenarios covering every exam domain, with detailed explanations, wrong-answer analysis, and common exam traps.

15
scenario questions
AI0-001
exam code
CompTIA
vendor

Scenario guide

How to approach refer to the exhibit practice questions

Practise exhibit-style questions that ask you to read a topology, table, command output or diagram before choosing the best answer.

Quick answer

Exhibit-style questions test whether you can read a topology, command output, diagram or table before choosing the best answer.

How to extract the relevant detail from an exhibit.

How topology, command output or routing information affects the answer.

How to avoid answering from memory before reading the evidence.

How to map the exhibit back to the exam objective.

Related practice questions

Related AI0-001 topic practice pages

Scenario questions usually connect to one or more exam topics. Use these links to review the underlying concepts behind the scenario.

Practice set

Practice scenarios

Question 1easymultiple choice
Full question →

Refer to the exhibit. The monitoring dashboard for a deployed churn prediction model shows a drift detected flag. However, the error rate and latency are within acceptable ranges. What is the most appropriate immediate action?

Exhibit

Refer to the exhibit.

```
> show model-monitor
Model: customer_churn_v2
Status: DEPLOYED
Inference: REALTIME
Latency (p99): 250ms
Error Rate: 0.2%
Last Drift Check: 2025-03-15 14:00 UTC
Drift Detected: YES
```
Question 2hardmultiple choice
Full question →

Refer to the exhibit. A security engineer is reviewing an AI access control policy. Which of the following is the most significant security weakness in this policy?

Exhibit

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"
}
```
Question 3mediummultiple choice
Full question →

Refer to the exhibit. A data scientist is training a neural network and observes the training log above. What is the most likely cause?

Exhibit

Training Log:
Epoch 1/50 - loss: 5.234 - acc: 0.120
Epoch 2/50 - loss: 8.910 - acc: 0.110
Epoch 3/50 - loss: 15.678 - acc: 0.095
Epoch 4/50 - loss: 25.432 - acc: 0.080
Question 4hardmultiple choice
Full question →

Refer to the exhibit. Which model is NOT in full compliance with the policy?

Exhibit

{
  "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"
      }
    ]
  }
}
Question 5hardmultiple choice
Full question →

Refer to the exhibit. An AI specialist reviews the model evaluation report for a binary classifier. The specialist wants to improve recall. Which action is most likely effective?

Exhibit

Model Evaluation Report:
Accuracy: 0.85
Precision: 0.90
Recall: 0.70
F1-score: 0.79
Confusion Matrix:
[[850, 100], [150, 350]]
Question 6easymultiple choice
Full question →

Refer to the exhibit. What is the recall of the model?

Exhibit

The following is a confusion matrix for a binary classifier:

              Predicted: Positive  Predicted: Negative
Actual Positive:     80                 20
Actual Negative:     30                 70
Question 7easymultiple choice
Full question →

Refer to the exhibit. A data engineer is training a binary classification neural network. The loss fluctuates and does not converge. Which hyperparameter adjustment is most likely to stabilize training?

Exhibit

model:
  type: Sequential
  layers:
    - type: Dense
      units: 128
      activation: relu
    - type: Dense
      units: 64
      activation: relu
    - type: Dense
      units: 1
      activation: sigmoid
optimizer:
  type: Adam
  learning_rate: 0.01
Question 8mediummultiple choice
Full question →

Refer to the exhibit. A data engineer runs a validation report on the customers table. The "income" column has 12 null values. Which imputation strategy is most appropriate for this column?

Exhibit

Data Validation Report:
Table: customers
- column "age": null values: 0, unique values: 87, min:18, max:99
- column "income": null values: 12, unique values: 1500, min:0, max:500000
- column "region": null values: 0, unique values: 4, values: ["North", "South", "East", "West"]
- column "gender": null values: 0, unique values: 2, values: ["M", "F"]
Question 9mediummultiple choice
Full question →

Refer to the exhibit. What is the most likely issue and what action should be taken?

Exhibit

Epoch 1/50 - loss: 2.3004 - acc: 0.5123 - val_loss: 2.5001 - val_acc: 0.4950
Epoch 10/50 - loss: 0.4567 - acc: 0.8712 - val_loss: 0.8903 - val_acc: 0.7520
Epoch 20/50 - loss: 0.1234 - acc: 0.9601 - val_loss: 0.9502 - val_acc: 0.7800
Epoch 30/50 - loss: 0.0456 - acc: 0.9905 - val_loss: 1.2004 - val_acc: 0.7705
Question 10easymultiple choice
Full question →

Based on the exhibit, which action is most likely to resolve the memory issue?

Exhibit

Refer to the exhibit.

Error: RuntimeError: CUDA out of memory. Tried to allocate 2.00 GiB (GPU 0; 8.00 GiB total capacity; 6.50 GiB already allocated; 1.50 GiB free; 0 bytes cached) at /workspace/training.py:345
Question 11mediummultiple choice
Full question →

Refer to the exhibit. A team created an access policy for a fraud detection model endpoint. An intern reports being unable to access the model for testing. Reviewing the policy, what is the most likely cause?

Exhibit

Refer to the exhibit.

```json
{
  "model_policy": {
    "model": "fraud-detection-v3",
    "allowed_roles": ["data_scientist", "ml_engineer"],
    "denied_roles": ["intern"],
    "endpoint": "/api/v1/predict"
  }
}
```
Question 12hardmultiple choice
Full question →

Refer to the exhibit. A deep learning model is being trained. Based on the training log, which problem is most evident?

Exhibit

Refer to the exhibit.

```
Epoch 1/10
 - loss: 1.2345 - accuracy: 0.6543 - val_loss: 1.9876 - val_accuracy: 0.4321
Epoch 2/10
 - loss: 1.0123 - accuracy: 0.7123 - val_loss: 2.3456 - val_accuracy: 0.3987
Epoch 3/10
 - loss: 0.8765 - accuracy: 0.7654 - val_loss: 2.8765 - val_accuracy: 0.3654
```
Question 13easymultiple choice
Full question →

Based on the exhibit, what issue should the team address?

Network Topology
$ ai model statusname fraud_detectionRefer to the exhibit.Model: fraud_detectionVersion: 2.3.1Status: DeployedInference Latency (mean): 45 msThroughput: 1200 req/sAccuracy: 0.98Fairness metrics:Group A: 0.97Group B: 0.83Group C: 0.96
Question 14mediummultiple choice
Full question →

Refer to the exhibit. A data scientist observes the training output. Which issue is most likely?

Exhibit

Epoch 10/10 - loss: 0.01 - accuracy: 0.99 - val_loss: 0.45 - val_accuracy: 0.85
Question 15hardmultiple choice
Full question →

Refer to the exhibit. A team deploys a sentiment analysis model with this policy. After one month, the monitoring system triggers an alert for feature drift. Which action should the team take first?

Exhibit

Refer to the exhibit.

JSON Policy for Model Deployment:
{
  "model": "sentiment_analysis_v2",
  "threshold": 0.7,
  "fairness_check": {
    "protected_attributes": ["gender", "age_group"],
    "metric": "demographic_parity",
    "tolerance": 0.05
  },
  "explainability": {
    "method": "LIME",
    "num_features": 5
  },
  "monitoring": {
    "drift_detection": {
      "feature_drift": true,
      "prediction_drift": true,
      "alert_threshold": 0.2
    }
  }
}

These AI0-001 practice questions are part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style AI0-001 questions with detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics.

CompTIA AI+ AI0-001 Practice Questions | Courseiva