Question 495 of 500
AI Implementation and OperationshardMultiple SelectObjective-mapped

Quick Answer

The answer is canary deployment and A/B testing with traffic splitting. Both strategies allow you to test a new model version on a subset of live traffic before committing to a full rollout, reducing the blast radius of potential failures. Canary deployment works by routing a small percentage of real-world requests to the new model while the stable version handles the majority, enabling validation under production load. A/B testing similarly splits traffic between the old and new models, but it is often used for comparing specific performance metrics or business outcomes. On the CompTIA AI+ AI0-001 exam, this concept tests your understanding of risk mitigation in MLOps, and a common trap is confusing blue-green deployment (which swaps entire environments) with these incremental strategies. A helpful memory tip: think of a canary in a coal mine—it tests the air quality first—and A/B as a direct side-by-side comparison of two versions.

AI0-001 AI Implementation and Operations Practice Question

This AI0-001 practice question tests your understanding of ai implementation and operations. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. 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.

Which TWO deployment strategies allow for testing a new model version before fully rolling it out?

Question 1hardmulti select
Full question →

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

Canary deployment

Canary deployment is correct because it routes a small percentage of live traffic to the new model version while the majority continues using the stable version. This allows real-world validation of the new model's performance and error rates under production load before a full rollout, minimizing blast radius if issues arise.

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.

  • Shadow deployment

    Why it's wrong here

    Shadow deployment duplicates traffic to the new version but does not serve user requests, so it does not test real behavior.

  • Canary deployment

    Why this is correct

    Canary releases route a subset of users to the new version for validation.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Direct cutover

    Why it's wrong here

    Direct cutover replaces the old version instantly with no testing period.

  • A/B testing with traffic splitting

    Why this is correct

    A/B testing directs a percentage of traffic to each version to compare performance.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Blue-Green deployment

    Why it's wrong here

    Blue-Green switches all traffic at once, not gradual testing.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates confuse shadow deployment with canary deployment, mistakenly thinking shadow also tests user-facing behavior, when in fact shadow only tests infrastructure impact without validating model outputs against live user expectations.

Detailed technical explanation

How to think about this question

In practice, canary deployment often uses a load balancer or service mesh (e.g., Istio, Envoy) to route a configurable percentage of requests—commonly 1%, 5%, or 10%—to the canary instance. Metrics such as latency percentiles, error rates, and model drift are monitored over a defined window (e.g., 24 hours) before gradually increasing the canary's traffic share. A real-world scenario is deploying a fraud detection model where a sudden accuracy drop could cause financial losses, so a canary deployment catches regressions early without impacting all users.

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 junior network technician can log in to a core router but cannot reach the enable prompt or configuration mode. The AAA server is authenticating the login — but the authorisation policy only grants privilege level 1, not 15. Authentication (who you are) is working; authorisation (what you can do) is not.

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.

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.

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: Canary deployment — Canary deployment is correct because it routes a small percentage of live traffic to the new model version while the majority continues using the stable version. This allows real-world validation of the new model's performance and error rates under production load before a full rollout, minimizing blast radius if issues arise.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 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. An MLOps team uses a CI/CD pipeline to automate model retraining. The pipeline triggers on new labeled data, runs feature engineering, retrains the model, evaluates against a holdout set, and deploys if metrics exceed thresholds. Recently, a retrained model passed validation but caused a 5% accuracy drop in production. Which improvement best prevents this?

hard
  • A.Implement canary deployment with shadow scoring to compare with current model
  • B.Require manual approval before deployment
  • C.Use the entire production dataset for validation instead of a holdout set
  • D.Increase the amount of training data used in each retraining cycle

Why A: Option D is correct because adding canary deployment and shadow testing catches performance issues before full rollout. Option A is wrong because more training data might not help and could introduce bias. Option B is wrong because manual approval slows down pipeline. Option C is wrong because only using full dataset for evaluation doesn't simulate production conditions.

Variation 2. An MLOps team automates model deployment with a CI/CD pipeline. A performance regression is detected after deploying a new model version. The team needs to automatically roll back to the previous version. Which approach best enables safe automated rollback?

hard
  • A.Use a blue/green deployment with automated health checks and traffic switching
  • B.Maintain a manual rollback script that the operations team can run
  • C.Deploy new models as canary releases and monitor for 24 hours
  • D.Automatically keep the previous model version in storage for later use

Why A: Blue/green deployment with automated health checks and traffic switching is the best approach because it allows the team to instantly route all traffic back to the previous (green) environment if the new (blue) version fails health checks. This ensures zero-downtime rollback without manual intervention, directly addressing the need for safe automated rollback in a CI/CD pipeline.

Last reviewed: Jun 25, 2026

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.

Loading comments…

Sign in to join the discussion.

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.