AI-900 Practice Exam — AI-900: Azure AI Fundamentals

Sample questions

AI-900 · Q1
Topic 1 Question #1 A company employs a team of customer service agents to provide telephone and email support to customers.The company develops a webchat bot to provide automated answers to common customer queries.Which business benefit should the company expect as a result of creating the webchat bot solution?
  • A.
    increased sales
  • B.
    a reduced workload for the customer service agents
  • C.
    improved product reliability

Answer: B

This question aligns with the AI-900 Azure AI Fundamentals domain focused on identifying common use cases and business benefits of conversational AI workloads. The scenario describes a webchat bot built exclusively to resolve common customer support queries, a standard conversational AI use case for customer service operations. The direct, intended business benefit of this implementation is shifting repetitive, low-complexity query resolution away from human agents to the automated bot, which cuts the volume of requests agents need to handle, lowering their overall workload. This benefit is explicitly tied to the stated function of the bot described in the scenario. Option Analysis: A. increased sales: Incorrect. The scenario specifies the bot is designed to answer common support queries, not drive lead generation, upselling, or other sales-focused activities. While a bot could be configured for sales use cases, there is no indication of that functionality here, so increased sales is not an expected benefit of the described solution. B. a reduced workload for the customer service agents: Correct. This is the primary, well-documented business benefit of implementing support-focused conversational AI bots per AI-900 learning objectives. Routine, common queries that previously required agent time are resolved automatically by the bot, cutting down the number of requests human agents need to handle, reducing their workload and freeing them to focus on complex, high-priority customer issues. C. improved product reliability: Incorrect. Product reliability relates to product development, testing, and manufacturing processes. A customer support bot resolves user questions about existing products, but does not modify product design, fix defects, or otherwise impact the inherent reliability of the company's products, so this benefit is entirely unrelated to the described solution. Key Concepts: 1. Conversational AI for customer support: A core AI-900 knowledge point covers how conversational AI solutions including webchat bots automate routine customer service interactions to improve operational efficiency, reduce costs, and lighten agent workloads. 2. Azure AI Bot Service use cases: AI-900 includes identifying appropriate use cases for Azure AI Bot Service, one of the most common being self-service customer support for common queries, which delivers direct operational benefits to customer service teams. 3. AI benefit alignment: AI-900 tests the ability to match AI solutions to their intended business benefits, distinguishing between relevant, expected benefits and unrelated outcomes that are not tied to the stated function of the AI implementation. References: What is Azure AI Bot Service?, AI-900: Describe conversational AI workloads on Azure
AI-900 · Q2
Topic 1 Question #2 For a machine learning progress, how should you split data for training and evaluation?
  • A.
    Use features for training and labels for evaluation.
  • B.
    Randomly split the data into rows for training and rows for evaluation.
  • C.
    Use labels for training and features for evaluation.
  • D.
    Randomly split the data into columns for training and columns for evaluation.

Answer: B

For supervised machine learning, a core focus of the AI-900 certification curriculum, the standard valid practice for splitting data for training and evaluation is to randomly partition the full dataset by rows. This approach ensures that both the training subset used to fit model parameters, and the evaluation subset used to measure performance on unseen data, are representative of the full data distribution. This eliminates selection bias and provides an accurate measure of how well the model will generalize to new real-world data. Typical splits allocate 70-80% of rows to training and 20-30% to evaluation, with all rows retaining their full set of feature columns and corresponding label values so both subsets contain the input and target data required for their respective tasks. Option Analysis: A. Incorrect. Both training and evaluation datasets require both features (input variables) and labels (target output values). For training, the model learns the mapping between input features and corresponding labels, so labels are required for training as well. For evaluation, the model generates predictions from evaluation set features, which are compared to evaluation set labels to calculate performance metrics, so features are required for evaluation too. Separating features and labels across training and evaluation makes both steps functionally impossible. B. Correct. Randomly splitting the dataset by rows ensures that both the training and evaluation subsets contain a representative sample of all data patterns, feature values, and label classes present in the full dataset. This prevents the model from being evaluated on unrepresentative data that would produce misleading performance scores, and aligns with core machine learning best practices explicitly covered in the AI-900 certification content. C. Incorrect. This option reverses the purpose of features and labels and is entirely invalid. A model cannot be trained on only labels, as there are no input values to learn a prediction mapping from. Similarly, evaluation cannot be performed using only features, as there are no ground truth label values to compare model predictions against to measure accuracy. D. Incorrect. Splitting the dataset by columns would result in the training and evaluation sets having different sets of input features, meaning the model is trained on a different set of attributes than it is evaluated against. This produces meaningless performance results, as the model will not recognize the input attributes present in the evaluation set. Both training and evaluation require the same full set of feature columns plus the label column, so column-based splitting is never used for training/evaluation partitioning. Key Concepts: 1. Dataset Partitioning for Machine Learning: This core AI-900 concept covers the requirement to split labeled datasets into separate training, validation, and test subsets to support model fitting, tuning, and unbiased performance measurement. Random row-based splitting is the standard method to ensure all subsets are representative of the full data distribution. 2. Generalization: Generalization refers to the ability of a trained machine learning model to perform accurately on new, previously unseen data. Proper random row-based splitting of training and evaluation data allows teams to reliably measure generalization, which is the primary goal of building production machine learning models. 3. Features and Labels: Features are the input attributes used by a machine learning model to generate predictions, while labels are the ground truth target values the model is trained to predict. Both training and evaluation subsets require access to both features and labels to function correctly, a foundational machine learning concept covered in AI-900. References: Train and evaluate machine learning models, Microsoft Azure AI Fundamentals (AI-900) Study Guide, https://learn.microsoft.com/en-us/certifications/resources/study-guides/ai-900
AI-900 · Q3
Topic 1 Question #3 HOTSPOT - You are developing a model to predict events by using classification. You have a confusion matrix for the model scored on test data as shown in the following exhibit. " target="_blank" rel="nofollow noopener">https://www.examtopics.com/assets/media/exam-media/04234/0000300001.png"> Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct selection is worth one point. Hot Area: " target="_blank" rel="nofollow noopener">https://www.examtopics.com/assets/media/exam-media/04234/0000400001.png">
  • A.
    错误
  • B.
    正确

Answer: B

" target="_blank" rel="nofollow noopener">https://www.examtopics.com/assets/media/exam-media/04234/0000500001.png">
AI-900 · Q4
Topic 1 Question #4 You build a machine learning model by using the automated machine learning user interface (UI).You need to ensure that the model meets the Microsoft transparency principle for responsible AI.What should you do?
  • A.
    Set Validation type to Auto.
  • B.
    Enable Explain best model.
  • C.
    Set Primary metric to accuracy.
  • D.
    Set Max concurrent iterations to 0.

Answer: B

The Microsoft transparency principle for responsible AI requires that AI model behavior and decision-making processes are understandable to human stakeholders, including how the model arrives at specific predictions. When using the Azure Automated Machine Learning UI, enabling the Explain best model option triggers the generation of model interpretability artifacts that demonstrate which input features influence the model's predictions, both at a global overall model level and for individual prediction outputs. This directly satisfies the transparency requirement as it allows users to audit, explain, and validate the model's decision logic, rather than treating the model as an opaque black box. Option Analysis: A. Setting Validation type to Auto only configures how Automated ML splits training data into training and validation subsets during model training to measure generalizable performance. This relates to model accuracy and overfitting prevention, not transparency into model decision logic, so this option is incorrect. B. Enabling Explain best model triggers Automated ML to generate interpretability outputs including feature importance rankings, which detail how each input feature contributes to the model's predictions. This directly fulfills the Microsoft transparency principle for responsible AI by making the model's decision process understandable, so this option is correct. C. Setting the Primary metric to accuracy defines the performance metric used to rank and select the best performing model during Automated ML training. This only measures how often the model produces correct outputs, and provides no insight into how the model arrives at those outputs, so this option is incorrect. D. Setting Max concurrent iterations to 0 controls the number of parallel model training runs executed during the Automated ML job, limiting training to sequential iteration execution to reduce resource consumption. This is a training execution configuration unrelated to model transparency, so this option is incorrect. Key Concepts: 1. Microsoft Responsible AI Transparency Principle: One of the six core Microsoft responsible AI principles, which requires that AI systems operate in a way that is understandable to humans, so stakeholders can verify that the model makes decisions fairly and as intended, and can explain outputs to affected parties. 2. Automated ML Model Interpretability: A feature of Azure Automated Machine Learning that generates explainability artifacts for trained models, including global feature importance (overall impact of each feature on all predictions) and local feature importance (impact of features on individual predictions), to support transparency and auditability. 3. Automated ML Configuration Parameters: Distinct configuration settings in Automated ML that control different aspects of the training job, including performance measurement, validation logic, execution parallelism, and explainability, each serving a discrete purpose that maps to different training and compliance requirements. References: Use automated machine learning for responsible AI, Microsoft Responsible AI Core Principles
AI-900 · Q5
Topic 1 Question #5 HOTSPOT - For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point. Hot Area: " target="_blank" rel="nofollow noopener">https://www.examtopics.com/assets/media/exam-media/04234/0000700001.png">
  • A.
    错误
  • B.
    正确

Answer: B

" target="_blank" rel="nofollow noopener">https://www.examtopics.com/assets/media/exam-media/04234/0000800001.png">

FAQ

How many practice questions are available for AI-900?

This question bank includes 246 AI-900 practice questions covering single and multiple choice, each with answers and explanations.

Are AI-900 practice questions available in Chinese and English?

Yes, AI-900 practice questions are provided in both Chinese and English.

Can I try AI-900 practice questions for free?

Yes. Free sample questions are available on this page, and the full question bank is available after signing up on Zhangxuetu.