- A
Increase the timeout threshold for inference requests
Why wrong: This masks the issue and may still lead to poor performance under load.
- B
Implement a fallback to the previous model when timeout occurs
Why wrong: This is a workaround and adds complexity to the system.
- C
Optimize the model using TensorRT or ONNX Runtime before deployment
Optimizing reduces inference time, addressing the cause of timeouts.
- D
Reduce the canary percentage to 1% to minimize impact
Why wrong: Reducing risk does not fix the underlying model slowness.
Quick Answer
The correct action is to optimize the model using TensorRT or ONNX Runtime before deployment, as this directly reduces inference latency and prevents the timeout errors that triggered the rollback. When a canary deployment reveals a 20% increase in inference time, the root cause is a performance bottleneck in the model itself, not a configuration or infrastructure issue. Optimizing the model with tools like TensorRT or ONNX Runtime accelerates computation by leveraging hardware-specific kernels and graph optimizations, which lowers latency and eliminates the timeout spike. On the CompTIA AI+ AI0-001 exam, this scenario tests your ability to distinguish between masking symptoms and fixing the underlying performance issue—a common trap is choosing to increase timeout thresholds or scale resources, which only delays the problem. Remember the mnemonic “Fix the model, not the clock” to recall that model optimization addresses the root cause of inference timeouts in CI/CD pipelines.
AI0-001 AI Implementation and Operations Practice Question
This AI0-001 practice question tests your understanding of ai implementation and operations. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. 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 CI/CD pipeline for a computer vision model uses canary deployment. After deploying a new version to 5% of traffic, the pipeline automatically rolls back due to a spike in error rate. The new model's inference time is 20% higher than the previous version. The operations team finds that the error is caused by timeout in the inference service. Which action should be taken to prevent future rollbacks?
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
Optimize the model using TensorRT or ONNX Runtime before deployment
Option C is correct because the root cause of the timeout is the 20% higher inference time of the new model. Optimizing the model using TensorRT or ONNX Runtime reduces inference latency directly, addressing the performance bottleneck that causes timeouts. This prevents the spike in error rate and subsequent rollback without masking the underlying issue.
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.
- ✗
Increase the timeout threshold for inference requests
Why it's wrong here
This masks the issue and may still lead to poor performance under load.
- ✗
Implement a fallback to the previous model when timeout occurs
Why it's wrong here
This is a workaround and adds complexity to the system.
- ✓
Optimize the model using TensorRT or ONNX Runtime before deployment
Why this is correct
Optimizing reduces inference time, addressing the cause of timeouts.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Reduce the canary percentage to 1% to minimize impact
Why it's wrong here
Reducing risk does not fix the underlying model slowness.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may confuse symptom management (increasing timeout or fallback) with root-cause resolution (model optimization), which Cisco tests to see if you understand that performance issues must be fixed at the source in AI/ML operations.
Detailed technical explanation
How to think about this question
TensorRT optimizes neural network models by fusing layers, quantizing weights (e.g., FP16 or INT8), and using kernel auto-tuning for the target GPU, which can reduce inference latency by 2-5x. ONNX Runtime provides cross-platform acceleration with graph optimizations and support for hardware-specific execution providers (e.g., CUDA, DirectML). In a CI/CD pipeline, integrating such optimization as a pre-deployment step ensures that model performance meets latency SLOs before canary exposure, preventing timeout-induced rollbacks.
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 network engineer segments a warehouse floor into three subnets: 20 scanners, 5 printers, and 2 management hosts. Picking the wrong mask wastes addresses or leaves too few usable hosts. Exam questions test whether you can apply CIDR notation, calculate block size, and identify the correct usable-host range for a given prefix.
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: Optimize the model using TensorRT or ONNX Runtime before deployment — Option C is correct because the root cause of the timeout is the 20% higher inference time of the new model. Optimizing the model using TensorRT or ONNX Runtime reduces inference latency directly, addressing the performance bottleneck that causes timeouts. This prevents the spike in error rate and subsequent rollback without masking the underlying issue.
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.
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 →
Same concept, more angles
1 more ways this is tested on AI0-001
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A model serving endpoint is tested using curl commands. Based on the exhibit, what is the most likely issue?
easy- A.The server is returning HTTP 500 errors
- B.The input features are malformed
- ✓ C.The model is experiencing intermittent high latency leading to timeouts
- D.The model is not deployed on the server
Why C: The exhibit shows that the first curl request succeeds (HTTP 200), but subsequent requests fail with 'curl: (28) Operation timed out' after the default timeout of 30 seconds. This pattern of intermittent success followed by timeouts is characteristic of a model experiencing high latency spikes, not a persistent server error or configuration issue. The server is reachable and the model responds correctly some of the time, ruling out deployment or malformed input issues.
Last reviewed: Jun 25, 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.