AI-200 Containerized AI Workloads Practice Question
You have a large AI model file (5GB) that needs to be loaded into your container at startup. What is the recommended way to handle this?
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
✓
Mount the model from an Azure File Share.
Mounting the file from Azure Blob Storage or an Azure File Share avoids bloating the container image and speeds up deployment.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Download the model via `curl` at runtime.
Why it's wrong here
This causes long startup times and potential network failure.
- ✗
Embed the model in the container image.
Why it's wrong here
Large images lead to slow pull times and inefficient storage.
- ✗
Use a base64 encoded string in the environment variable.
Why it's wrong here
This is impossible for a 5GB file.
- ✓
Mount the model from an Azure File Share.
Why this is correct
Mounting external storage is the standard for large assets.
Quick reference
Azure Blob Storage Tier Comparison
| Tier | Storage Cost | Retrieval Cost | Latency | Use Case |
|---|---|---|---|---|
| Hot | Highest | Lowest | Immediate | Active data, frequent reads |
| Cool | Lower | Higher | Immediate | Data accessed < once / month |
| Cold | Lower still | Higher | Immediate | Data accessed < once / quarter |
| Archive | Lowest | Highest + rehydration delay | Hours | Long-term compliance retention |
About these practice questions
One of 503 original AI-200 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written and reviewed by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
Last reviewed August 2026 · checked against the official Microsoft exam blueprint
This AI-200 practice question is part of Courseiva's free Microsoft 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 AI-200 exam.