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 →

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 2mediummultiple 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 3hardmultiple 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 4easymultiple 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 5mediummultiple 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 6hardmultiple 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
    }
  }
}
Question 7hardmultiple choice
Full question →

Refer to the exhibit. A data scientist is training a binary classifier. Based on the training log, which problem is the model experiencing?

Exhibit

Refer to the exhibit.

```
Epoch 1/10
 - loss: 0.6932 - acc: 0.5123 - val_loss: 0.6981 - val_acc: 0.5012
Epoch 2/10
 - loss: 0.4521 - acc: 0.7845 - val_loss: 0.6890 - val_acc: 0.5123
Epoch 3/10
 - loss: 0.2312 - acc: 0.9234 - val_loss: 0.7123 - val_acc: 0.4987
Epoch 4/10
 - loss: 0.1023 - acc: 0.9789 - val_loss: 0.8567 - val_acc: 0.4856
Epoch 5/10
 - loss: 0.0456 - acc: 0.9923 - val_loss: 1.0234 - val_acc: 0.4765
```
Question 8hardmultiple choice
Full question →

A data scientist notices the model overfits. Which change to the exhibit's configuration would most likely reduce overfitting?

Exhibit

Refer to the exhibit.
{
  "model": {
    "layers": [
      {"type": "Dense", "units": 256, "activation": "relu"},
      {"type": "Dropout", "rate": 0.5},
      {"type": "Dense", "units": 128, "activation": "relu"},
      {"type": "Dropout", "rate": 0.5},
      {"type": "Dense", "units": 10, "activation": "softmax"}
    ],
    "optimizer": {"type": "Adam", "learning_rate": 0.001},
    "loss": "categorical_crossentropy"
  }
}
Question 9mediummultiple choice
Full question →

Refer to the exhibit. An AI auditor reviews the fairness configuration. What is the purpose of this policy?

Exhibit

{
  "fairness_metric": "demographic_parity",
  "threshold": 0.1,
  "protected_attributes": ["race", "gender"]
}
Question 10hardmultiple choice
Full question →

Refer to the exhibit. A system administrator reviews the deployment. Which action should be taken to meet the SLA?

Exhibit

Model inference time: 150ms p95, 200ms p99. SLA requirement: 100ms p95.
Question 11hardmultiple choice
Full question →

Based on the exhibit, which action is permitted by this policy?

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "sagemaker:CreateModel",
        "sagemaker:CreateEndpointConfig",
        "sagemaker:CreateEndpoint"
      ],
      "Resource": "*"
    }
  ]
}
Question 12easymultiple 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 13easymultiple 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 14hardmultiple choice
Full question →

Refer to the exhibit. A data engineer notices that the batch processing step is taking too long and causing delays. Which change would most likely reduce the latency?

Exhibit

Data Pipeline Architecture:
- Source: IoT devices -> Kafka Topic "sensor_data"
- Stream Processing: Apache Flink job that ingests from Kafka, cleanses data, and outputs to another Kafka Topic "cleaned_sensor_data"
- Batch Processing: Apache Spark job that reads from "cleaned_sensor_data" via Kafka batch integration, performs feature engineering, and writes to HDFS as Parquet
- Model Training: Python script reads from HDFS, trains an LSTM model, and saves to model registry
- Inference: REST API loads model from registry and serves predictions
Question 15mediummultiple 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"]

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.