Courseiva
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 1hardmultiple 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 2mediummultiple choice
Full question →

Refer to the exhibit. An auditor reports that the model's fairness check was bypassed in a recent deployment. Based on the policy, what is the most likely cause?

Exhibit

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

An AI system used for hiring has been found to exhibit racial bias against certain candidates. Which step should the organization take to mitigate this?

Question 5hardmultiple choice
Full question →

Based on the exhibit, what is the most likely cause of the accuracy drop?

Exhibit

Refer to the exhibit.

Model: logistic_regression_v1
Features: ['age', 'income', 'loan_amount', 'credit_score']
Training accuracy: 0.87
Test accuracy: 0.85

Deployment metrics (last 24 hours):
  - Accuracy: 0.72
  - Precision: 0.68
  - Recall: 0.81
  - F1: 0.74

Feature distribution shift detected for 'income' (p < 0.05).
Question 6easymultiple choice
Full question →

Refer to the exhibit. The data scientist notices that the model achieves 98% accuracy on the training set but only 72% on the test set. Which change to the model parameters is most likely to reduce this gap?

Exhibit

Refer to the exhibit.

def train_model(X_train, y_train):
    model = RandomForestClassifier(n_estimators=100, max_depth=5)
    model.fit(X_train, y_train)
    return model

# Training
model = train_model(X_train, y_train)

# Evaluation on test set
accuracy = model.score(X_test, y_test)
print('Accuracy:', accuracy)
Question 7mediummultiple choice
Full question →

Refer to the exhibit. A machine learning pipeline configuration is shown. During a deployment, the model evaluation passes with accuracy 0.86 and precision 0.79. However, the pipeline proceeds to deploy. What is the most likely reason for this behavior?

Exhibit

Refer to the exhibit.

```
{
  "pipeline_version": "2.1",
  "components": {
    "data_ingestion": {
      "source": "s3://data-bucket/transactions/",
      "schedule": "cron(0 2 * * ? *)"
    },
    "feature_engineering": {
      "script": "features.py",
      "parameters": {
        "window_size": 7,
        "aggregation": "mean"
      }
    },
    "model_training": {
      "algorithm": "xgboost",
      "hyperparameters": {
        "n_estimators": 100,
        "learning_rate": 0.1
      },
      "training_data_version": "v1"
    },
    "model_evaluation": {
      "metrics": ["accuracy", "precision", "recall"],
      "threshold": {"accuracy": 0.85, "precision": 0.80}
    },
    "model_deployment": {
      "target": "production",
      "rollback_condition": "if_accuracy_drops_below_0.85"
    }
  }
}
```
Question 8easymultiple choice
Full question →

A team is building a regression model to predict house prices. Which data transformation is most appropriate if the target variable exhibits right skewness?

Question 9mediummultiple choice
Full question →

Refer to the exhibit. A stream processor ingests events. One event arrives with missing "user_id". What will happen?

Exhibit

The following is a JSON schema snippet from a data pipeline:
{
  "type": "object",
  "properties": {
    "user_id": { "type": "integer" },
    "timestamp": { "type": "string", "format": "date-time" },
    "event_type": { "type": "string" },
    "value": { "type": "number" }
  },
  "required": ["user_id", "event_type", "value"]
}
Question 10mediummultiple 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 11easymultiple 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 12mediummultiple choice
Full question →

Refer to the exhibit. A data scientist defines a model configuration in JSON. Which component is missing from the configuration for a complete machine learning pipeline?

Exhibit

Refer to the exhibit.

```
{
  "dataset": {
    "name": "customer_churn",
    "features": ["age", "tenure", "monthly_charges", "total_charges"],
    "target": "churn",
    "splits": {
      "train": 0.7,
      "test": 0.15,
      "validation": 0.15
    }
  },
  "model": {
    "type": "RandomForestClassifier",
    "params": {
      "n_estimators": 200,
      "max_depth": 10,
      "random_state": 42
    }
  }
}
```
Question 13hardmultiple 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 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 15mediummultiple choice
Full question →

Based on the exhibit, what is the most likely issue with the model training?

Exhibit

Refer to the exhibit.
Epoch 1/50 - loss: 2.4503 - val_loss: 2.4512
Epoch 10/50 - loss: 1.2345 - val_loss: 1.3456
Epoch 20/50 - loss: 0.9876 - val_loss: 1.1234
Epoch 30/50 - loss: 0.6543 - val_loss: 0.9876
Epoch 40/50 - loss: 0.4321 - val_loss: 0.8765
Epoch 50/50 - loss: 0.3210 - val_loss: 0.8321

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.