Home › Certifications › Azure AI Fundamentals (AI-901)
250 multiple-choice questions, 120 flashcards and 10 scenario simulations, organised into 6 chapters, written to the Microsoft AI-901 blueprint. Every question carries a full rationale.
Study Azure AI Fundamentals (AI-901) in CoStudy →
Microsoft AI-901 (Azure AI Fundamentals) — study guide dated 15 April 2026, replacing AI-900 which retired 30 June 2026. Two domains: Identify AI concepts and capabilities 40-45%, Implement AI solutions using Microsoft Foundry 55-60%. Passing score 700 on a 1-1000 scaled range (not 70% correct). No case studies and no lab. AI-901 assumes Python, REST APIs, SDKs and CLIs, and it eliminated the classic machine-learning domain that AI-900 tested. Fundamentals certifications do not expire.
CoStudy's Azure AI Fundamentals (AI-901) bank holds 380 items organised into 6 chapters that follow the published blueprint. Every multiple-choice question carries a written rationale explaining why the correct answer is correct and why each distractor is tempting but wrong, and the bank includes 10 scenario-based simulations.
Each chapter follows a domain of the published exam outline. Practise one on its own:
A sample of 12 multiple-choice questions from the bank, with the full rationale shown.
Face recognition features in Foundry Tools sit behind a Limited Access approval mainly because of:
Answer: C — Responsible AI risk around privacy and possible misuse
C) Right answer - facial recognition raises real privacy and misuse concerns, so Microsoft gates the sensitive features behind an eligibility review. A) Spend is controlled with quotas and budgets, not gating. B) Bandwidth is an engineering matter. D) Storage is cheap and is not why the feature is restricted.
Which statement does NOT describe one of Microsoft's six responsible AI principles?
Answer: D — Systems should minimize the cloud spend incurred by every inference call
D) Correct — controlling inference cost is an engineering and financial concern, not one of the six responsible AI principles. A) Tempts as a possible omission, but this describes fairness, which is a listed principle. B) Tempts likewise, but this describes reliability and safety. C) Tempts likewise, but this describes transparency.
A large language model (LLM) is best described as:
Answer: B — A foundation model trained on text that generates language
B) Right answer - an LLM is a foundation model with a very large parameter count trained on huge text corpora, and it generates human-like language. A) A database stores and queries records rather than generating text. C) A protocol defines message exchange on the wire. D) A framework structures application code and has no learned parameters.
An application sets a low max tokens value and users report that answers stop mid-sentence. What does this parameter actually do?
Answer: B — It sets a hard ceiling on the number of tokens generated
B) Correct — max tokens is a hard cap on generation, and when it is hit the response simply stops, which is why answers appear truncated. A) Tempts as the single most common misconception; the parameter does not change the model's style, only where generation halts. C) Tempts by reversing the direction; the cap applies to output, while input is bounded by the context window. D) Tempts by inventing a billing mechanic that does not exist.
An operations group wants software that, given a goal such as "resolve this ticket", plans its own steps, calls internal tools to look up and update records, and continues until the goal is met or it escalates. Which workload category does this describe?
Answer: C — Agentic AI, because the system plans and takes actions toward a goal autonomously
C) Correct — agentic AI is the category in which a model-driven system reasons about a goal, decides on a sequence of actions, invokes tools and iterates with limited human intervention. A) Tempts because text is interpreted along the way, but text analysis produces insights from text rather than taking actions. B) Tempts because data is read, but information extraction pulls structured values from documents and does not act on a goal. D) Tempts and is the closest wrong answer: generation is a component, but writing text alone lacks the planning and tool use that define the workload.
Which is NOT a feature of Azure Language in Foundry Tools?
Answer: C — Classifying the subject of an image
A, B and D) All are text capabilities of Azure Language in Foundry Tools. C) Correct — image classification is handled by Azure Vision in Foundry Tools, not by the language capability.
Azure OpenAI in Foundry Models gives you:
Answer: B — Managed access to OpenAI models with enterprise controls
B) Right answer - the service runs OpenAI models inside Azure with enterprise identity, networking and regional data handling applied. A) These are proprietary OpenAI models; open-weight models sit elsewhere in the model catalog. C) Usage is billed by consumption or reserved capacity. D) The hardware is abstracted away from the customer.
A support tool must transcribe recorded calls and then summarize them. The MOST appropriate approach in Microsoft Foundry is:
Answer: B — Use Azure Speech in Foundry Tools, then a generative model to summarize
B) Correct — speech-to-text produces the transcript, and a generative model then does the language task over that text. A) Image generation cannot process audio. C) Translation converts between languages; it does not transcribe or summarize. D) Fine-tuning on raw waveforms is not how a text model is adapted.
The PRIMARY problem that retrieval-augmented generation addresses is that a model:
Answer: B — Does not know private or recent data
B) Correct — the gap RAG closes is knowledge the model was never trained on: internal documents and information newer than training. A) Structured output is a prompting matter. C) Models do follow system prompts. D) Multiple examples are routine.
Embeddings are:
Answer: B — Numeric vectors for text so similar meanings sit close
B) Right answer - an embedding maps text into a vector so that semantically similar passages land near each other, which is what makes vector search and grounding work. A) Image compression is unrelated to meaning. C) Backups are copies of stored data. D) Compiled code is an executable artifact, not a similarity space.
A team submits an image-generation prompt and receives a refusal. Which explanation is MOST likely?
Answer: B — A content safety filter blocked the prompt as violating
B) Correct — content safety filters evaluate image prompts and block requests that violate policy, returning a refusal instead of an image. A) A generation model is not required to be fine-tuned first. C) Image models do not need an accompanying audio file. D) Masks are only needed for edits, not for generation.
A product team wants a synthesized narrator whose voice matches their brand's existing spokesperson style. Which capability of Azure Speech in Foundry Tools addresses this?
Answer: C — Custom neural voice
C) Correct — custom neural voice lets an organization build a synthetic voice matched to a chosen speaker, subject to consent and responsible-use review. A) Diarization separates speakers in recognition output. B) Language identification detects the spoken language. D) Pronunciation assessment scores a learner's speech.
6 sample cards from the 120 in the bank.
What does the max tokens setting limit, and what is the classic mistake?
It caps the length of the generated response, not the length of the prompt. The classic mistake is setting it too low and getting output cut off mid-sentence, then blaming the model — the response is truncated, not finished.
What is a multimodal model?
A model that accepts more than one kind of input — text plus images, and in some cases audio — in a single prompt and reasons over them together. It removes the need to pre-convert an image or a recording into text before the model can use it.
Name the six Microsoft responsible AI principles.
Fairness • Reliability and safety • Privacy and security • Inclusiveness • Transparency • Accountability. The first four are operational qualities of the system; transparency and accountability are governance qualities that sit over the whole lifecycle.
What is Microsoft Foundry?
Microsoft's unified platform for building generative AI solutions — a model catalog, deployment and endpoint management, prompt and agent tooling, evaluation and safety controls, and the Foundry Tools capabilities, all reachable from the Foundry portal or the SDKs.
What is Artificial Intelligence (AI)?
Systems that perform tasks that typically require human intelligence — perception, reasoning, language, learning.
Give two capabilities Azure Vision in Foundry Tools offers that you would not build with a chat prompt.
Optical character recognition tuned for dense printed and handwritten text at scale, and image analysis returning structured tags, captions, object bounding boxes and people detection. These are deterministic, high-volume and priced per image, where a chat prompt is a per-token reasoning call.
These samples are a small slice. The full bank runs flashcards, multiple choice and timed mock exams with per-chapter progress tracking, on the web and in the iOS app.
Open Azure AI Fundamentals (AI-901) →
The Azure AI Fundamentals (AI-901) bank holds 380 items: 250 multiple-choice questions, 120 flashcards and 10 scenario-based simulations. 18 of them are on this page to read free, with no signup.
Yes. Every multiple-choice item carries a written rationale that states the controlling principle behind the correct answer and then addresses each wrong option in turn — why it tempts and precisely where it fails. Knowing why the plausible answer was wrong is worth more than knowing which letter was right.
It is organised into 6 chapters that follow the published exam blueprint: Responsible AI Principles; Generative AI Models and Selection; AI Workloads and Capabilities; Microsoft Foundry — Models, Deployment and Prompts; Building Chat Clients and Agents; Multimodal, Speech, Vision and Content Understanding. The number of questions in each chapter is proportional to that domain's published weight, so working through the bank exposes you to roughly the mix the real exam uses.
Microsoft AI-901 (Azure AI Fundamentals) — study guide dated 15 April 2026, replacing AI-900 which retired 30 June 2026. Two domains: Identify AI concepts and capabilities 40-45%, Implement AI solutions using Microsoft Foundry 55-60%. Passing score 700 on a 1-1000 scaled range (not 70% correct). No case studies and no lab. AI-901 assumes Python, REST APIs, SDKs and CLIs, and it eliminated the classic machine-learning domain that AI-900 tested. Fundamentals certifications do not expire.
The samples on this page are free to read in full, rationales included, with no account. The complete 380-item bank, the timed mock exams and per-chapter progress tracking are part of CoStudy on the web and in the iOS app.
Last reviewed 2026-08-22. Banks are written against the certifying body's published exam outline and re-checked when that outline changes — exams get renumbered, retired and reweighted, and a bank written to a superseded outline teaches the wrong proportions. Figures that are re-indexed annually are deliberately not asserted as rules; the questions test the governing principle instead.
This bank is written against Microsoft's published exam material. Check Microsoft Credentials study guides for the current outline, fees and eligibility rules — those change, and the certifying body is the only authority on them. CoStudy is not affiliated with Microsoft.