Back to blog
Study Tips10 min read

How to Pass the Microsoft AI-200 Exam in 2026: An 8-Week Study Plan for the New Azure AI Cloud Developer Certification

The new Microsoft AI-200 exam turns the old AZ-204 developer track into an AI-first certification. Here is an 8-week study plan covering all four domains, the vector database content that trips people up, and how to pass on your first attempt.

C

CertCrush Team

27 June 2026

Microsoft has retired the long-running AZ-204 developer exam and replaced it with something built for the AI era: the AI-200, officially titled Developing AI Cloud Solutions on Azure. Pass it and you earn the Microsoft Certified: Azure AI Cloud Developer Associate badge. If you are searching for an AI-200 study plan, this guide gives you a realistic 8-week schedule, a breakdown of all four exam domains, and a clear view of the topics that catch people out.

The exam is in beta now, with general availability expected in July 2026. That timing matters. A brand-new exam means thin study material, fewer practice questions in circulation, and a real first-mover advantage for anyone who prepares early. This post is built to get you exam-ready before the crowd arrives.

What Is the Microsoft AI-200 Exam?

The AI-200 is Microsoft's new associate-level certification for developers who build AI solutions on Azure. It is the spiritual successor to the AZ-204 (Developing Solutions for Microsoft Azure), but the focus has shifted hard towards generative AI, vector search, and the services that power modern AI applications.

Where AZ-204 tested general Azure development (compute, storage, security, monitoring), the AI-200 assumes you are building AI back-end services: serverless inference endpoints, retrieval-augmented generation pipelines, and AI workloads that scale. You are expected to be comfortable contributing to every phase of an AI solution, from requirements and design through to deployment, security, and monitoring.

Exam Tip: AI-200 replaces AZ-204, but it is not a like-for-like swap. If you studied AZ-204 material in the past, expect a large amount of new content around Azure OpenAI, vector databases, and AI Foundry that the old exam never touched.

AI-200 at a glance

DetailInformation
Exam codeAI-200
Full titleDeveloping AI Cloud Solutions on Azure
Certification earnedAzure AI Cloud Developer Associate
LevelAssociate
ReplacesAZ-204
Beta and trainingMay 2026
General availabilityJuly 2026 (expected)
Passing score700 out of 1000
Exam duration120 minutes
Standard costAround 165 USD (beta discounted up to 80%)
PrerequisiteNone required (AI-102 is not mandatory)

The passing score is 700 on a scale of 1000, in line with other Microsoft role-based exams. You have 120 minutes to complete the assessment, which typically includes multiple-choice questions, case studies, and hands-on style scenarios.

Do You Need AI-102 First?

No. Microsoft has not set a hard prerequisite chain for the AI-200. You do not need to have passed AI-102 (Azure AI Engineer Associate) or AI-103 before sitting it.

That said, the exam expects genuine familiarity with Azure AI services. The recommended background is comfort with the Azure SDK, working knowledge of containers, and basic Python. If you are weighing the two AI tracks, our AI-102 vs AI-103 comparison explains how the engineer path differs from the new developer path. The short version: AI-102 and AI-103 lean towards configuring and consuming AI services, while AI-200 leans towards building and operating the back-end infrastructure that serves them.

If you are completely new to Azure AI, it is worth grounding yourself in the fundamentals first. Our guide to what changed in Azure AI Fundamentals is a sensible starting point before you tackle an associate-level developer exam.

The Four AI-200 Exam Domains

The AI-200 is organised into four skill areas. Knowing the weightings tells you exactly where to spend your study hours.

Domain 1: Develop containerised solutions on Azure (20 to 25%)

This domain is about building and operating containerised AI workloads. You need to configure, deploy, troubleshoot, and scale containers across Azure services. Azure Container Registry sits at the centre, covering how you build, store, version, and manage container images. You will also deploy containerised apps to Azure App Service and handle environment variables and secrets correctly.

Domain 2: Develop AI solutions using Azure data management services (25 to 30%)

This is the heaviest domain and the one most candidates underestimate. It is built around vector search and the data layer behind modern AI apps. Expect questions on Cosmos DB vector search, pgvector on PostgreSQL, and Redis vector indexing. If you have never implemented semantic retrieval with a vector database, this is where you will lose marks, so start here.

Domain 3: Connect to and consume Azure services

This domain covers service integration: wiring your application to Azure OpenAI, AI Foundry, and other managed services, then orchestrating asynchronous AI processing workflows and serverless inference endpoints. The emphasis is on making services talk to each other reliably at scale.

Domain 4: Secure, monitor, and troubleshoot Azure solutions

The final domain is operational maturity. You need to secure AI solutions, monitor their health and performance, and troubleshoot when they break. This maps closely to the security and observability skills that any production AI system demands.

Exam Tip: Domain 2 (data management services and vector search) carries the most weight at 25 to 30%. If your time is limited, master vector databases before anything else. It is the single highest-return topic on the exam.

Is the AI-200 Hard?

The AI-200 is a fair but demanding associate exam. It is harder than AI-102 for most people because it expects you to build, not just configure. The vector database content in Domain 2 is genuinely new territory for many Azure developers, and the containers material in Domain 1 assumes practical experience rather than theory.

The good news is that the exam rewards hands-on practice. Candidates who spend real time in the Azure portal and write actual code consistently outperform those who only read. Because the exam is new, there is also far less worn-out study noise to wade through, so a focused eight weeks of preparation goes a long way.

The 8-Week AI-200 Study Plan

This plan assumes 8 to 10 hours of study per week, roughly 60 to 90 minutes per day. Adjust the pace to your experience: strong Azure developers can compress it to four to six weeks, while career changers may want to stretch it to twelve.

Week 1: Foundations and exam mapping

  • Download the official AI-200 study guide from Microsoft Learn and read every line of the skills measured list.
  • Set up a free Azure account (new accounts get 200 USD of credit for 30 days) so you can practise hands-on.
  • Confirm your Python and Azure SDK basics. If either is rusty, spend extra time here before moving on.
  • Outcome: a clear map of the four domains and a working Azure environment.

Week 2: Containerised solutions (Domain 1)

  • Learn Azure Container Registry end to end: building, storing, versioning, and managing images.
  • Deploy a containerised app to Azure App Service and configure environment variables and secrets.
  • Practise scaling and troubleshooting containers.
  • Outcome: you can take a container from image to running app on Azure without notes.

Week 3: Vector databases part one (Domain 2)

  • Start the heaviest domain early. Learn what vector embeddings are and why AI apps need them.
  • Implement vector search in Cosmos DB. Build a small example that stores and queries embeddings.
  • Outcome: a working semantic search prototype in Cosmos DB.

Week 4: Vector databases part two (Domain 2)

  • Add pgvector on PostgreSQL and Redis vector indexing to your toolkit.
  • Compare the three approaches: when would you pick Cosmos DB over pgvector or Redis?
  • Build a simple retrieval-augmented generation flow that pulls context from your vector store.
  • Outcome: you can choose and implement the right vector database for a given scenario.

Week 5: Service integration (Domain 3)

  • Connect your app to Azure OpenAI and AI Foundry.
  • Build a serverless inference endpoint using Azure Functions.
  • Orchestrate an asynchronous AI processing workflow.
  • Outcome: you can wire AI services together and serve inference at scale.

Week 6: Security, monitoring, and troubleshooting (Domain 4)

  • Secure your AI solution: manage keys and secrets, apply least-privilege access, and protect endpoints.
  • Add monitoring with Azure Monitor and Application Insights.
  • Practise diagnosing and fixing a broken deployment.
  • Outcome: you can ship a secure, observable AI solution.

Week 7: Full review and weak-spot repair

  • Take a full-length practice exam under timed conditions.
  • Score yourself by domain and rank your weakest areas.
  • Spend the rest of the week rebuilding confidence in your two lowest-scoring domains.
  • Outcome: an honest picture of where you stand against the 700 pass mark.

Week 8: Final practice and exam readiness

  • Sit two more timed practice exams, ideally on different days.
  • Review every wrong answer until you understand why the correct option wins.
  • Rest the day before. Walking in calm beats cramming.
  • Outcome: consistent practice scores above 80%, ready to book the real thing.

Exam Tip: Do not leave Domain 2 until late. Because vector databases are the heaviest and least familiar topic, starting them in week three gives you time to actually build something rather than memorise definitions.

AZ-204 vs AI-200: What Changed

If you remember the old Azure developer exam, this table shows how the focus has shifted.

AreaAZ-204 (retired)AI-200 (new)
Core focusGeneral Azure developmentAI cloud solution development
AI contentMinimalCentral (Azure OpenAI, AI Foundry)
Data layerStorage and databasesVector search and embeddings
ContainersCoveredCovered and expanded
CertificationAzure Developer AssociateAzure AI Cloud Developer Associate
Best forGeneral cloud developersDevelopers building AI apps

The headline is simple: if your day job is moving towards building AI features, the AI-200 is now the certification that proves it.

Common AI-200 Mistakes to Avoid

  • Underestimating Domain 2. Vector databases carry the most weight and are the least familiar. Treat them as your priority, not an afterthought.
  • Studying theory without building. This is a developer exam. Reading documentation without writing code is the fastest route to a fail.
  • Skipping containers. Domain 1 assumes practical Container Registry and App Service experience. Do not gloss over it because it feels like old ground.
  • Relying on exam dumps. Beyond breaching Microsoft policy, dumps for a new exam are unreliable and often wrong. Use the official objectives and real practice instead.
  • Ignoring the beta discount window. If the beta is still open when you are ready, you can save up to 80% on the exam fee. Check the current beta status on Microsoft Learn before you book.

How CertCrush Helps You Pass AI-200

Reading is not enough for a developer exam. The candidates who pass are the ones who answer realistic questions until the patterns click. CertCrush practice questions mirror the real exam style across all four AI-200 domains, with detailed explanations that tell you why each answer is right or wrong, so you learn as you go.

Because the AI-200 is new, getting ahead now means you sit the exam with a level of preparation most candidates will not reach for months. Browse the full CertCrush course catalogue to line up your Azure AI study, and if you are building a broader plan, our roundup of the best IT certifications for 2026 puts the AI-200 in context alongside the other certs worth your time.

Ready to Start Practising?

The AI-200 rewards early, hands-on preparation, and there has never been a better moment to start than before general availability hits in July 2026. Work through the eight-week plan, build real solutions in Azure, and back it up with focused practice.

Create your free CertCrush account to start practising AI-200 style questions today, track your progress across all four domains, and walk into your exam ready to pass on the first attempt.

AI-200Microsoft certificationAzure AIstudy planAzure AI Cloud Developerexam prep

Ready to start practising?

CertCrush gives you realistic exam simulations, domain tracking, and study guides — all in one place.