AI-900 Exam Question 66
Select the answer that correctly completes the sentence.


Correct Answer:

Explanation:

"When evaluating the performance of a model, the confusion matrix displays the predicted and actual positives and negatives by using a grid of 0 and 1 values." According to the Microsoft Azure AI Fundamentals (AI-900) official study materials and Microsoft Learn module "Identify features of common machine learning types", a confusion matrix is a tool used to evaluate the performance of classification models. It visually summarizes how many predictions were correctly or incorrectly classified by comparing the predicted labels to the actual (true) labels.
A confusion matrix is a table, typically 2×2 for binary classification, with the following components:
* True Positives (TP): The model correctly predicted the positive class.
* True Negatives (TN): The model correctly predicted the negative class.
* False Positives (FP): The model incorrectly predicted the positive class.
* False Negatives (FN): The model incorrectly predicted the negative class.
The confusion matrix allows data scientists and analysts to derive important performance metrics such as accuracy, precision, recall, and F1-score, which together provide a more complete understanding of how well a model performs beyond a single number.
In Microsoft Learn's AI-900 curriculum, the confusion matrix is highlighted as a key visualization tool that
"compares actual values to predicted values to evaluate classification performance." The grid format (using 0s and 1s for predicted classes) helps identify where misclassifications occur.
By contrast:
* AUC metric (Area Under Curve) and ROC curve evaluate model discrimination ability.
* Threshold defines decision cutoffs but doesn't display classifications.
Therefore, based on the official Microsoft AI-900 study guide and Microsoft Learn resources, the correct answer is Confusion Matrix, as it provides a grid view comparing actual versus predicted values in classification models.
AI-900 Exam Question 67
Select the answer that correctly completes the sentence.


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) Official Study Guide and the Microsoft Learn module "Identify guiding principles for responsible AI," Fairness is one of Microsoft's six core principles of Responsible AI. The principle of fairness ensures that AI systems treat all individuals and groups equitably, and that the models do not produce biased or discriminatory outcomes.
Bias in AI systems can occur when training data reflects existing prejudices, inequalities, or imbalances. For example, if a dataset used for a hiring model underrepresents a certain demographic group, the AI system might produce unfair recommendations. Microsoft emphasizes that AI should not reflect or reinforce bias and that developers must actively design, test, and monitor models to mitigate unfairness.
Microsoft's Six Responsible AI Principles:
* Fairness - AI systems should treat everyone equally and avoid bias.
* Reliability and safety - AI systems must operate as intended even under unexpected conditions.
* Privacy and security - AI must protect personal and business data.
* Inclusiveness - AI should empower all people and be accessible to diverse users.
* Transparency - AI systems should be understandable and their decisions explainable.
* Accountability - Humans should be accountable for AI system outcomes.
The other options do not fit this context:
* Accountability ensures human responsibility for AI decisions.
* Inclusiveness focuses on accessibility and empowering all users.
* Transparency relates to making AI systems understandable.
Therefore, the correct answer is fairness, as it directly addresses the principle that AI systems should NOT reflect biases from the datasets used to train them.
AI-900 Exam Question 68
You need to predict the population size of a specific species of animal in an area.
Which Azure Machine Learning type should you use?
Which Azure Machine Learning type should you use?
Correct Answer: B
In Azure Machine Learning, regression is a supervised machine learning technique used to predict continuous numerical values based on input data. According to the Microsoft AI Fundamentals (AI-900) study guide and the Microsoft Learn module "Identify common types of machine learning," regression models are ideal when the goal is to estimate a quantity - such as price, temperature, or, in this case, population size.
In the scenario, the task is to predict the population size of a specific species within a defined area. Population size is a numerical, continuous value that varies depending on multiple factors (like time, environment, and resources). A regression algorithm, such as linear regression or decision tree regression, can be trained on historical data (e.g., species count, area, temperature, food availability) to forecast future population numbers.
Option analysis:
* A. Clustering: Used for unsupervised learning, where the goal is to group similar data points into clusters without predefined labels (e.g., grouping animals by behavior or habitat).
* C. Classification: Used to predict discrete categories or labels (e.g., "endangered" vs. "not endangered"), not numerical values.
Therefore, the correct machine learning type for predicting a continuous value such as population size is Regression.
In the scenario, the task is to predict the population size of a specific species within a defined area. Population size is a numerical, continuous value that varies depending on multiple factors (like time, environment, and resources). A regression algorithm, such as linear regression or decision tree regression, can be trained on historical data (e.g., species count, area, temperature, food availability) to forecast future population numbers.
Option analysis:
* A. Clustering: Used for unsupervised learning, where the goal is to group similar data points into clusters without predefined labels (e.g., grouping animals by behavior or habitat).
* C. Classification: Used to predict discrete categories or labels (e.g., "endangered" vs. "not endangered"), not numerical values.
Therefore, the correct machine learning type for predicting a continuous value such as population size is Regression.
AI-900 Exam Question 69
Which metric can you use to evaluate a classification model?
Correct Answer: A
For evaluating a classification model, the appropriate metric from the options provided is the True Positive Rate (TPR), also known as Sensitivity or Recall. According to the Microsoft Azure AI Fundamentals (AI-
900) official study guide and Microsoft Learn module "Evaluate model performance", classification models are evaluated using metrics that measure how accurately the model predicts categorical outcomes such as "yes
/no," "spam/not spam," or "approved/denied."
The True Positive Rate measures the proportion of correctly identified positive cases out of all actual positive cases. Mathematically, it is expressed as:
True Positive Rate (Recall)=True PositivesTrue Positives + False Negatives\text{True Positive Rate (Recall)}
= \frac{\text{True Positives}}{\text{True Positives + False Negatives}}True Positive Rate (Recall)
=True Positives + False NegativesTrue Positives
This metric is important when missing positive predictions carries a high cost, such as in medical diagnosis or fraud detection. Microsoft Learn highlights classification evaluation metrics such as accuracy, precision, recall, F1 score, and AUC (Area Under the Curve) as suitable for classification models.
The other options-Mean Absolute Error (MAE), Root Mean Squared Error (RMSE), and Coefficient of Determination (R²)-are regression metrics used to evaluate models that predict numeric values rather than categories. For example, they apply to predicting house prices or temperatures, not yes/no decisions.
Therefore, the correct classification evaluation metric among the choices is A. True Positive Rate.
Reference:Microsoft Learn - Evaluate model performance - Understand metrics for classification and regression models
900) official study guide and Microsoft Learn module "Evaluate model performance", classification models are evaluated using metrics that measure how accurately the model predicts categorical outcomes such as "yes
/no," "spam/not spam," or "approved/denied."
The True Positive Rate measures the proportion of correctly identified positive cases out of all actual positive cases. Mathematically, it is expressed as:
True Positive Rate (Recall)=True PositivesTrue Positives + False Negatives\text{True Positive Rate (Recall)}
= \frac{\text{True Positives}}{\text{True Positives + False Negatives}}True Positive Rate (Recall)
=True Positives + False NegativesTrue Positives
This metric is important when missing positive predictions carries a high cost, such as in medical diagnosis or fraud detection. Microsoft Learn highlights classification evaluation metrics such as accuracy, precision, recall, F1 score, and AUC (Area Under the Curve) as suitable for classification models.
The other options-Mean Absolute Error (MAE), Root Mean Squared Error (RMSE), and Coefficient of Determination (R²)-are regression metrics used to evaluate models that predict numeric values rather than categories. For example, they apply to predicting house prices or temperatures, not yes/no decisions.
Therefore, the correct classification evaluation metric among the choices is A. True Positive Rate.
Reference:Microsoft Learn - Evaluate model performance - Understand metrics for classification and regression models
AI-900 Exam Question 70
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

NOTE: Each correct selection is worth one point.

Correct Answer:

Explanation:

This question assesses knowledge of the Azure Cognitive Services Speech and Text Analytics capabilities, as described in the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn modules "Explore natural language processing" and "Explore speech capabilities." These services are part of Azure Cognitive Services, which provide prebuilt AI capabilities for speech, language, and text understanding.
* You can use the Speech service to transcribe a call to text # YesThe Speech-to-Text feature in the Azure Speech service automatically converts spoken words into written text. Microsoft Learn explains:
"The Speech-to-Text capability enables applications to transcribe spoken audio to text in real time or from recorded files." This makes it ideal for call transcription, voice assistants, and meeting captioning.
* You can use the Text Analytics service to extract key entities from a call transcript # YesOnce a call has been transcribed into text, the Text Analytics service (part of Azure Cognitive Services for Language) can process that text to extract key entities, key phrases, and sentiment. For example, it can identify names, organizations, locations, and product mentions. Microsoft Learn notes: "Text Analytics can extract key phrases and named entities from text to derive insights and structure from unstructured data."
* You can use the Speech service to translate the audio of a call to a different language # YesThe Azure Speech service also includes Speech Translation, which can translate spoken language in real time. It converts audio input from one language into translated text or speech output in another language.
Microsoft Learn describes this as: "Speech Translation combines speech recognition and translation to translate spoken audio to another language."
- Other Version
- 710Microsoft.AI-900.v2025-12-08.q159
- 1812Microsoft.AI-900.v2024-11-15.q269
- 1211Microsoft.AI-900.v2024-08-16.q168
- 1262Microsoft.AI-900.v2024-01-24.q93
- 1185Microsoft.AI-900.v2023-11-25.q87
- 1039Microsoft.AI-900.v2023-11-02.q83
- 1020Microsoft.AI-900.v2023-10-26.q89
- 1349Microsoft.AI-900.v2023-07-28.q92
- 1192Microsoft.AI-900.v2023-07-12.q82
- 1219Microsoft.AI-900.v2023-06-23.q73
- 2936Microsoft.AI-900.v2022-08-15.q112
- 124Microsoft.Prep4sures.AI-900.v2022-02-21.by.archibald.130q.pdf
- 2880Microsoft.AI-900.v2022-02-19.q130
- 2479Microsoft.AI-900.v2021-10-06.q84
- 62Microsoft.Practicevce.AI-900.v2021-09-17.by.louise.98q.pdf
- Latest Upload
- 143CrowdStrike.CCSE-204.v2026-06-12.q25
- 161VMware.2V0-17.25.v2026-06-12.q49
- 150Appian.ACA-100.v2026-06-11.q23
- 208CompTIA.220-1202.v2026-06-11.q114
- 163CheckPoint.156-590.v2026-06-11.q47
- 224CompTIA.220-1202.v2026-06-10.q109
- 204CertiProf.CEHPC.v2026-06-10.q54
- 152Hitachi.HQT-4160.v2026-06-10.q25
- 403PMI.PMI-ACP-CN.v2026-06-09.q453
- 192Splunk.SPLK-5002.v2026-06-08.q52
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900.v2026-02-16.q146 Practice Test
