Microsoft · AI-102
Validates expertise in designing and implementing Azure AI solutions using Azure AI services, Azure AI Search, and Azure OpenAI. Covers computer vision, natural language processing, knowledge mining, generative AI, and agentic solutions.
Practice Questions
1,392
≈ 27 practice exams
Duration
100 minutes
Passing Score
700/1000
Difficulty
AssociateLast Updated
Sep 2026
Microsoft retired the AI-102 exam and the Azure AI Engineer Associate certification on June 30, 2026, and the official certification page now carries a retirement notice covering both the exam and its renewal assessment. Unlike the months right after retirement, there is now a confirmed successor: exam AI-103 (Developing AI Apps and Agents on Azure), which leads to the Microsoft Certified: Azure AI Apps and Agents Developer Associate certification. AI-103 is live and bookable through Pearson VUE today, so if you searched for AI-102 while planning a new Azure AI certification, AI-103 is the exam to schedule.
AI-103 runs 120 minutes (20 minutes longer than AI-102) and keeps the familiar Microsoft scoring model: 700 on a scale of 100 to 1,000 to pass, with the certification renewing annually through a free online assessment on Microsoft Learn. Its skills outline, dated April 16, 2026, measures five areas: implementing generative AI and agentic solutions is the heaviest at 30 to 35 percent, followed by planning and managing an Azure AI solution at 25 to 30 percent, with computer vision, text analysis, and information extraction solutions at 10 to 15 percent each. Two shifts matter most if you studied AI-102 material: AI-103 centers on Microsoft Foundry (projects, agent building, RAG pipelines, multi-agent orchestration), and its audience profile names Python specifically, where AI-102 accepted Python or C#.
For reference, AI-102 in its final form ran 100 minutes, required a scaled 700 out of 1,000, and covered six skill areas per its December 2025 update, from planning and managing an Azure AI solution (20 to 25 percent) down to implementing an agentic solution (5 to 10 percent). Much of that content carries directly into AI-103: Azure AI service planning, computer vision, natural language processing, and knowledge mining all appear in the new outline under updated names. This bank's 1,392 AI-102-aligned practice questions remain useful for building those underlying Azure AI skills, whether you hold the retired credential and want to stay sharp or are starting AI-103 prep and want question volume on the overlapping domains. Start with the 30 free questions, then check the official AI-103 study guide for the Foundry-specific and agentic topics you will need to add on top.
The Microsoft Certified: Azure AI Engineer Associate certification, validated through exam AI-102 (Designing and Implementing a Microsoft Azure AI Solution), demonstrates expertise in building, managing, and deploying production-grade AI solutions on the Azure platform. The exam covers the full breadth of Azure AI capabilities including Azure AI Services, Azure AI Search, Azure OpenAI in Foundry Models, Azure AI Vision, Azure AI Language, Azure AI Speech, Azure AI Document Intelligence, and Azure Content Understanding. Candidates are assessed on their ability to architect secure, end-to-end AI solutions that span computer vision, natural language processing, knowledge mining, generative AI, and autonomous agentic workflows.
Last updated on December 23, 2025, the exam reflects Microsoft's shift toward the Microsoft Foundry platform and its emphasis on generative AI and agentic solutions. It aligns with the real-world responsibilities of an Azure AI engineer, including requirements definition, development, deployment, integration, performance tuning, and monitoring. The certification also requires demonstrating the ability to apply Responsible AI principles, configure content safety filters, and design governance frameworks—reflecting increasing enterprise demand for trustworthy AI systems.
This certification is designed for software engineers and developers who build AI-integrated applications and want to formalize their expertise on the Azure platform. Ideal candidates work in roles such as AI Engineer, Machine Learning Engineer, Cloud Developer, Solutions Architect, or Data Engineer with a focus on AI. Candidates should have hands-on development experience using Python or C# and be comfortable consuming REST APIs and SDKs across the Azure AI portfolio.
The certification is most relevant to professionals who collaborate with data scientists, data engineers, IoT specialists, and infrastructure teams to integrate AI capabilities into broader enterprise solutions. It suits those with at least one to two years of experience building cloud-based applications on Azure and some familiarity with AI/ML concepts, though it does not require deep data science or model-training expertise.
There are no mandatory prerequisites to sit for the exam, but Microsoft recommends foundational Azure knowledge equivalent to the AZ-900 (Azure Fundamentals) or AI-900 (Azure AI Fundamentals) certifications before attempting AI-102. Candidates should be proficient in Python or C# and comfortable with REST API consumption and SDK usage in at least one of those languages.
Practical experience is strongly recommended: candidates should have hands-on familiarity with Azure AI Services (including Vision, Language, Speech, and Document Intelligence), Azure AI Search, and Azure OpenAI. Understanding of cloud architecture concepts—such as resource provisioning, identity and access management, containerization, and CI/CD pipelines—will be essential for the planning and management domain. Exposure to prompt engineering, retrieval-augmented generation (RAG) patterns, and responsible AI principles is increasingly important given the exam's updated 2025 objectives.
Exam AI-102 is a proctored assessment delivered through Pearson VUE, available in both online proctored and in-person testing center formats. Candidates are given 100 minutes to complete the exam. The question count typically ranges from 40 to 60 items and may include multiple-choice, multiple-select, drag-and-drop, case studies, and interactive lab-style components. Microsoft does not publish a fixed question count, as it varies per exam form.
The passing score is 700 on a scale of 100–1000. Scoring is scaled and not a simple percentage of correct answers. The exam is available in English, Japanese, Chinese (Simplified and Traditional), Korean, German, French, Spanish, Portuguese (Brazil), and Italian. Candidates who test in a non-English language can request 30 additional minutes. If a candidate fails, they may retake the exam after 24 hours; subsequent retakes require a 14-day waiting period, and no more than five attempts are allowed within a 12-month period. The resulting certification is valid for one year and can be renewed at no cost via an online assessment on Microsoft Learn.
Earning the AI-102 certification positions professionals for high-demand roles including Azure AI Engineer, Machine Learning Engineer, Cloud AI Developer, AI Solutions Architect, and Cognitive Services Developer. According to ZipRecruiter, the average annual salary for Azure AI Engineers in the United States was approximately $158,110 as of early 2026, with senior roles at top technology companies exceeding $200,000. The certification is particularly valuable as enterprises scale generative AI adoption—engineers who can implement production-ready RAG pipelines, deploy Azure OpenAI solutions, and build agentic workflows are commanding significant salary premiums.
The AI-102 is the primary associate-level AI engineering credential in the Microsoft ecosystem, sitting above AI-900 (Azure AI Fundamentals) and complementing DP-100 (Azure Data Scientist Associate) for teams building end-to-end ML pipelines. Industry surveys indicate that 26% of certified professionals report job promotions and 35% report salary increases following certification. The exam's 2025 update to include agentic AI and Microsoft Foundry aligns the credential with current enterprise priorities, making it more relevant than its predecessors to organizations deploying Azure OpenAI at scale.
5 sample questions with answers and explanations. The full bank has 1,392 questions, enough for 27 full-length practice exams.
Preview — answers shown1. An online image hosting service is using Azure AI Foundry Content Safety to analyze all uploaded images, which are stored in an Azure Blob Storage container. To allow the Content Safety resource to read the images from the storage container, what two configuration steps must be performed?
Multiple correct answersExplanation
To securely grant an Azure service like Content Safety access to another Azure resource like Blob Storage without using secrets, you must use a managed identity. The correct process involves two steps. First, you enable a system-assigned managed identity on the Content Safety resource, which creates a unique identity for it in Azure AD. Second, you go to the Blob Storage account and assign a suitable role, like Storage Blob Data Reader, to that new managed identity. This grants the Content Safety service permission to read the image data. User-assigned managed identities are not supported for this specific scenario. A SAS token would work but is less secure than a managed identity as it is a secret that could be leaked. Granting Contributor on the resource group is overly permissive.
2. Fabrikam wants to restrict access to their Azure AI Services resource so only requests from their corporate VNet are allowed, while maintaining the service's public IP address for logging purposes. The solution must route traffic over the Azure backbone network. What should they configure? (Select one!)
Explanation
VNet service endpoints route traffic over the Azure backbone network while the service retains its public IP address, which satisfies the logging requirement. Private endpoints assign a private IP from the VNet and remove public accessibility. IP firewall rules restrict by IP address but don't guarantee backbone routing. Front Door is unnecessary complexity for this requirement.
3. Contoso is reviewing the default content filter settings for their new Azure OpenAI deployment. Without any custom configuration, which content filtering features are enabled by default? (Select two!)
Multiple correct answersExplanation
By default, Azure OpenAI content filters have Direct Attack (Jailbreak) detection enabled and Protected Material detection for both text and code enabled, with a Medium severity threshold applied to harm categories. Indirect Attack (document injection) detection is NOT enabled by default and must be explicitly turned on. Groundedness detection and PII detection are preview features that are NOT enabled by default. Organizations should review these defaults and customize based on their specific use case and risk requirements.
4. Your organization has an Azure OpenAI resource. Data scientists need to create fine-tuning jobs and validate results, but only the ML platform team should deploy fine-tuned models to production endpoints. What roles should you assign? (Select two!)
Multiple correct answersExplanation
Azure AI User role allows creating fine-tuning jobs but NOT deploying models to production endpoints. Azure AI Owner role allows both creating fine-tuning jobs AND deploying fine-tuned models. Data scientists should have Azure AI User role, and the ML platform team should have Azure AI Owner role to maintain deployment control.
5. When you provision a new Azure AI Custom Vision service in your Azure subscription, what is the primary web-based tool you can use to graphically manage your projects, upload and tag images, and train your models?
Explanation
The Custom Vision portal, accessible at customvision.ai, is the dedicated web-based graphical interface for the service. It allows users to perform the entire model development lifecycle, from creating a project and uploading/tagging images to training, testing, and publishing models, all without writing any code. The Azure Portal is for managing the underlying Azure resources (keys, endpoints), not for the model development process itself. The other tools are not the primary interface for this service.
No. Microsoft retired AI-102 and the Azure AI Engineer Associate certification on June 30, 2026, and the official page confirms the renewal assessment is retired too. The exam can no longer be scheduled.
Exam AI-103, Developing AI Apps and Agents on Azure, which leads to the Microsoft Certified: Azure AI Apps and Agents Developer Associate certification. It is live and schedulable through Pearson VUE.
AI-103 runs 120 minutes instead of 100, centers on Microsoft Foundry (agents, RAG, multi-agent orchestration), weights generative AI and agentic solutions at 30 to 35 percent, and its audience profile names Python specifically, where AI-102 accepted Python or C#. Vision, text analysis, and information extraction drop to 10 to 15 percent each.
Per the April 16, 2026 outline: implement generative AI and agentic solutions (30-35%), plan and manage an Azure AI solution (25-30%), implement computer vision solutions (10-15%), implement text analysis solutions (10-15%), and implement information extraction solutions (10-15%).
700 on a scaled score of 100 to 1,000, the same model AI-102 used. The certification renews every year through a free online assessment on Microsoft Learn.
The credential stays on your Microsoft transcript, but the official page states the renewal assessment is retired, so it cannot be renewed when it expires. Microsoft's successor path for the AI Engineer role is AI-103.
Partially. Azure AI service planning, computer vision, NLP, and knowledge mining content overlaps with the AI-103 outline, so this 1,392-question bank helps on those domains. You still need to add AI-103's Microsoft Foundry, agentic, and image or video generation topics from the official study guide.
Administering Windows Server Hybrid Core Infrastructure (AZ-800)
AZ-800 · 898 questions
Microsoft Certified: Agentic AI Business Solutions Architect (AB-100)
AB-100 · 700 questions
Microsoft Certified: Azure Administrator Associate (AZ-104)
AZ-104 · 757 questions
Microsoft Certified: Azure AI Fundamentals (AI-900)
AI-900 · 464 questions
Microsoft Azure AI Fundamentals (AI-901)
AI-901 · 600 questions
Microsoft Certified: Azure Cosmos DB Developer Specialty (DP-420)
DP-420 · 677 questions
$17.99
One-time access to this exam