Microsoft Azure AI Fundamentals - AI-900 Exam Practice Test

What should you implement to identify hateful responses returned by a generative Al solution?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
You have a database that contains a list of employees and their photos.
You are tagging new photos of the employees.
For each of the following statements select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:

These answers are derived from the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Explore computer vision in Microsoft Azure." The Azure Face service, part of Azure Cognitive Services, provides advanced facial recognition capabilities including detection, verification, identification, grouping, and similarity analysis.
Let's analyze each statement:
* "The Face service can be used to group all the employees who have similar facial characteristics." # YesThe Face service supports a grouping function that automatically organizes a collection of unknown faces into groups based on visual similarity. It doesn't require labeled data; instead, it identifies clusters of similar-looking faces. This is particularly useful when building or validating datasets of people.
* "The Face service will be more accurate if you provide more sample photos of each employee from different angles." # YesAccording to Microsoft documentation, model accuracy improves when you provide multiple high-quality images of each person under different conditions-such as varying lighting, poses, and angles. This diversity allows the service to better learn unique facial characteristics and improves recognition reliability, especially for identification and verification tasks.
* "If an employee is wearing sunglasses, the Face service will always fail to recognize the employee." # NoThis is incorrect. While occlusions (like sunglasses or hats) can reduce accuracy, the service may still recognize the person depending on how much of the face remains visible. Microsoft Learn explicitly notes that partial occlusion affects recognition confidence but does not guarantee failure.
In conclusion, the Face service can group similar faces (Yes), become more accurate with diverse samples (Yes), and still recognize partially covered faces though with lower confidence (No). These principles align directly with the Face API's core functions and AI-900 learning objectives regarding computer vision and responsible AI-based facial recognition.
Which statement is an example of a Microsoft responsible AI principle?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn documentation for Azure AI Custom Vision, this service is a specialized part of the Azure AI Vision family that enables developers to train custom image classification and object detection models. It allows organizations to build tailored computer vision models that recognize images or specific objects relevant to their business needs.
* Detect objects in an image # YesThe Azure AI Custom Vision service supports both image classification (assigning an image to one or more categories) and object detection (identifying and locating objects within an image using bounding boxes). This means it can indeed detect and differentiate multiple objects in a single image, making this statement true.
* Requires your own data to train the model # YesThe Custom Vision service is designed to be customizable. Unlike prebuilt Azure AI Vision models that work out of the box, Custom Vision requires you to upload and label your own dataset for training. The model then learns from your examples to perform specialized image recognition tasks relevant to your domain. Thus, this statement is also true.
* Analyze video files # NoWhile Custom Vision can analyze images, it does not directly process or analyze video files. Video analysis is handled by a different service-Azure Video Indexer-which can extract insights such as spoken words, scenes, and faces from videos.
In summary:
# Yes - Detect objects in images
# Yes - Requires your own data
# No - Does not analyze video files.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:
# Yes - Extract key phrases
# No - Generate press releases
# Yes - Detect sentiment
The Azure AI Language service is a powerful set of natural language processing (NLP) tools within Azure Cognitive Services, designed to analyze, understand, and interpret human language in text form. According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Microsoft Learn documentation, this service includes several capabilities such as key phrase extraction, sentiment analysis, language detection, named entity recognition (NER), and question answering.
* Extract key phrases from documents # YesThe Key Phrase Extraction feature identifies the most relevant words or short phrases within a document, helping summarize important topics. This is useful for indexing, summarizing, or organizing content. For instance, from "Azure AI Language helps analyze customer feedback," it may extract "Azure AI Language" and "customer feedback" as key phrases.
* Generate press releases based on user prompts # NoThis functionality falls under generative AI, specifically within Azure OpenAI Service, which uses models such as GPT-4 for text creation. The Azure AI Language service focuses on analyzing and understanding existing text, not generating new content like press releases or articles.
* Build a social media feed analyzer to detect sentiment # YesThe Sentiment Analysis capability determines the emotional tone (positive, neutral, negative, or mixed) of text data, making it ideal for analyzing social media posts, reviews, or feedback. Businesses often use this to gauge customer satisfaction or brand reputation.
In summary, the Azure AI Language service analyzes text to extract insights and detect sentiment but does not generate new textual content.
You need to scan the news for articles about your customers and alert employees when there is a negative article. Positive articles must be added to a press book.
Which natural language processing tasks should you use to complete the process? To answer, drag the appropriate tasks to the correct locations. Each task may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.
NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:

Box 1: Entity recognition
the Named Entity Recognition module in Machine Learning Studio (classic), to identify the names of things, such as people, companies, or locations in a column of text.
Named entity recognition is an important area of research in machine learning and natural language processing (NLP), because it can be used to answer many real-world questions, such as:
Which companies were mentioned in a news article?
Does a tweet contain the name of a person? Does the tweet also provide his current location?
Were specified products mentioned in complaints or reviews?
Box 2: Sentiment Analysis
The Text Analytics API ' s Sentiment Analysis feature provides two ways for detecting positive and negative sentiment. If you send a Sentiment Analysis request, the API will return sentiment labels (such as " negative "
, " neutral " and " positive " ) and confidence scores at the sentence and document-level.
Reference:
https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/named-entity-recognition
https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to- sentiment-analysis
During the process of Machine Learning, when should you review evaluation metrics?

Correct Answer: D Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
What is a form of unsupervised machine learning?

Correct Answer: A Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
What is a use case for classification?

Correct Answer: B Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Select the answer that correctly completes the sentence.
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study materials and Microsoft Learn documentation on GitHub Copilot, the GitHub Copilot extension for Microsoft Visual Studio Code (VS Code) is powered by the OpenAI Codex model, a specialized descendant of the GPT (Generative Pre-trained Transformer) family of models. The OpenAI Codex model is specifically fine-tuned for programming tasks- it understands and generates code in multiple programming languages such as Python, JavaScript, C#, and more.
GitHub Copilot functions as an AI-powered coding assistant that suggests complete lines or blocks of code, helps write comments, and can even generate functions based on natural language prompts entered by the developer. When a user types a comment like "// sort a list of numbers in ascending order," Copilot uses the Codex model to understand the intent and generate an appropriate code implementation.
The integration with Visual Studio Code allows developers to work efficiently without needing to switch between documentation and their coding environment. GitHub Copilot leverages context-aware suggestions, meaning it understands the surrounding code, function definitions, and variable names to provide relevant completions.
The other options are incorrect because:
* GitHub source control manages code repositories but doesn't use AI models.
* IntelliSense is a built-in VS Code feature for code completion but doesn't rely on OpenAI models.
* Microsoft 365 Copilot uses large language models (like GPT-4) for productivity tools such as Word, Excel, and Outlook-not for code generation.
Therefore, the correct choice that uses the OpenAI Codex model in Visual Studio Code is GitHub Copilot, aligning with Microsoft's AI-900 learning objectives under "Identify common use cases for Azure OpenAI and GitHub Copilot."
To complete the sentence, select the appropriate option in the answer area.
Correct Answer:

Explanation:

In the Microsoft Azure AI Fundamentals (AI-900) and Azure Machine Learning (AML) learning paths, deploying a real-time inference pipeline refers to making a trained machine learning model available as a web service that can process incoming data and return predictions instantly. To achieve this, the model must be deployed to an infrastructure capable of handling continuous, low-latency requests with high reliability and scalability.
Microsoft's official guidance from Azure Machine Learning documentation specifies that:
* For testing or development, you can deploy to Azure Container Instances (ACI) because it provides a lightweight, temporary environment suitable for small-scale or non-production workloads.
* For production-grade, real-time inference, the deployment should be made to Azure Kubernetes Service (AKS).
AKS provides enterprise-level scalability, load balancing, and high availability, which are critical for serving real-time predictions to multiple consumers simultaneously. It manages containerized applications using Kubernetes orchestration, allowing the model to scale automatically based on traffic demands.
Azure Machine Learning Compute is mainly used for model training and batch inference pipelines, not real- time endpoints. A local web service is typically used only for debugging or offline testing on a developer machine and cannot be shared for external consumption.
Therefore, when deploying a real-time inference pipeline as a service for others to consume, the correct and Microsoft-verified option is Azure Kubernetes Service (AKS). This environment ensures production readiness, secure endpoint management, and scalability for live AI applications, fully aligning with best practices outlined in the Azure Machine Learning designer documentation and AI-900 exam objectives.
https://docs.microsoft.com/en-us/azure/machine-learning/concept-designer#deploy
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:

The Transformer model architecture is a foundational deep learning model introduced in the 2017 research paper "Attention Is All You Need." It serves as the core architecture for modern large language models such as GPT, BERT, and T5, all of which are used in Azure OpenAI Service.
* "A transformer model architecture uses self-attention." - YesThe self-attention mechanism is the defining feature of transformer models. It allows the model to evaluate the relationships between words (tokens) in a sequence and assign weights based on contextual relevance. This means that each word in an input sentence can " attend " to every other word, capturing dependencies regardless of their position in the text. This mechanism replaced older recurrent (RNN) and convolutional (CNN) architectures for sequence processing because it provides parallelization and better context understanding.
* "A transformer model architecture includes an encoder block and a decoder block." - YesThe original Transformer architecture includes both an encoder and a decoder. The encoder processes the input sequence into contextual representations, and the decoder generates the output sequence based on both the encoder's output and previously generated tokens. Models like BERT use only the encoder stack, while GPT models use only the decoder stack, but the full Transformer design conceptually includes both.
* "A transformer model architecture includes an encryption block or a decryption block." - NoTransformers are not related to cryptography. They perform encoding and decoding of language data for representation learning-not encryption or decryption for data security. The terms "encoder" and
"decoder" here refer to neural network components, not cryptographic processes.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) study guide and Azure Cognitive Services documentation, the Custom Vision service is a specialized computer vision tool that allows users to build, train, and deploy custom image classification and object detection models. It is part of the Azure Cognitive Services suite, designed for scenarios where pre-built Computer Vision models do not meet specific business requirements.
* "The Custom Vision service can be used to detect objects in an image." # YesThis statement is true.
The Custom Vision service supports object detection, enabling the model to identify and locate multiple objects within a single image using bounding boxes. For example, it can locate cars, products, or animals in photos.
* "The Custom Vision service requires that you provide your own data to train the model." # YesThis statement is true. Unlike pre-trained models such as the standard Computer Vision API, the Custom Vision service requires users to upload and label their own images. The system uses this labeled dataset to train a model specific to the user's scenario, improving accuracy for custom use cases.
* "The Custom Vision service can be used to analyze video files." # NoThis statement is false. The Custom Vision service works only with static images, not videos. To analyze video files, Azure provides Video Indexer and Azure Media Services, which are designed for extracting insights from moving visual content.
You need to convert handwritten notes into digital text.
Which type of computer vision should you use?

Correct Answer: A Vote an answer
Explanation: Only visible for Fast2test members. You can sign-up / login (it's free).
Select the answer that correctly completes the sentence.
Correct Answer:

Explanation:
"features."
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Describe fundamental principles of machine learning on Azure," in a machine learning model, the data used as inputs are known as features, while the data that represents the output or target prediction is known as the label.
Features are measurable attributes or properties of the data used by a model to learn patterns and make predictions. They are also referred to as independent variables because they influence the result that the model tries to predict. For example, in a machine learning model that predicts house prices:
* Features might include square footage, location, and number of bedrooms, while
* The label would be the house price (the value being predicted).
In the context of Azure Machine Learning, during model training, features are passed into the algorithm as input variables (X-values), and the label is the corresponding output (Y-value). The model then learns the relationship between the features and the label.
Let's review the incorrect options:
* Functions: These are mathematical operations or relationships used inside algorithms, not the input data itself.
* Labels: These are the outputs or results that the model predicts, not the inputs.
* Instances: These refer to individual data records or rows in the dataset, not the input fields themselves.
Hence, in any supervised or unsupervised learning process, the input data (independent variables) are called features, and the model uses them to predict labels (dependent variables).

Contact Us

If you have any question please leave me your email address, we will reply and send email to you in 12 hours.

Our Working Time: ( GMT 0:00-15:00 ) From Monday to Saturday

Support: Contact now 

日本語 Deutsch 繁体中文 한국어