CertSafari

    Free Microsoft AI Transformation Leader (AB-731) Sample Questions

    35 free sample questions from our bank of 333+, covering every exam domain, with answers and detailed explanations. Updated August 2026.

    Domain 1: Identify the business value of generative AI solutions

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    1.Which of the following is a primary benefit of secure AI design?

    1. A.Prevents overfitting of the model on training examples.
    2. B.Guards against unauthorized access and data breaches.
    3. C.Boosts the novelty and creativity of AI outputs.
    4. D.Reduces computational resources needed for training.
    Show answer & explanation

    Correct answer: BGuards against unauthorized access and data breaches.

    • A. Incorrect. Preventing overfitting is a model training and generalization concern, not a primary benefit of secure AI design, which focuses on protecting data and systems from threats.
    • B. Correct. A primary benefit of secure AI design is protecting systems from unauthorized access, misuse, and data breaches, ensuring confidentiality, integrity, and trust in AI solutions.
    • C. Incorrect. Boosting novelty and creativity is a benefit of generative AI capabilities, not of secure AI design, which does not directly influence output creativity.
    • D. Incorrect. Reducing computational resources is an efficiency or optimization goal, not a primary benefit of secure AI design, which is about mitigating risks and protecting assets.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    2.A team is deploying a machine learning model for loan approval. They must ensure decisions are explainable and fair. Which lifecycle stage primarily addresses fairness and transparency?

    1. A.Problem framing
    2. B.Model evaluation
    3. C.Model deployment
    4. D.Data preprocessing
    Show answer & explanation

    Correct answer: BModel evaluation

    • A. Incorrect. Problem framing defines the scope, objectives, and ethical requirements, but it does not directly measure or validate fairness and transparency. The direct assessment of these properties occurs later in the lifecycle.
    • B. Correct. Model evaluation is the stage where the team tests the model for performance, fairness, bias, and explainability before deployment. Techniques like SHAP values, fairness metrics, and bias detection are applied here to ensure that decisions are equitable and can be understood and justified.
    • C. Incorrect. Model deployment focuses on integrating the model into production and operating it reliably. While monitoring can detect drift or issues afterward, fairness and transparency are primarily addressed during evaluation.
    • D. Incorrect. Data preprocessing can reduce bias by cleaning and balancing data, but it is not the primary stage for ensuring explainability and fairness. These concerns are mainly validated during model evaluation, after the data and model have been prepared.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    3.An AI system handles sensitive financial data. Which security measure is essential to prevent data poisoning during training?

    1. A.Encrypt all data at rest and in transit.
    2. B.Apply differential privacy to training data.
    3. C.Validate and sanitize training data before use.
    4. D.Embed watermarks in model outputs for tracing.
    Show answer & explanation

    Correct answer: CValidate and sanitize training data before use.

    • A. Incorrect. Encrypting data at rest and in transit protects confidentiality and integrity during storage and transmission but does not prevent data poisoning, which involves malicious manipulation of training data. It does not verify whether training data has been tampered with.
    • B. Incorrect. Differential privacy helps protect individual data points from being inferred in model outputs, reducing privacy risks, but it does not address the insertion of malicious or corrupted data into the training set. It is a privacy technique, not a data poisoning prevention control.
    • C. Correct. Validating and sanitizing training data before use is a key defense against data poisoning because it helps detect, filter, and remove malicious, corrupted, or anomalous inputs. This directly addresses the integrity of the training pipeline, which is essential when handling sensitive financial data.
    • D. Incorrect. Embedding watermarks in model outputs helps with tracing and attribution after the fact, but it does not prevent poisoned data from being used during training. It is an output governance measure, not a training-data security control.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    4.A company wants to use a language model to summarize customer emails, but the summaries must strictly adhere to a company-defined template. Which prompt engineering technique is MOST appropriate?

    1. A.Chain-of-thought prompting
    2. B.Zero-shot with format instructions
    3. C.Few-shot with template examples
    4. D.Low temperature sampling
    Show answer & explanation

    Correct answer: CFew-shot with template examples

    • A. Incorrect. Chain-of-thought prompting guides the model through step-by-step reasoning, which is useful for complex reasoning tasks but not for enforcing a rigid output structure or template. It does not reliably guarantee adherence to a specific company-defined format.
    • B. Incorrect. Zero-shot with format instructions can specify an output structure, but without examples, the model may deviate from the required template, especially for consistent enterprise use cases. It is less reliable for strict template adherence compared to providing concrete examples.
    • C. Correct. Few-shot with template examples is the most appropriate technique because it provides the model with concrete examples of the exact structure to imitate. This greatly improves the likelihood that summaries will follow the company-defined template consistently.
    • D. Incorrect. Low temperature sampling reduces randomness and makes outputs more deterministic, but it does not inherently enforce a specific template or structure. While it can improve consistency, prompt design with examples is still superior for strict formatting requirements.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    5.A developer needs to ensure an AI assistant never uses offensive language. What technique should be applied?

    1. A.Add a safety filter to the generated text.
    2. B.Expand the training corpus with more examples.
    3. C.Decrease the learning rate during fine-tuning.
    4. D.Increase the number of model parameters.
    Show answer & explanation

    Correct answer: AAdd a safety filter to the generated text.

    • A. Correct. Adding a safety filter is a direct and effective method to detect and block offensive language in generated text before it reaches users. This is the most straightforward safety control.
    • B. Incorrect. Expanding the training corpus might improve general behavior but does not guarantee the elimination of offensive language; the model can still generate harmful content. Training data alone is not a reliable enforcement mechanism.
    • C. Incorrect. Decreasing the learning rate is an optimization technique for fine-tuning, not a safety control. It affects how the model learns but does not specifically prevent offensive language generation.
    • D. Incorrect. Increasing model parameters may improve capacity but does not inherently address safety or content moderation. Larger models can still produce offensive outputs without additional safeguards.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    6.What does the term "grounding" refer to in generative AI?

    1. A.Producing content solely from the model's own training.
    2. B.Linking generated content to verified external references.
    3. C.Building the model architecture from fundamental components.
    4. D.Enhancing prompts to increase output relevance.
    Show answer & explanation

    Correct answer: BLinking generated content to verified external references.

    • A. Incorrect. Grounding is not about relying only on internal training data; it specifically involves anchoring outputs to external, verified sources to improve accuracy and reduce hallucinations.
    • B. Correct. Grounding in generative AI refers to linking generated content to verified external references such as databases, documents, or APIs, ensuring factual accuracy and traceability.
    • C. Incorrect. Building the model architecture from fundamental components describes model design or engineering, not grounding. Grounding concerns the connection of outputs to real-world, external information.
    • D. Incorrect. Enhancing prompts to increase output relevance is prompt engineering, not grounding. Grounding is about anchoring responses in external verified data, not simply refining prompts.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    7.A data scientist is building a predictive maintenance model. Which two data quality issues should be prioritized to ensure model reliability? (Choose two.)(Select 2)

    1. A.Missing sensor data for some periods
    2. B.The data is stored in CSV format
    3. C.Only normal conditions, no failures
    4. D.Data is sampled at 1-minute intervals
    5. E.Data has consistent timestamps
    Show answer & explanation

    Correct answers: A, CMissing sensor data for some periods; Only normal conditions, no failures

    • A. Missing sensor readings create gaps in the time series, distorting feature calculations and anomaly detection. This directly reduces model reliability for predictive maintenance.
    • B. The storage format (CSV) does not affect data quality or model reliability as long as data can be accurately parsed. It is a format choice, not a quality issue.
    • C. A dataset with only normal operating conditions lacks failure examples, causing severe class imbalance. The model cannot learn to predict faults, undermining reliability.
    • D. Sampling at 1-minute intervals is a design choice, not inherently a quality issue. It may affect granularity but does not necessarily reduce reliability.
    • E. Consistent timestamp formatting is a positive data quality attribute that supports data integration, not a problem. Proper formatting does not threaten model reliability.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    8.A company uses a language model to answer customer queries. By providing a few examples in the prompt, the model's output relevance improved. This is an example of few-shot prompting.

    1. A.True
    2. B.False
    Show answer & explanation

    Correct answer: ATrue

    • A. The statement is true because few-shot prompting involves providing a language model with a few examples in the prompt to guide its output, which improves relevance and accuracy by helping the model infer the desired pattern, tone, or format.
    • B. The statement is false because the scenario described explicitly includes providing examples in the prompt, which is the definition of few-shot prompting; therefore, the statement is true.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    9.A model trained on a dataset that underrepresented a minority group resulted in biased predictions. This demonstrates the importance of representative datasets.

    1. A.True
    2. B.False
    Show answer & explanation

    Correct answer: ATrue

    • A. The statement is true because underrepresentation in training data can lead to biased model outputs, as the model lacks sufficient examples to learn fair patterns for minority groups. Representative datasets are critical to ensure equitable and accurate predictions.
    • B. The statement is false because biased predictions due to underrepresentation actually highlight the need for representative datasets, not the opposite. Therefore, the original statement is true.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    10.In fraud detection, using machine learning is more effective than static rules when fraud patterns evolve frequently.

    1. A.True
    2. B.False
    Show answer & explanation

    Correct answer: ATrue

    • A. The statement is true because machine learning models can learn from new data and adapt to evolving fraud patterns dynamically, whereas static rules require manual updates and cannot keep pace with rapidly changing fraud tactics.
    • B. The statement is true because machine learning models adapt to new fraud patterns and are more effective than static rules in dynamic environments; therefore, selecting 'False' is incorrect.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    11.In AI, ________ refers to the connection of model outputs to verified external sources to ensure factual accuracy.

    1. A.grounding
    2. B.hallucination
    3. C.overfitting
    Show answer & explanation

    Correct answer: Agrounding

    • A. Correct. Grounding in AI refers to the process of linking model outputs to reliable, verified external sources to ensure factual accuracy and reduce unsupported claims. It anchors the model to evidence.
    • B. Incorrect. Hallucination is the opposite: a model generates plausible but factually incorrect or fabricated information not supported by real sources. It does not describe connecting outputs to verified data.
    • C. Incorrect. Overfitting occurs when a model learns training data too specifically, including noise, leading to poor generalization. It is unrelated to ensuring factual accuracy through external sources.

    Subdomain 1.2: Identify benefits and capabilities of generative AI solutions

    12.When rules are complex and data patterns evolve, using ________ often provides greater value than traditional rule-based systems.

    1. A.machine learning
    2. B.manual scripting
    3. C.static algorithms
    Show answer & explanation

    Correct answer: Amachine learning

    • A. Correct. Machine learning is designed to handle complex, evolving data patterns by learning from data rather than relying on static rules. It adapts over time, making it more suitable than fixed rule-based approaches when logic is complex or frequently changing.
    • B. Incorrect. Manual scripting relies on explicitly written rules that require human intervention to update, making it rigid and ill-suited for scenarios where patterns evolve automatically.
    • C. Incorrect. Static algorithms are fixed and do not learn from new data. They cannot adapt to changing data relationships, unlike machine learning which continuously improves.

    Domain 2: Identify benefits, capabilities, and opportunities for Microsoft’s AI apps and services

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    13.A company wants to improve meeting productivity by automatically capturing action items and summarizing discussions. Which Microsoft 365 Copilot capability best addresses this need?

    1. A.Copilot in Word to draft meeting minutes automatically
    2. B.Copilot in Teams for meeting recaps and action items
    3. C.Copilot Chat to answer questions about the meeting via the web
    4. D.Copilot in Excel to analyze meeting-related data spreadsheets
    Show answer & explanation

    Correct answer: BCopilot in Teams for meeting recaps and action items

    • A. Incorrect. Copilot in Word can assist with drafting documents, including meeting minutes, but it does not automatically capture action items or summarize live discussions during a meeting. It is more focused on post-meeting document creation rather than real-time meeting intelligence.
    • B. Correct. Copilot in Teams is specifically designed to enhance meeting productivity by generating recaps, summarizing discussions, and capturing action items in real-time or post-meeting. This directly matches the need to automatically capture action items and summarize discussions.
    • C. Incorrect. Copilot Chat can answer questions about meetings if provided with context, but it does not automatically capture action items or summarize discussions during a meeting. It is a general-purpose conversational tool, not specialized for meeting summarization.
    • D. Incorrect. Copilot in Excel is focused on data analysis and spreadsheet management, not on capturing meeting discussions or action items. It is not the appropriate tool for improving meeting productivity in this scenario.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    14.A user frequently works on their mobile phone and wants to ask Copilot questions about their work calendar and emails while commuting. Which Copilot experience is optimized for this?

    1. A.Copilot in Edge browser sidebar
    2. B.Microsoft 365 Copilot Chat on mobile
    3. C.Copilot in Windows desktop
    4. D.Copilot in Teams desktop client
    Show answer & explanation

    Correct answer: BMicrosoft 365 Copilot Chat on mobile

    • A. Incorrect. Copilot in the Edge browser sidebar is designed for web browsing and does not provide direct mobile-optimized access to work calendar and emails. It is not the best fit for commuting scenarios.
    • B. Correct. Microsoft 365 Copilot Chat on mobile is specifically optimized for mobile devices and integrates with Microsoft 365 apps, enabling users to query their work calendar and emails while on the go.
    • C. Incorrect. Copilot in Windows desktop is intended for use on a Windows PC and is not accessible or optimized for mobile phone use while commuting.
    • D. Incorrect. Copilot in Teams desktop client is designed for desktop use within Teams and does not provide a mobile-optimized experience for accessing calendar and email data.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    15.A team wants to analyze customer feedback from emails, surveys, and call transcripts to identify trends. They need Copilot to ground its responses in these data sources. What should they set up?

    1. A.Add a Copilot connector to the feedback system
    2. B.Index the feedback content using Graph connectors
    3. C.Build a custom model in Azure AI Studio
    4. D.Set up a data pipeline with Azure Data Factory
    Show answer & explanation

    Correct answer: BIndex the feedback content using Graph connectors

    • A. Incorrect. Copilot connectors integrate external apps or services with Copilot but do not index content for grounding. Graph connectors are needed to index data and enable Copilot to ground responses in specific sources like feedback.
    • B. Correct. Graph connectors index external data sources (e.g., emails, surveys, call transcripts) into Microsoft Graph, allowing Copilot to ground its responses in this content. This is the recommended approach for making external data accessible to Copilot.
    • C. Incorrect. Building a custom model in Azure AI Studio is for creating tailored AI applications, not for grounding Microsoft 365 Copilot in existing data. The scenario requires indexing data via Graph connectors.
    • D. Incorrect. Azure Data Factory is an ETL and data integration tool; it does not directly enable Copilot grounding. Copilot requires indexed content in Microsoft Graph, which is provided by Graph connectors.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    16.What is the primary function of Microsoft Graph?

    1. A.To store and manage user profiles in Azure AD
    2. B.To provide a unified API for Microsoft 365 data
    3. C.To power search indexing in SharePoint Online
    4. D.To enable AI model training on Microsoft data
    Show answer & explanation

    Correct answer: BTo provide a unified API for Microsoft 365 data

    • A. Incorrect. Microsoft Graph does not store or manage user profiles; this is handled by Microsoft Entra ID (formerly Azure AD). Microsoft Graph is an API layer that provides access to data across Microsoft 365 and Entra ID, but it is not a storage service.
    • B. Correct. Microsoft Graph provides a unified API endpoint that allows developers and services to access data and intelligence from Microsoft 365 services such as Outlook, Teams, OneDrive, SharePoint, and Entra ID, enabling seamless integration across the Microsoft cloud.
    • C. Incorrect. Search indexing in SharePoint is handled by SharePoint itself and Microsoft Search. While Microsoft Graph can query search results or surface related information, its primary role is not to power search indexing.
    • D. Incorrect. Microsoft Graph is not designed for AI model training. Its purpose is to expose Microsoft 365 and cloud service data through a standardized API. AI model training is typically performed by services like Azure Machine Learning or Microsoft Copilot.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    17.A team collaborates on a PowerPoint slide and wants to use Copilot to reorganize the slide content into a better layout automatically. What should they use?

    1. A.Copilot in PowerPoint to get design ideas
    2. B.Copilot Chat to ask for layout suggestions
    3. C.Manually use the Designer feature for layout options
    4. D.Convert to Word and use Copilot to layout
    Show answer & explanation

    Correct answer: ACopilot in PowerPoint to get design ideas

    • A. Correct. Copilot in PowerPoint can automatically generate design ideas and reorganize slide content into a better layout. This is a built-in feature of Microsoft 365 Copilot for PowerPoint, leveraging AI to improve slide design without manual effort.
    • B. Incorrect. Copilot Chat provides conversational assistance and can suggest layout ideas, but it does not directly apply or automatically reorganize slide content in PowerPoint. It is less actionable for direct design changes.
    • C. Incorrect. The Designer feature in PowerPoint offers design suggestions, but it is a manual tool that requires user interaction. It does not leverage Copilot's automatic reorganization capabilities as described in the question.
    • D. Incorrect. Converting a PowerPoint slide to Word and using Copilot there would not preserve slide layout or design. This approach is inefficient and not intended for reorganizing PowerPoint content.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    18.An organization wants to ensure that Copilot responses do not inadvertently disclose confidential information like salary data. Which Microsoft Purview capability should they configure?

    1. A.Sensitivity labels with encryption and access control
    2. B.DLP policies applied to uploads and shares
    3. C.Insider risk management for Copilot usage
    4. D.Information barrier policies for Microsoft 365 groups
    Show answer & explanation

    Correct answer: ASensitivity labels with encryption and access control

    • A. Correct. Sensitivity labels with encryption and access control classify and protect sensitive data like salary information. Copilot respects these labels and will not surface or generate responses containing labeled content, preventing inadvertent disclosure.
    • B. Incorrect. DLP policies primarily prevent data exfiltration through sharing or uploads but do not directly control Copilot's access to or disclosure of sensitive information in responses. DLP is more about preventing data loss from sharing, not filtering Copilot outputs.
    • C. Incorrect. Insider risk management is designed to detect and investigate risky user behavior, not to prevent Copilot from disclosing confidential data. It is a monitoring and investigation capability, not a content protection control for Copilot responses.
    • D. Incorrect. Information barrier policies restrict communication and collaboration between defined groups but do not control or filter the content Copilot generates or accesses. They are for compliance in regulated environments, not for protecting against data disclosure via Copilot.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    19.A user receives a lengthy email thread and wants to quickly understand the key decisions made. They are using Outlook on the web. What should they do?

    1. A.Click 'Summarize' in the Copilot sidebar
    2. B.Forward the email thread to Copilot Chat
    3. C.Use the 'Action Items' prompt in Copilot
    4. D.Open the email in Word and use Copilot
    Show answer & explanation

    Correct answer: AClick 'Summarize' in the Copilot sidebar

    • A. In Outlook on the web, Microsoft 365 Copilot provides a 'Summarize' option in the Copilot sidebar, which quickly extracts key points, decisions, and action items from email threads without leaving Outlook.
    • B. Forwarding the email to Copilot Chat is not the standard workflow; the user should use Copilot within Outlook itself for efficiency and direct summarization.
    • C. The 'Action Items' prompt is designed to extract tasks or follow-ups, not to summarize key decisions. The question asks for understanding key decisions, so a summary is more appropriate.
    • D. Opening the email in Word is unnecessary; Copilot summarization is available natively in Outlook on the web, making this approach inefficient.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    20.A user wants to use Copilot in Excel to analyze sales data. Which three types of natural language prompts can they use? (Choose three.)(Select 3)

    1. A.Show total sales by region.
    2. B.Create a bar chart of revenue by quarter.
    3. C.Add a column for profit margin calculation.
    4. D.Email this table to the sales team.
    5. E.Highlight cells where sales > $10k.
    6. F.Print this worksheet with page breaks.
    Show answer & explanation

    Correct answers: A, B, CShow total sales by region.; Create a bar chart of revenue by quarter.; Add a column for profit margin calculation.

    • A. Correct. Copilot in Excel can interpret natural language prompts to generate summaries and aggregations, such as showing total sales by region. This is a typical data analysis request that fits Excel Copilot's capabilities.
    • B. Correct. Copilot can create visualizations like bar charts based on natural language requests, such as 'Create a bar chart of revenue by quarter.' This is a common way to analyze and present sales trends in Excel.
    • C. Correct. Copilot can assist with calculations and add formula columns, such as 'Add a column for profit margin calculation.' This aligns with using Copilot to transform and analyze spreadsheet data.
    • D. Incorrect. Sending emails is not a capability of Copilot in Excel; this would require Outlook or another email client. Copilot in Excel focuses on working with worksheet data rather than sending email.
    • E. Incorrect. While Excel can format cells conditionally, this prompt is more about formatting than analyzing sales data. Copilot in Excel currently does not support conditional formatting via natural language prompts as a core analysis feature.
    • F. Incorrect. Printing worksheets with page breaks is a document layout task, not an analysis prompt for Copilot in Excel. It does not relate to interpreting or summarizing sales data.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    21.A company is considering building a custom AI solution vs using Microsoft 365 Copilot. Which three factors favor building a custom solution with Azure AI?(Select 3)

    1. A.The solution requires training on proprietary company data.
    2. B.It must integrate with legacy on-premises databases.
    3. C.It should embed natively in Microsoft Outlook and Teams.
    4. D.The organization needs to fine-tune the model continuously.
    5. E.It must comply automatically with Microsoft 365 data policies.
    6. F.The solution needs to be available within two weeks.
    Show answer & explanation

    Correct answers: A, B, DThe solution requires training on proprietary company data.; It must integrate with legacy on-premises databases.; The organization needs to fine-tune the model continuously.

    • A. Correct. Building a custom solution with Azure AI allows training on proprietary company data, providing more control over data ingestion, retrieval, and governance compared to Microsoft 365 Copilot's standard grounding model. This is essential when data must remain private or meet specific compliance requirements.
    • B. Correct. A custom Azure AI solution can be designed to connect to legacy on-premises databases through custom integrations, APIs, or hybrid networking, whereas Microsoft 365 Copilot is primarily cloud-based and may not support such integrations natively.
    • C. Incorrect. Native embedding in Outlook and Teams is a strength of Microsoft 365 Copilot, not a reason to build a custom solution. If the goal is to work directly inside Microsoft 365 apps, Copilot is usually the better choice.
    • D. Correct. Custom solutions built with Azure AI can be fine-tuned continuously to adapt to evolving business needs, whereas Microsoft 365 Copilot's models are managed by Microsoft and do not offer the same level of customization or iterative control.
    • E. Incorrect. Automatic compliance with Microsoft 365 data policies is an advantage of Microsoft 365 Copilot within the Microsoft 365 ecosystem. While a custom Azure AI solution can be made compliant, it requires the organization to design and enforce those controls, making this a strength of Copilot, not a reason to build custom.
    • F. Incorrect. A two-week timeline favors using an off-the-shelf service like Microsoft 365 Copilot, which can be deployed quickly. Building a custom solution typically takes longer due to design, integration, testing, and deployment efforts.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    22.An IT admin is configuring Copilot for an organization. Which three settings are available in the Microsoft 365 admin center for Copilot? (Choose three.)(Select 3)

    1. A.Turn off web content grounding for Copilot entirely.
    2. B.Assign Copilot licenses to specific users or groups.
    3. C.Upload a custom logo for the Copilot pane.
    4. D.Analyze Copilot usage metrics in reports.
    5. E.Define how long Copilot stores chat history.
    6. F.Disable Copilot in specific Office desktop apps.
    Show answer & explanation

    Correct answers: B, D, FAssign Copilot licenses to specific users or groups.; Analyze Copilot usage metrics in reports.; Disable Copilot in specific Office desktop apps.

    • A. Incorrect. Turning off web content grounding for Copilot is not a setting in the Microsoft 365 admin center; it is configured via Microsoft Purview or related service policies.
    • B. Correct. Admins can assign Copilot licenses to specific users or groups in the Microsoft 365 admin center under the Licenses section, enabling access for designated users.
    • C. Incorrect. Uploading a custom logo for the Copilot pane is not available in the Microsoft 365 admin center; branding options are managed in other areas of Microsoft 365.
    • D. Correct. The Microsoft 365 admin center provides Copilot usage reports and analytics under Reports, allowing admins to track adoption and measure value.
    • E. Incorrect. Defining how long Copilot stores chat history is not a setting in the admin center; it is governed by Microsoft 365 compliance policies or Microsoft Purview.
    • F. Correct. Admins can disable Copilot in specific Office desktop apps via Settings > Org settings > Microsoft Copilot in the Microsoft 365 admin center, tailoring availability.

    Subdomain 2.1: Identify benefits and capabilities of Microsoft 365 Copilot and Microsoft Copilot

    23.The Microsoft 365 Copilot Chat web experience requires a desktop installation of Microsoft 365 apps.

    1. A.True
    2. B.False
    Show answer & explanation

    Correct answer: BFalse

    • A. The statement is false because Microsoft 365 Copilot Chat is a web-based experience that does not require a desktop installation of Microsoft 365 apps; it can be accessed directly through a web browser.
    • B. The statement is false because the web experience is designed to work in a browser independent of locally installed Microsoft 365 applications, so no desktop installation is needed.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    24.A retail chain has millions of product images from store shelves. They need to automatically detect product stock‑outs and misplaced items. Which Foundry tool should they implement?

    1. A.Azure AI Search
    2. B.Azure Vision
    3. C.Azure Machine Learning
    4. D.Azure Bot Service
    Show answer & explanation

    Correct answer: BAzure Vision

    • A. Incorrect. Azure AI Search is designed for indexing and searching large volumes of structured and unstructured data, not for image analysis or object detection. It cannot directly detect stock-outs or misplaced items from images.
    • B. Correct. Azure Vision (part of Azure AI Services) provides computer vision capabilities, including object detection, image analysis, and custom vision models. It is ideal for automatically detecting stock-outs, misplaced items, and product recognition from shelf images.
    • C. Incorrect. Azure Machine Learning is a platform for building, training, and deploying custom machine learning models. While it could solve this problem with significant custom development, it does not offer out-of-the-box computer vision features for image analysis like Azure Vision does.
    • D. Incorrect. Azure Bot Service is used to create conversational AI bots and virtual assistants. It does not analyze images or detect inventory issues from shelf photos.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    25.An insurance company processes thousands of scanned claim forms daily. They want to extract key fields (claim number, date, amount) for downstream automation. Which capability of Azure Vision in Foundry directly addresses this need?

    1. A.Image classification
    2. B.Object detection
    3. C.Optical character recognition (OCR)
    4. D.Facial recognition
    Show answer & explanation

    Correct answer: COptical character recognition (OCR)

    • A. Incorrect. Image classification assigns a single label to an entire image, such as identifying whether it is a form or a photo. It does not extract specific text fields like claim number, date, or amount from scanned documents.
    • B. Incorrect. Object detection locates and identifies objects within an image using bounding boxes, which is useful for visual elements but not for reading or extracting text from documents.
    • C. Correct. Optical character recognition (OCR) is designed to extract printed or handwritten text from images. In Azure Vision, OCR directly reads and extracts key fields such as claim numbers, dates, and amounts from scanned forms, enabling downstream automation.
    • D. Incorrect. Facial recognition identifies or verifies individuals based on facial features. It is unrelated to extracting text data from claim forms.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    26.A manufacturing plant wants to deploy a quality‑control system that inspects parts on a conveyor belt in real time. The system must identify defects and trigger an alert within 100 milliseconds. Which Azure Vision capability is most suitable?

    1. A.Cloud-based image analysis service
    2. B.Custom object detection via Edge
    3. C.Cloud live video stream analysis service
    4. D.Batch image processing for quality control
    Show answer & explanation

    Correct answer: BCustom object detection via Edge

    • A. Incorrect. Cloud-based image analysis introduces network latency because images must be uploaded and results returned over the internet, making it unsuitable for the strict 100-millisecond alert requirement. Real-time conveyor-belt inspection requires local inference to avoid round-trip delays.
    • B. Correct. Custom object detection via Edge leverages Azure AI Vision on edge devices (e.g., a camera or gateway near the conveyor belt). This enables on-device or near-device inference with very low latency, meeting the sub-100-millisecond requirement for real-time defect detection and alert triggering.
    • C. Incorrect. Video live stream analysis in the cloud still relies on sending video frames over the network for processing, which adds latency and can be unreliable for ultra-low-latency industrial inspection. It is better suited for streaming analytics scenarios where response times can be relaxed.
    • D. Incorrect. Batch image processing is designed for offline or scheduled analysis of collections of images, not immediate real-time detection. It cannot provide the instantaneous feedback needed to inspect parts and trigger alerts within 100 milliseconds.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    27.A healthcare provider wants to implement an AI system that analyzes X‑ray images to detect early signs of lung disease. The system must explain its findings and highlight the region of interest. Which Foundry tool should they use?

    1. A.Azure AI Search with image indexing capabilities
    2. B.Azure Vision classification and object detection
    3. C.Azure Machine Learning designer for custom models
    4. D.Azure Bot Service with QnA knowledge base
    Show answer & explanation

    Correct answer: BAzure Vision classification and object detection

    • A. Incorrect. Azure AI Search with an image indexer is designed for indexing and searching images based on metadata or visual features, not for medical image analysis that requires classification, localization, and explainability. It lacks the ability to highlight regions of interest or provide diagnostic explanations.
    • B. Correct. Azure Vision with image classification and object detection can analyze X-ray images, classify findings, and detect regions of interest through bounding boxes or segmentation. While it may not natively generate textual explanations, it can be integrated with other services to highlight and explain findings, meeting the requirement.
    • C. Incorrect. Azure Machine Learning designer is a drag-and-drop tool for building, training, and deploying custom machine learning models. It does not provide pre-built vision capabilities for medical image analysis, and building such a model would require significant custom development. It is not the most direct Foundry tool for this scenario.
    • D. Incorrect. Azure Bot Service with a QnA knowledge base is designed for creating conversational AI and chatbots that answer questions from a knowledge base. It cannot analyze images or provide explainable AI insights for X-ray analysis.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    28.An e‑commerce platform wants to add a visual search feature: users upload a photo of an outfit, and the system finds similar items in the catalog. Which Azure Vision capability, when combined with Azure AI Search, enables this?

    1. A.OCR
    2. B.Image classification
    3. C.Vector embeddings of images
    4. D.Video analysis
    Show answer & explanation

    Correct answer: CVector embeddings of images

    • A. Incorrect. OCR extracts text from images (e.g., labels, receipts) but does not generate embeddings for visual similarity matching. It cannot compare visual features between a query image and catalog images.
    • B. Incorrect. Image classification assigns predefined labels (e.g., 'shirt', 'dress') to an image. While useful for tagging, it does not enable finding visually similar items based on an uploaded photo, as it lacks similarity comparison capabilities.
    • C. Correct. Vector embeddings of images represent visual content as numerical vectors. Combined with Azure AI Search, these vectors can be indexed and compared to find semantically or visually similar items in the catalog, making this the core capability for visual search.
    • D. Incorrect. Video analysis processes video content (e.g., motion detection, scene understanding) over time. It is not relevant for static image-based visual search in an e-commerce catalog.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    29.Which Azure AI Search feature allows an application to filter search results based on predefined categories like author, date, or product type?

    1. A.Semantic ranker
    2. B.Vector search
    3. C.Faceted navigation
    4. D.Key phrase extraction
    Show answer & explanation

    Correct answer: CFaceted navigation

    • A. Incorrect. Semantic ranker improves search result relevance by understanding query intent and context, but it does not provide category-based filtering. It reorders results based on semantic meaning rather than enabling users to narrow by predefined categories.
    • B. Incorrect. Vector search retrieves semantically similar content using vector embeddings, which is useful for natural-language queries but does not filter results by predefined metadata categories like author or date.
    • C. Correct. Faceted navigation allows users to filter and browse search results dynamically using predefined categories (facets) such as author, date, or product type. It leverages indexed metadata to enable drill-down, making it the feature designed for this purpose.
    • D. Incorrect. Key phrase extraction identifies important terms or phrases from content to assist with indexing or summarization, but it does not offer interactive filtering of search results based on categories.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    30.A nonprofit wants to automatically generate alt‑text for images on its website to improve accessibility. Which Azure Vision capability provides this?

    1. A.Face detection
    2. B.Image description generation
    3. C.Logo detection
    4. D.Landmark recognition
    Show answer & explanation

    Correct answer: BImage description generation

    • A. Incorrect. Face detection identifies and localizes human faces in images, which is useful for tagging or privacy-related scenarios, but it does not generate descriptive alt-text for accessibility.
    • B. Correct. Image description generation (part of Azure Computer Vision's 'Describe' feature) analyzes an image and produces a natural-language caption, which is directly useful for creating alt-text to improve accessibility on a website.
    • C. Incorrect. Logo detection recognizes brand logos in images, which is helpful for marketing or asset management, but it does not provide a general description of the image content for alt-text.
    • D. Incorrect. Landmark recognition identifies famous places or landmarks in an image, but it is a narrow capability and does not generate general-purpose alt-text for accessibility.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    31.A video surveillance company needs to detect if a person is wearing a hard hat in a construction site video feed. Which Azure Vision capability enables this?

    1. A.Optical character recognition
    2. B.Custom hard hat detection
    3. C.Image classification of frame
    4. D.Facial recognition for people
    Show answer & explanation

    Correct answer: BCustom hard hat detection

    • A. Optical character recognition (OCR) extracts printed or handwritten text from images or video frames, not objects like hard hats.
    • B. Correct. Custom object detection can be trained to identify specific objects, such as hard hats, in images or video frames. This is the most suitable capability for detecting whether a person is wearing a hard hat.
    • C. Image classification labels the overall content of an image (e.g., 'construction site') but does not localize or identify specific objects like hard hats within the frame.
    • D. Facial recognition identifies or verifies individuals based on facial features, not objects such as hard hats. It is not applicable for detecting safety gear.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    32.A city transportation authority wants to analyze traffic camera feeds to count vehicles and classify them (car, bus, truck). Which Azure Vision capability is most efficient?

    1. A.Image classification per frame without tracking
    2. B.Video analytics with object detection and tracking
    3. C.Using OCR to read text from license plates
    4. D.Facial recognition for identifying persons
    Show answer & explanation

    Correct answer: BVideo analytics with object detection and tracking

    • A. Image classification per frame without tracking requires processing each frame independently, which is inefficient for real-time video and lacks the ability to track objects across frames, making it unsuitable for counting and classifying vehicles in a traffic stream.
    • B. Video analytics with object detection and tracking is designed for real-time video feeds, enabling detection, classification, and tracking of moving objects across frames, making it the most efficient choice for counting and classifying vehicles.
    • C. OCR on license plates extracts text from plates, but does not classify vehicles by type or count them efficiently; it is focused on text recognition, not object detection.
    • D. Facial recognition is intended for identifying people, not vehicles, and is not applicable to vehicle classification or counting.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    33.Which two benefits do pre‑built AI models offer compared to building custom models? (Choose two.)(Select 2)

    1. A.They always outperform custom models by at least 20 percent or more.
    2. B.They significantly reduce development time and expertise required.
    3. C.They require no validation or testing at all.
    4. D.They are cost‑effective for common tasks and deploy rapidly.
    5. E.They automatically adapt to domain-specific jargon.
    Show answer & explanation

    Correct answers: B, DThey significantly reduce development time and expertise required.; They are cost‑effective for common tasks and deploy rapidly.

    • A. Incorrect. Pre-built AI models do not guarantee a fixed performance improvement over custom models. Their performance depends on the task, data quality, and domain specificity. Custom models can outperform pre-built models in specialized scenarios.
    • B. Correct. Pre-built models significantly reduce development time because they are ready to use without training from scratch. They also require less specialized expertise compared to building and tuning a custom model, making AI adoption easier for teams.
    • C. Incorrect. Even pre-built models require validation and testing to ensure they perform correctly for the intended use case. Testing is essential for accuracy, reliability, and compliance.
    • D. Correct. Pre-built models are typically cost-effective for common tasks because they eliminate the expense of custom development and training. They can also be deployed quickly, reducing time to value.
    • E. Incorrect. Pre-built models do not automatically adapt to domain-specific jargon. They handle general language well, but customization or fine-tuning is usually required for specialized terminology.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    34.Microsoft Foundry provides enterprise‑grade security features, including role‑based access control and compliance certifications like SOC2 and HIPAA.

    1. A.True
    2. B.False
    Show answer & explanation

    Correct answer: ATrue

    • A. The statement is true because Microsoft Foundry is built for enterprise use and includes role-based access control (RBAC) for managing permissions. It also operates within Microsoft's compliance framework, which includes certifications such as SOC 2 and HIPAA, ensuring data protection and regulatory alignment.
    • B. The statement is false because Microsoft Foundry is a consumer-only or lightly managed service and does not include enterprise security features or compliance certifications like SOC2 and HIPAA.

    Subdomain 2.2: Identify benefits and capabilities of Foundry Tools

    35.When selecting an AI model, organizations should consider the model's ________ for their specific use case, including factors like accuracy, latency, and data privacy.

    1. A.color theme
    2. B.suitability and trade‑offs
    3. C.download count
    Show answer & explanation

    Correct answer: Bsuitability and trade‑offs

    • A. Incorrect. 'Color theme' is irrelevant to technical and functional evaluation of an AI model. Accuracy, latency, and data privacy are model-selection criteria, not visual styling characteristics.
    • B. Correct. 'Suitability and trade-offs' directly captures the need to balance competing factors such as accuracy, latency, and data privacy when selecting an AI model for a specific use case. This phrase reflects the practical constraints and priorities organizations must weigh.
    • C. Incorrect. 'Download count' is a popularity metric and does not reflect the model's performance, reliability, or alignment with organizational requirements. It is not a meaningful criterion for enterprise model selection.

    Want the full experience?

    These are just samples. Practice the full Microsoft AI Transformation Leader (AB-731) question bank in quiz mode — free, no signup, with domain practice and exam simulation.