- A
Reduce the batch size and model complexity for all models to lower memory footprint
Why wrong: May degrade model accuracy and requires re-engineering.
- B
Set resource limits and requests per model based on observed usage, and implement pod priority classes
Limits prevent OOM, priority ensures critical models get resources.
- C
Provision larger GPU nodes with 48GB memory each
Why wrong: Vertical scaling is expensive and doesn't enforce limits.
- D
Increase the memory request for all pods to 8GB to ensure they have enough
Why wrong: This may exceed cluster capacity and cause scheduling failures.
Quick Answer
The correct answer is to set resource limits and requests per model based on observed usage, and implement pod priority classes. This approach directly addresses the root cause of the OOM errors by using Kubernetes resource management to cap GPU memory per pod at a safe level above the 4GB baseline but below the 8GB allocation, while the priority classes ensure the spike-prone fraud detection model is scheduled and retained over less critical credit scoring workloads during peak contention. On the CompTIA AI+ AI0-001 exam, this scenario tests your understanding of managing GPU memory with Kubernetes for AI, specifically how resource quotas and pod priority interact to maintain high availability without overprovisioning—a common trap is to simply increase memory limits across the board, which wastes cluster resources and can still lead to evictions if total demand exceeds the 32GB pool. Remember the mnemonic “Pods Prefer Precise Priorities” to recall that precise resource requests and priority classes together prevent OOM errors while keeping critical AI services running.
AI0-001 AI Implementation and Operations Practice Question
This AI0-001 practice question tests your understanding of ai implementation and operations. Examine the command output carefully: the correct answer depends on what the output actually shows, not on general recall alone. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A large financial services company deploys multiple AI models on a shared Kubernetes cluster with GPU nodes. The models serve real-time fraud detection and credit scoring. Recently, the operations team observed frequent out-of-memory (OOM) errors during peak hours, causing inference failures. The monitoring dashboards show GPU memory utilization averaging 90% during peak times, and pods are being evicted. The team has allocated 8GB per pod and the total cluster GPU memory is 32GB. The models require at least 4GB each, but the fraud detection model occasionally spikes to 7GB. Which course of action best resolves the OOM errors while maintaining high availability?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"best"Why it matters: Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
Clue:
"least"Why it matters: You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
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
Set resource limits and requests per model based on observed usage, and implement pod priority classes
Option B is correct because it uses Kubernetes resource management features—setting precise resource requests and limits based on observed GPU memory usage—combined with pod priority classes to ensure critical fraud detection pods are scheduled and retained during contention. This prevents OOM errors by capping memory per pod while allowing the spike-prone fraud model to be prioritized over less critical workloads, maintaining high availability without overprovisioning.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Reduce the batch size and model complexity for all models to lower memory footprint
Why it's wrong here
May degrade model accuracy and requires re-engineering.
- ✓
Set resource limits and requests per model based on observed usage, and implement pod priority classes
Why this is correct
Limits prevent OOM, priority ensures critical models get resources.
Clue confirmation
The clue words "best", "least" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Provision larger GPU nodes with 48GB memory each
Why it's wrong here
Vertical scaling is expensive and doesn't enforce limits.
- ✗
Increase the memory request for all pods to 8GB to ensure they have enough
Why it's wrong here
This may exceed cluster capacity and cause scheduling failures.
Common exam traps
Common exam trap: answer the scenario, not the keyword
CompTIA often tests the misconception that simply increasing resource requests or node size solves OOM errors, when the real solution involves proper resource limits and scheduling policies to handle variable workloads and maintain availability.
Detailed technical explanation
How to think about this question
Kubernetes resource limits for GPU memory are enforced via the device plugin framework, where the kubelet uses nvidia-container-runtime hooks to set cgroup limits; however, GPU memory limits are not as strictly enforced as CPU/memory, so setting requests and limits helps the scheduler make informed decisions. Pod priority classes leverage the Kubernetes scheduler's preemption logic, where higher-priority pods can evict lower-priority ones to free resources, which is critical for real-time fraud detection during peak hours. In practice, combining resource quotas with priority classes ensures that the spike-prone model gets the memory it needs without starving other pods, while still allowing the cluster to run at high utilization.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A practitioner preparing for the AI0-001 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
AI Implementation and Operations — study guide chapter
Learn the concepts, then practise the questions
- →
AI Implementation and Operations practice questions
Targeted practice on this topic area only
- →
All AI0-001 questions
500 questions across all exam domains
- →
CompTIA AI+ AI0-001 study guide
Full concept coverage aligned to exam objectives
- →
AI0-001 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related AI0-001 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
AI Concepts and Foundations practice questions
Practise AI0-001 questions linked to AI Concepts and Foundations.
Machine Learning and Deep Learning practice questions
Practise AI0-001 questions linked to Machine Learning and Deep Learning.
AI Models and Data Engineering practice questions
Practise AI0-001 questions linked to AI Models and Data Engineering.
AI Implementation and Operations practice questions
Practise AI0-001 questions linked to AI Implementation and Operations.
AI Security, Ethics and Governance practice questions
Practise AI0-001 questions linked to AI Security, Ethics and Governance.
CompTIA A+ hardware practice questions
Practise AI0-001 questions linked to CompTIA A+ hardware.
CompTIA A+ mobile devices practice questions
Practise AI0-001 questions linked to CompTIA A+ mobile devices.
CompTIA A+ networking practice questions
Practise AI0-001 questions linked to CompTIA A+ networking.
CompTIA A+ operating systems practice questions
Practise AI0-001 questions linked to CompTIA A+ operating systems.
CompTIA A+ security practice questions
Practise AI0-001 questions linked to CompTIA A+ security.
CompTIA A+ software troubleshooting questions
Practise AI0-001 questions linked to CompTIA A+ software troubleshooting questions.
CompTIA A+ operational procedures questions
Practise AI0-001 questions linked to CompTIA A+ operational procedures questions.
Practice this exam
Start a free AI0-001 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this AI0-001 question test?
AI Implementation and Operations — This question tests AI Implementation and Operations — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Set resource limits and requests per model based on observed usage, and implement pod priority classes — Option B is correct because it uses Kubernetes resource management features—setting precise resource requests and limits based on observed GPU memory usage—combined with pod priority classes to ensure critical fraud detection pods are scheduled and retained during contention. This prevents OOM errors by capping memory per pod while allowing the spike-prone fraud model to be prioritized over less critical workloads, maintaining high availability without overprovisioning.
What should I do if I get this AI0-001 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "best", "least". Signals that multiple options may be partially correct. Choose the option that most directly solves the exact problem described, not the one that sounds most complete.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Last reviewed: Jun 30, 2026
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.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.