EnglishDeutschFrançaisEspañolPortuguês

Microsoft · AI-901 · Beginner

Microsoft Azure AI Fundamentals (AI-901) — Practice Questions and Mock Exam

Prepare for AI-901 with original practice questions and clear answer explanations. Ask Alex, your AI tutor, when you need more detail, use your results to identify topics to review, and practice your pacing with timed mock exams.

50Mock exam questions
45minTime limit
700/ 1000Passing score

Checked against Microsoft · September 2026 · Current exam version

Reviewed by David Braun, Founder · August 27, 2026

About the exam

Exam AI-901, Microsoft Azure AI Fundamentals, validates foundational knowledge of AI and machine learning concepts and the ability to implement basic AI solutions using Microsoft Foundry (formerly Azure AI Foundry). It succeeds AI-900, reorganized around generative and agentic AI, responsible-AI principles, and Foundry-based development. Implementing solutions in Foundry carries the heavier exam weight at 55–60% against 40–45% for identifying AI concepts, and covers generative AI, text, speech, vision, and information-extraction solutions built through the Foundry portal and SDK, including Azure Content Understanding for extraction tasks.

This beginner-level certification is designed for candidates at the start of an AI solution development career who already have conceptual knowledge of Azure AI services. Candidates need foundational technical skills, including familiarity with Python syntax and Azure resources, and are expected to identify AI workloads and apply responsible AI principles alongside the hands-on Foundry work.

Try five AI-901 questions

Try five practice questions from the app’s current Microsoft Azure AI Fundamentals question bank, with answers and explanations.

Identify AI concepts and capabilities1 / 5

A company wants the model's answers to reflect private documents and recent information that was not in the model's training data, without retraining the model. Which approach directly addresses this and helps reduce hallucinations?

AlexFull explanation from Alex

A language model only knows what was in its training data at the time it was trained, so it cannot know your private documents or anything that changed since. Retrieval-augmented generation, usually shortened to RAG, fixes that without touching the model's weights: at question time the application searches an index over your own source content, pulls back the passages that look relevant, and inserts them into the prompt alongside the user's question. The model then answers from material it can actually see, which is why the same technique that solves the stale-and-private-data problem also cuts down on invented answers.

The other options each turn a knob without adding knowledge. Raising the temperature makes sampling more random, which produces more invention rather than less. Shrinking the context window would shorten answers and, worse, leave less room for the retrieved passages. Disabling the tokenizer is not a supported operation and says nothing about which facts the model can reach.

Exam tip: when a scenario pairs our own documents or recent information with the phrase without retraining, the intended answer is retrieval, not fine-tuning and not a decoding parameter.

Sourcelearn.microsoft.com

Implement AI solutions by using Microsoft Foundry2 / 5

A retail app lets users upload a photo and then asks the model follow-up questions about it across several turns (for example, 'What color is the jacket?' then 'Is it suitable for rain?'). Which Foundry capability supports this multi-turn, conversational image reasoning?

AlexFull explanation from Alex

Two facts combine into the answer. First, image understanding is delivered by vision-enabled chat models, large multimodal models that analyze images and answer questions about them in text. Second, you use them by calling the chat completions interface, which is designed for multi-turn conversations. So the image arrives in a user message, follow-up questions arrive as later turns, and the model reasons over the picture together with everything said so far. Asking about the jacket's color and then whether it suits rain is simply two turns of one conversation.

The distractors each do something real, but not this. An image generation model produces pictures from text, which is the opposite direction of travel. The tagging feature of the image analysis service returns labels and confidence scores for a single image and holds no conversation, so a follow-up question has nowhere to go. The embeddings interface turns content into vectors for similarity search, which is useful for finding a similar product and useless for answering a question in words.

Exam tip: when a scenario mentions follow-up questions or context carried across turns, the answer lives on the chat surface. Feature-style vision services return a fixed result set per call and cannot hold a dialogue.

Sourcelearn.microsoft.com

Identify AI concepts and capabilities3 / 5

A global news site wants to convert article text from English into French and German in real time so readers can choose their preferred language. Which Azure AI service is the best fit for this text-only workload?

AlexFull explanation from Alex

Start by classifying the input, because that is what separates these four services. The article text is written text, and the job is turning written text in one language into written text in another. That is neural machine translation, which is the Translator service: it runs in real time as well as in batch, covers a long list of languages, and also handles transliteration and language detection.

The near-miss is the Speech service. It does translate, but it translates spoken audio, through speech-to-text and speech translation pipelines. Nothing in this scenario involves audio, so reaching for it would mean paying for machinery the workload never uses. Content Safety inspects text and images for harmful material and returns severity scores; it never produces a translation. Vision extracts information from images, which is the wrong modality entirely.

Exam tip: on the workload-identification questions, match the input modality first, whether that is text, audio, image or video, and only then choose among the services that accept it. That single habit resolves most service-selection items on this exam.

Sourcelearn.microsoft.com

Identify AI concepts and capabilities4 / 5

In Microsoft Foundry, what does a Provisioned Throughput Unit (PTU) represent?

AlexFull explanation from Alex

A provisioned throughput unit is a unit of capacity, not a unit of money, of text, or of configuration. When you choose a provisioned deployment instead of paying per token you are reserving a fixed slice of model processing capacity and holding it for your workload, and the number of units you allocate is how you size that slice. Capacity is granted as quota, and the same quota can be spent on any supported model, which is why the unit is deliberately generic rather than tied to one model.

The distractors each borrow a word from somewhere else on the platform. A fixed charge per API call describes a billing model, and provisioned deployments bill per unit per hour rather than per call. The number of tokens allowed in a single prompt is the context window, a property of the model. The maximum number of stop sequences is a request parameter and has nothing to do with capacity.

Exam tip: reserved-capacity questions turn on predictable throughput and consistent latency. A scenario with steady, high-volume traffic and a need for stable latency points at provisioned throughput, while bursty or experimental workloads point back to paying per token.

Sourcelearn.microsoft.com

Identify AI concepts and capabilities5 / 5

An organization wants to build an application that autonomously plans multi-step tasks, calls external tools and APIs to fetch real-time data, and makes decisions to complete a goal with minimal human intervention. Which type of AI workload best describes this?

AlexFull explanation from Alex

Three properties in the scenario point at the same workload type: the application plans a task over multiple steps, it calls external tools and APIs to fetch live data, and it decides what to do next with little human intervention. That combination is agentic AI. A managed agent runtime is built around exactly those pieces, managing the conversation, the tool calls and the agent lifecycle, while tools reach outside through a catalog, the model context protocol and OpenAPI definitions.

The distractors are all narrower, single-purpose workloads that produce one output from one input. Anomaly detection scores data points against expected behavior and raises a flag; it neither plans nor acts. Optical character recognition extracts text from an image. Image classification assigns a label to a picture. None of them calls a tool, carries state across steps, or decides what to do next.

Exam tip: the giveaway words for agentic workloads are autonomous, multi-step, tool or API calling, and goal. When a scenario has all four, no single-task perception or prediction workload can be the answer.

Sourcelearn.microsoft.com

429 practice questions

The Pass-IT question pool gives you material to practice for AI-901. A Pass-IT mock exam uses 50 questions and a 45-minute time limit; these are practice settings.

Pool details: AI-901

Exam details checked against MicrosoftSeptember 3, 2026

date of the last check against the official Microsoft source

Passing score700 / 1,000

as published by Microsoft

Objectives in the guide36 objectives listed in the official guide

across 2 domains in the official exam guide

Pool size429 questions

= The pool size is equivalent to 8 sets of 50 questions; this does not mean that each mock exam uses a separate set.

Blueprint domains2 domains in the exam blueprint

Identify AI concepts and capabilities 183 · Implement AI solutions by using Microsoft Foundry 246

Recorded as checked against sources429 of 429

questions recorded as having their answer, options, and explanation checked against official Microsoft documentation

What's on the exam

Implementing AI solutions with Microsoft Foundry carries the majority of the exam at 55–60%, covering hands-on work: deploying models, building lightweight chat and agent clients, and applying Foundry Tools to text, speech, vision, and document extraction. Identifying AI concepts and capabilities makes up the remaining 40–45%, covering responsible-AI principles, model components, and workload recognition.

The heavier Foundry weighting means AI-901 tests less pure theory than its AI-900 predecessor and more direct familiarity with the Foundry portal and SDK: knowing a concept exists isn't enough if you've never deployed or called it.

Exam blueprint: AI-901

Identify AI concepts and capabilities40–45%

Ground AI decisions in responsible-AI principles like fairness, privacy, and accountability, understand what shapes a model's configuration and deployment options, and recognize common workload categories - generative and agentic systems, text and speech analysis, computer vision, and extracting information from documents, images, audio, and video.

≈ 6 h
Implement AI solutions by using Microsoft Foundry55–60%

Build and deploy Foundry-hosted GenAI apps and agents - prompt design, model deployment, lightweight clients - then extend those same patterns to text, speech, computer vision, image generation, and document, audio, and video information extraction.

≈ 9 h

Exam format and question types

AI-901 draws 40–60 questions in a 45-minute window, with multiple-choice, multiple-response, drag-and-drop, true/false, and dropdown-selection items throughout. A scaled score of 700 or higher, out of 1000, is required to pass. Most questions cover generally available features; commonly used preview features can also appear.

Question types: AI-901

Multiple Choice42%

Select the single answer that best meets the question’s requirements.

Drag & Drop18%

Move items into the slots, groups, or sequence specified by the task.

Multiple Response18%

Select multiple answers. Follow the question’s instructions on how many to choose.

Dropdown12%

Choose options from dropdown menus to complete a statement or configuration.

True / False10%

Decide whether a statement is true or false, paying attention to its conditions and wording.

See Microsoft for official question-format information. The shares shown describe the Pass-IT practice pool; they do not establish the proportions on the official exam.

Preparing for AI-901

AI-901 is delivered online with remote proctoring or at a Pearson VUE test center, and is currently offered in English only. As a Fundamentals certification, it does not expire and carries no renewal requirement.

Preparation and logistics: AI-901

Preparation

Illustrative study time10–25 h

illustrative planning range: 10 h with relevant experience to 25 h when starting out; your needs may fall outside this range

LevelBeginner

Taking and maintaining the certification

DeliveryOnline proctored or Pearson VUE test center
Retake policy24-hour wait after first failure; 14-day wait for subsequent retakes; maximum 5 attempts per 12 months

Common pitfalls

Topics to review: AI-901

  1. 01Responsible AI principle pairs

    Under exam pressure, reliability-and-safety gets confused with accountability, and privacy-and-security gets confused with transparency, among the six responsible AI principles.

  2. 02Service boundary confusion

    Azure AI Vision performs OCR and general image analysis, Document Intelligence extracts data from known form layouts, and Content Understanding handles custom schema-defined multimodal extraction.

  3. 03RAG over fine-tuning

    When a solution needs current or proprietary information grounded into responses, retrieval-augmented generation is the expected answer, not fine-tuning.

  4. 04Generation evaluation metrics

    Groundedness, relevance, coherence, and fluency are separate metrics for judging generative output, and the exam expects candidates to tell them apart.

  5. 05Content Safety scope

    Content Safety screens four harm categories — hate, sexual, violence, and self-harm — by severity, while Prompt Shields is the separate defense against jailbreak and prompt-injection attempts.

Frequently asked questions

How long is the Microsoft Azure AI Fundamentals exam?

The AI-901 exam has 50 questions and a 45-minute time limit.

What is the passing score for Microsoft Azure AI Fundamentals?

The passing score for the AI-901 exam is 700 / 1000.

Which pitfalls should I review when preparing for Microsoft Azure AI Fundamentals?

Topics to review include Responsible AI principle pairs, Service boundary confusion, RAG over fine-tuning, Generation evaluation metrics, Content Safety scope. Work through examples to check that you understand the distinctions and can explain your answer.

What happened to AI-900?

AI-900 has been retired and AI-901 is the Azure AI Fundamentals exam that replaces it. The scope moved with it: AI-901 puts most of its weight on building with Microsoft Foundry rather than on describing AI workloads. Our guide covers what changed. Read about the AI-900 to AI-901 move

What does it mean that AI-901 is in beta?

AI-901 is currently offered as a beta exam, which is Microsoft's live trial phase for new exams. The certification you earn is the real one, but results take longer to arrive than for an established exam because scoring is finalised after the beta period.

Do you need to know Python for AI-901?

Some, yes, and this is the biggest change from AI-900. Microsoft expects conceptual knowledge of Azure AI solutions plus Python syntax and basic programming technique, so it is no longer a purely descriptive fundamentals exam despite the name.

Which AI-901 topics carry the most marks?

Implementing AI solutions with Microsoft Foundry is the dominant domain at roughly 58%, with AI concepts and capabilities making up the remaining 42%. Only two domains means there is nowhere to hide: the Foundry material alone decides most of the result.

What happens if you fail AI-901?

You can retake after 24 hours. Each later attempt needs a 14-day wait, with a maximum of five attempts in any 12-month period.

One certification, 12 months

Practice for AI-901

Focus your practice on one certification, or choose Pro to practice across all certifications.

Start a free practice sessionTry the first 20 questions without a card to see whether the practice suits you.

For eligible purchases: money-back guarantee if you fail your exam.

View guarantee terms →