“`html id=”5j9nqk”
AI-901

Microsoft Azure AI Fundamentals

Free AI-901 Certification Practice Exam

Prepare for the Microsoft Azure AI Fundamentals (AI-901) certification exam with this free practice exam. Test your knowledge of Artificial Intelligence and Azure AI services with exam-style questions and receive instant results.

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

Start Your Free Practice Exam

Good luck with your AI-901 preparation.

0%
0 votes, 0 avg
0

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. Which THREE pairs are correctly matched? (Select THREE.)

2 / 40

2. 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.

3 / 40

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

4 / 40

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

5 / 40

5. 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.

6 / 40

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

7 / 40

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

8 / 40

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

9 / 40

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

10 / 40

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

Which text analysis technique should you use?

11 / 40

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

12 / 40

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

13 / 40

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

Which text analysis technique should they use?

14 / 40

14. To fine-tune pitch, speaking rate, or pronunciation for synthesized voice output, submit ________.

15 / 40

15. An AI app will analyze support tickets that may contain personal information. Which two actions best support privacy and security? (Select TWO.)

16 / 40

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

17 / 40

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

Which step is best?

Select only one answer.

18 / 40

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

19 / 40

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

20 / 40

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

21 / 40

21. You want a client call that sends both text and an image to a model.

image_url = "https://example.com/item.png"

response = client.complete(
messages=[
SystemMessage("You are a helpful assistant."),
UserMessage(content=[
TextContentItem(text="Describe this product photo."),
# Missing line
]),
],
temperature=0,
)

Which code should replace the missing section?

22 / 40

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

23 / 40

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

24 / 40

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

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. Which THREE pairs are correctly matched? (Select THREE.)

27 / 40

27. 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.

28 / 40

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

29 / 40

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

- Statement 1: A deployed multimodal model can accept image input in addition to text.
- Statement 2: A public image URL can be used as input for image interpretation.
- Statement 3: Every multimodal model supports multiple images in the same chat turn.

Select the correct combination.

30 / 40

30. For each of the following statements, determine whether the statement is correct.
Statement 1: Generative AI models are trained on large datasets to learn patterns.
Statement 2: A base model is already customized for a specific use case.
Statement 3: Embeddings can be used to represent semantic similarity between inputs.
Select the correct combination.

31 / 40

31. 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 ________.

32 / 40

32. Which statement best describes fairness in an AI solution?

Select only one answer.

33 / 40

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

34 / 40

34. 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.

35 / 40

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

36 / 40

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

37 / 40

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

38 / 40

38. Which two statements align with Microsoft's documented Azure Direct Models data privacy commitments? (Select TWO.)

39 / 40

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

40 / 40

40. Which TWO outputs are commonly associated with sentiment analysis? (Select TWO.)

Your score is

The average score is 0%

“`