Courseiva
AI Implementation and OperationsmediumMultiple ChoiceObjective-mapped

AI0-001 AI Implementation and Operations Practice Question

Exhibit

Refer to the exhibit.
```
kubectl describe pod model-serving-5f4c6d7b8c-x9yzw
...
Status:       Failed
Reason:       OOMKilled
Message:      The pod was terminated because it exceeded its memory limit.
Containers:
  model:
    Limits:
      memory: 2Gi
    Requests:
      memory: 1Gi
...
```

A model serving pod is failing with OOMKilled. What is the most likely cause?

⚠ Common exam trap

CompTIA often tests the distinction between OOMKilled (memory limit exceeded) and other pod failure reasons like CrashLoopBackOff (application crash) or ImagePullBackOff (image issues), so candidates must associate OOMKilled specifically with memory resource constraints, not general pod failures.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

The model requires more memory than the 2Gi limit

An OOMKilled error in Kubernetes indicates that a container exceeded its memory limit and was terminated by the Out Of Memory (OOM) killer. The most common cause is that the model's inference or training workload requires more memory than the configured resource limit (e.g., 2Gi), forcing the kernel to kill the process. This is a direct result of the container's memory request/limit mismatch with the actual consumption.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • The container image is corrupted

    Why it's wrong here

    OOMKilled indicates memory exhaustion, not image corruption.

  • The model version is outdated

    Why it's wrong here

    OOMKilled is unrelated to model version; resource limits are the issue.

  • The model requires more memory than the 2Gi limit

    Why this is correct

    The pod was killed because it used more memory than allowed.

  • The Kubernetes cluster has run out of disk space

    Why it's wrong here

    Disk space issue would cause eviction, not OOMKilled.

About these practice questions

This AI0-001 question is part of Courseiva's 754-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This AI0-001 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI0-001 exam.