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
1Aseza100 %30 minutes 48 seconds
2TAZ98 %33 minutes 30 seconds
3Abcd96 %17 minutes 16 seconds
4ank95 %10 minutes 5 seconds
5RI NZ93 %15 minutes 55 seconds
6Rohit K S93 %42 minutes 4 seconds
7ani90 %8 minutes 25 seconds
8ank89 %15 minutes 35 seconds
9m88 %45 minutes 25 seconds
10Komane Haward86 %10 minutes 50 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
114

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. Which statement best describes audio_url in a multimodal chat request?

3 / 40

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

4 / 40

4. You need to identify people, organizations, and locations mentioned in support emails.

Which text analysis technique should you use?

5 / 40

5. A company collects short product reviews and wants to classify each review as positive, neutral, or negative.

Which text analysis technique should they use?

6 / 40

6. Even when an organization uses managed AI services, the organization remains ________ for how the AI solution is used and governed.

Which answer best completes the sentence?

Select only one answer.

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. To reduce bias in an AI solution, the training and evaluation data should be ________ of the people who will be affected by the system.

Which answer best completes the sentence?

Select only one answer.

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. For each of the following statements, determine whether the statement is correct.

Statement 1: Fairness concerns can appear when training data underrepresents part of the population.
Statement 2: Fairness and inclusiveness are identical terms in Microsoft's responsible AI principles.
Statement 3: Comparing model behavior across demographic groups can help identify fairness issues.

Select the correct combination.

13 / 40

13. 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?

14 / 40

14. A recruiting model consistently scores candidates from one age group lower, even when qualifications are similar.

Which action is the best fairness-focused response?

Select only one answer.

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. Which TWO capabilities are part of speech recognition? (Select TWO.)

18 / 40

18. You want to create semantic vectors for text so your application can compare meaning between phrases.

from azure.ai.inference import EmbeddingsClient
from azure.core.credentials import AzureKeyCredential
client = EmbeddingsClient(endpoint=endpoint, credential=AzureKeyCredential(key))
response = client._______(
    input=["invoice number", "bill identifier", "customer address"]
)
print(len(response.data[0].embedding))

19 / 40

19. A model that has not been customized or fine-tuned for a specific use case is called a ________.

20 / 40

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

21 / 40

21. After you retrieve the OpenAI-compatible client, a basic Responses API call sends the user prompt in the ________ parameter.

22 / 40

22. An AI app should continue to behave safely when users submit unexpected or adversarial prompts. This is a reliability and safety consideration because the system must resist ________.

23 / 40

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

24 / 40

24. A team is building an AI solution that summarizes medical notes for clinicians. Which consideration is most important for reliability and safety?

25 / 40

25. 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")

26 / 40

26. 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)

27 / 40

27. A moderation pipeline sometimes misses harmful content and occasionally blocks safe content. Which two actions best align with reliability and safety? (Select TWO.)

28 / 40

28. 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?

29 / 40

29. 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?

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. You are preparing a request for an image-generation model in Foundry.

payload = {
"model": deployment_name,
________
"width": 1024,
"height": 1024
}

Which code should replace the missing section?

33 / 40

33. A model that produces a human-readable sentence describing an existing image is using ________. Which answer best completes the sentence?

34 / 40

34. You want Python code that matches the way a prompt agent is defined in Microsoft's quickstart.

from azure.ai.projects.models import PromptAgentDefinition

agent = project.agents.create_version(
agent_name=AGENT_NAME,
definition=PromptAgentDefinition(
model=MODEL_NAME,
________
),
)

Which code should replace the missing section?

35 / 40

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

36 / 40

36. A design team needs a model for prompt-based visual creation. Which TWO capabilities most directly indicate an image generation model? (Select TWO.)

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. Which two statements align with Microsoft's documented Azure Direct Models data privacy commitments? (Select TWO.)

39 / 40

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

40 / 40

40. A school plans to release an AI tutor that processes student conversations. Before broad rollout, which review is most directly aligned to this responsible AI principle?

Your score is

The average score is 65%