AI-901

Microsoft Azure AI Fundamentals

Free Microsoft AI-901 Practice Test

Prepare for the Microsoft Azure AI Fundamentals (AI-901) certification exam with this free AI-901 practice test. Challenge yourself with realistic exam-style questions covering Azure AI services, machine learning, computer vision, natural language processing, and generative AI. Receive instant results and compare your performance with other candidates.

About This Practice Exam

This free AI-901 Certification Practice Exam is designed to help candidates assess their readiness for the Microsoft Azure AI Fundamentals certification. The exam covers core AI concepts, machine learning fundamentals, computer vision, natural language processing, and generative AI services in Azure.

Skills Measured

✅ Describe Artificial Intelligence Workloads and Considerations
✅ Describe Fundamental Principles of Machine Learning
✅ Describe Features of Computer Vision Workloads
✅ Describe Features of Natural Language Processing Workloads
✅ Describe Features of Generative AI Workloads

Practice Exam Features

✅ Exam-Style Questions
✅ Instant Results
✅ Free Access
✅ Mobile Friendly
✅ Certification-Focused Content

🏆 AI-901 Top Performers

Compare your performance with other Microsoft Azure AI Fundamentals candidates. Complete the practice exam to earn your place on the leaderboard.

Pos.NameScoreDuration
1Dipanjan Sarkar100 %10 minutes 56 seconds
2Aseza100 %30 minutes 48 seconds
3h k98 %19 minutes 3 seconds
4Lakshmi Priya98 %21 minutes 4 seconds
5TAZ98 %33 minutes 30 seconds
6Abcd96 %17 minutes 16 seconds
7ank95 %10 minutes 5 seconds
8yuki95 %17 minutes 53 seconds
9Sourav Pattnaik93 %7 minutes 54 seconds
10RI NZ93 %15 minutes 55 seconds
Your highest score will automatically appear on the leaderboard after completing the exam.

Start Your Free Practice Exam

Good luck with your AI-901 preparation.

0%
0 votes, 0 avg
173

Report a question

You cannot submit an empty report. Please add some details.

Exam Instructions

  • Read each question carefully.
  • Select the best answer.
  • You may review previous questions before submission.
  • Use the 📌 bookmark icon beside the question number to mark difficult questions for review.
  • Detailed explanations are available after answering each question, while your final score will be displayed at the end of the exam.
  • The quiz will automatically submit when the timer expires.

Tip: Mark questions you're unsure about and review them before finishing the exam.

Good luck!

Time is up.

Your quiz has been submitted automatically.


A1-901 Free Certification Practice Exam

Get exam-ready for Microsoft Azure AI Fundamentals (AI-901). Practice with certification-focused questions, identify knowledge gaps, and receive instant results to measure your readiness before taking the official certification exam.

📋 Before You Start the Practice Exam

To save your score and track your progress, please enter your
Name and Email Address before starting the exam.

  • ✅ Your exam results will be stored in your personal exam history.
  • ✅ Review previous attempts and monitor your improvement over time.
  • ✅ Certificates and score reports (when applicable) will be linked to your information.
Important:
Please use the same email address every time you take a practice exam.
This helps us maintain accurate exam history, scores, and performance records.

🚀 Enter your details below and click Next to begin the exam.

1 / 40

1. A solution must meet two requirements:
- show whether each customer review is positive or negative
- generate a short condensed version of a long meeting transcript

Which TWO techniques should you use? (Select TWO.)

2 / 40

2. You are defining a custom field for InvoiceNumber in a document analyzer.

Snippet:
from azure.ai.contentunderstanding.models import (
ContentFieldDefinition,
ContentFieldType,
GenerationMethod,
)
field = ContentFieldDefinition(
type=ContentFieldType.STRING,
______,
description="Invoice number on the document",
)

Which code should replace the missing section?

3 / 40

3. A retailer wants a short list of the main topics that appear in support tickets. They do not want a rewritten paragraph.

Which text analysis technique should they use?

4 / 40

4. You want a Python app to return the overall sentiment for each review.

Snippet:
from azure.core.credentials import AzureKeyCredential
from azure.ai.textanalytics import TextAnalyticsClient
client = TextAnalyticsClient(endpoint=endpoint, credential=AzureKeyCredential(key))
documents = ["The room was clean, but check-in was slow."]
result = client.________(documents)
for doc in result:
print(doc.sentiment)

Which code should replace the missing section?

5 / 40

5. A manager wants a short condensed version of a long incident report. The most appropriate text analysis technique is ________.

Which answer best completes the sentence?

6 / 40

6. Which THREE pairs are correctly matched? (Select THREE.)

7 / 40

7. A bank uses AI to recommend whether a loan application should be escalated for manual review. Which design choice best reflects accountability?

Select only one answer.

8 / 40

8. For each of the following statements, determine whether the statement is correct.

Statement 1: In an accountable AI solution, the AI system should be the final authority for decisions that affect people's lives.
Statement 2: Logging who published a model and why it changed supports accountability.
Statement 3: Governance sign-off before deployment supports accountability.

Select the correct combination.

9 / 40

9. In responsible AI, ________ means that people remain answerable for how an AI system is designed, deployed, and monitored.

Which answer best completes the sentence?

Select only one answer.

10 / 40

10. A developer retrieves the definition of a prebuilt analyzer, edits the schema, and wants stable production behavior across API versions.

What should the developer do next?

11 / 40

11. An AI team wants one practical step to improve fairness reviews before deployment.

Which step is best?

Select only one answer.

12 / 40

12. You copied a Python sample from the playground Code tab after deploying a model named ops-assistant.

Snippet:
response = client.responses.create(
# missing fragment
input="Summarize this incident."
)

Which code should replace the missing section?

13 / 40

13. A team is building a custom analyzer for scanned expense forms. The solution must read image-based PDFs and return page location and confidence for extracted fields.

Which TWO configuration choices best fit this requirement? (Select TWO.)

14 / 40

14. Which THREE pairs are correctly matched? (Select THREE.)

15 / 40

15. Which THREE pairs are correctly matched? (Select THREE.)

16 / 40

16. For each of the following statements, determine whether the statement is correct.
Statement 1: Speech recognition converts spoken audio into text.
Statement 2: Text to speech generates synthesized audio from text.
Statement 3: Speaker diarization is used to control pitch and speaking rate of generated audio.
Select the correct combination.

17 / 40

17. In the Python quickstart, after analyzing an image with prebuilt-imageSearch, the code reads the ________ field to print the image description.

18 / 40

18. Which THREE pairs are correctly matched? (Select THREE.)

19 / 40

19. A support center wants to convert live customer calls into written text for review.

20 / 40

20. Which TWO statements are true about how generative AI models work? (Select TWO.)

21 / 40

21. You are building a lightweight app that listens in English and returns translated text in French.

translation_config = speechsdk.translation.SpeechTranslationConfig(
    subscription=speech_key,
    region=service_region
)
translation_config.speech_recognition_language = "en-US"
translation_config._______("fr")

22 / 40

22. Which THREE pairs are correctly matched? (Select THREE.)

23 / 40

23. A team wants to alert operators when a safety score drops below the accepted threshold.

safety_score = result["safety_score"]
if safety_score < 0.90:
    ________
else:
    print("Safety check passed")

24 / 40

24. A training app must read lesson text aloud to learners. Which capability should the app use?

25 / 40

25. You are building a Python app that listens to the default microphone and returns one spoken utterance as text.

import azure.cognitiveservices.speech as speechsdk

audio_config = speechsdk.audio.AudioConfig(use_default_microphone=True)
speech_recognizer = speechsdk.SpeechRecognizer(
    speech_config=speech_config,
    audio_config=audio_config
)
# Missing line
print(result.text)

26 / 40

26. A web app must capture spoken microphone input and show live captions while the user is talking. Which Azure Speech capability should you add to the app?

27 / 40

27. You are calling a deployed MAI image model to create a picture from a text prompt.

endpoint = os.environ["AZURE_ENDPOINT"]

url = f"{endpoint}/______"

Which code should replace the missing section?

28 / 40

28. You need descriptions for separate parts of a photo, not just one overall sentence for the entire image. Which capability is the best fit?

29 / 40

29. You are building a lightweight Python client for video extraction.

video_url = "https://example.com/demo.mp4"

poller = client.begin_analyze(
analyzer_id="prebuilt-videoSearch",
inputs=[AnalysisInput(url=video_url)],
)

result = poller.result()

for media in result.contents:
video_content = media
print(video_content.________)

Which code should replace the missing section?

30 / 40

30. Which THREE pairs are correctly matched? (Select THREE.)

31 / 40

31. Which TWO statements describe image-generation model capabilities? (Select TWO.)

32 / 40

32. Which THREE pairs are correctly matched? (Select THREE.)

33 / 40

33. Protecting prompts, outputs, and personal data from unauthorized access is a ________ consideration in responsible AI. Which answer best completes the sentence?

34 / 40

34. You need to generate a vector from text so the output can be used in semantic search.

import os
from openai import OpenAI

client = OpenAI(
api_key=os.getenv("AZURE_OPENAI_API_KEY"),
base_url="https://YOUR-RESOURCE-NAME.openai.azure.com/openai/v1/"
)

text = "Contoso invoice 1024 is overdue"

# Missing line

print(response.data[0].embedding[:5])

Which code should replace the missing section?

35 / 40

35. A model selected for chat completions that can accept text and images as input is a ________. Which answer best completes the sentence?

36 / 40

36. Which THREE pairs are correctly matched? (Select THREE.)

37 / 40

37. An AI team decides to authenticate to Azure resources without storing secrets in application code. This decision primarily strengthens ________. Which answer best completes the sentence?

38 / 40

38. You need to send an image to a deployed multimodal model in Python. Which TWO input approaches are supported for the image? (Select TWO.)

39 / 40

39. A designer enters the prompt "a futuristic solar-powered café on Mars" and wants a brand-new image created. Which capability is the best fit?

40 / 40

40. You are choosing a model for an assistant that must reason through a request and call tools during the response. Which model type is the best fit?

Your score is

The average score is 67%