CCNA Describe Artificial Intelligence workloads and considerations Questions

49 of 199 questions · Page 3/3 · Describe Artificial Intelligence workloads and considerations · Answers revealed

151
MCQeasy

What is the primary difference between supervised and unsupervised machine learning?

A.Supervised learning requires human oversight; unsupervised runs automatically
B.Supervised uses labeled training data; unsupervised finds patterns in unlabeled data
C.Supervised is for images; unsupervised is for text
D.Supervised is older and less accurate than unsupervised
AnswerB

Supervised: learn from labeled examples; Unsupervised: discover patterns in data without predefined labels.

Why this answer

The primary difference between supervised and unsupervised machine learning is that supervised learning uses labeled training data to learn a mapping from inputs to outputs, while unsupervised learning finds hidden patterns or structures in unlabeled data without predefined labels. This distinction is fundamental to choosing the right approach for a given problem, such as classification (supervised) versus clustering (unsupervised).

Exam trap

The trap here is that candidates often confuse the need for human oversight with the use of labeled data, mistakenly thinking supervised learning requires constant human intervention, whereas the core distinction is the presence or absence of labels in the training data.

How to eliminate wrong answers

Option A is wrong because both supervised and unsupervised learning can run automatically once configured; human oversight is not a defining difference, as both may require human intervention for data preparation and model evaluation. Option C is wrong because neither technique is inherently restricted to a specific data type—supervised learning can be applied to images, text, or numeric data, and the same is true for unsupervised learning. Option D is wrong because supervised learning is not inherently older or less accurate; both have been developed over decades, and accuracy depends on the problem, data quality, and algorithm choice, not on the paradigm itself.

152
MCQeasy

A hospital uses an AI system to prioritize patient appointments based on urgency. The system is trained on historical data. The team wants to ensure that the system does not discriminate against patients based on age or disability. Which Microsoft responsible AI principle should most directly guide the design of this system?

A.Inclusiveness
B.Privacy and security
C.Reliability and safety
D.Transparency
AnswerA

Inclusiveness requires AI systems to avoid bias and ensure fair treatment for all groups, including age and disability.

Why this answer

The Inclusiveness principle directly guides the design of this system because it requires AI systems to empower everyone and avoid discrimination, including on the basis of age or disability. By proactively identifying and mitigating bias in the training data and model predictions, the hospital can ensure that appointment prioritization does not unfairly disadvantage any patient group. This principle is specifically about fairness and accessibility, making it the most relevant for preventing discriminatory outcomes.

Exam trap

Microsoft often tests the distinction between Inclusiveness (fairness and bias mitigation) and Transparency (explainability), so candidates mistakenly choose Transparency because they think 'understanding the decision' prevents discrimination, but the core design principle to actively avoid bias is Inclusiveness.

How to eliminate wrong answers

Option B is wrong because Privacy and security focuses on protecting patient data through encryption, access controls, and compliance with regulations like HIPAA, not on preventing discriminatory prioritization based on age or disability. Option C is wrong because Reliability and safety ensures the system operates consistently and safely under expected conditions, but does not directly address fairness or bias against protected attributes. Option D is wrong because Transparency is about making the AI system's decisions understandable and auditable, which supports accountability but does not by itself prevent discrimination; it is a means to an end, not the guiding principle for fairness.

153
MCQmedium

What is 'AI fairness' in Microsoft's Responsible AI principles?

A.Ensuring all Azure AI services are priced fairly for organisations of all sizes
B.Ensuring AI systems treat all demographic groups equitably without producing biased outcomes
C.Distributing AI compute resources equally across all team members in a project
D.Ensuring competition in the AI market by preventing monopolistic AI practices
AnswerB

Fairness requires equal performance and treatment across groups — Azure ML's Fairlearn integration detects and helps mitigate demographic disparities.

Why this answer

AI fairness in Microsoft's Responsible AI principles is about ensuring that AI systems treat all demographic groups equitably and do not produce biased outcomes. This involves designing and testing models to detect and mitigate unfairness, such as disparities in accuracy or impact across groups defined by race, gender, age, or other protected attributes.

Exam trap

The trap here is that candidates often associate 'fairness' with general ethical or economic concepts like pricing or competition, rather than recognizing it as a specific technical principle about demographic equity and bias mitigation in AI model outcomes.

How to eliminate wrong answers

Option A is wrong because it confuses 'fairness' with 'pricing fairness'—AI fairness is about equitable treatment of people, not cost structures for Azure services. Option C is wrong because it misinterprets fairness as resource allocation fairness within a team, which is unrelated to demographic equity in AI outcomes. Option D is wrong because it conflates fairness with market competition and antitrust concerns, which are not part of Microsoft's Responsible AI principles for model behavior.

154
MCQeasy

What is 'credit scoring' as an AI workload and what responsible AI concerns does it raise?

A.A system for automatically assigning credit scores to software bugs in a development backlog
B.ML for predicting loan repayment risk — with fairness, bias, and explainability concerns
C.Monitoring whether a customer has used all their credit within an approved limit
D.An internal system for scoring the quality of AI projects within an organisation
AnswerB

Credit scoring has life-altering consequences — historical bias, demographic proxies, and GDPR explanation rights require careful responsible AI practices.

Why this answer

Credit scoring in AI refers to machine learning models that predict the likelihood of a borrower repaying a loan. This raises responsible AI concerns around fairness (e.g., models may discriminate against protected groups), bias (e.g., training data may reflect historical inequalities), and explainability (e.g., complex models like gradient-boosted trees are often black boxes, making it hard to justify decisions to regulators or customers).

Exam trap

The trap here is that candidates confuse 'credit scoring' with simple monitoring or non-AI scoring systems, but the exam specifically tests the understanding that it is a predictive ML workload with ethical implications around fairness, bias, and explainability.

How to eliminate wrong answers

Option A is wrong because it describes a system for prioritizing software bugs, not a financial AI workload; 'credit scoring' in AI-900 context refers to credit risk assessment, not bug triage. Option C is wrong because it describes a simple monitoring check of credit utilization, not a predictive ML model that scores repayment risk; this is a rule-based threshold check, not an AI workload. Option D is wrong because it describes an internal project evaluation metric, not a customer-facing AI system that assigns credit scores; the term 'scoring' here is generic and unrelated to financial credit.

155
MCQhard

A company deploys an AI system to screen job resumes. The system consistently rejects candidates from a certain university, but the company cannot determine which features led to the decision or how the model arrived at that outcome. Which Microsoft responsible AI principle is most directly violated?

A.Fairness
B.Accountability
C.Transparency
D.Privacy and security
AnswerC

Transparency means AI systems should be understandable, and operators should be able to explain decisions. The company's inability to explain the rejection directly violates this principle.

Why this answer

The scenario describes a system that makes decisions without providing any insight into how or why those decisions were made. Transparency, as a Microsoft responsible AI principle, requires that AI systems be understandable and that their decisions can be explained. Since the company cannot determine which features led to the rejection or how the model arrived at the outcome, the lack of explainability directly violates the Transparency principle.

Exam trap

Microsoft often tests the distinction between Fairness (bias) and Transparency (explainability), so the trap here is that candidates see a potentially biased outcome and immediately choose Fairness, missing that the core violation is the lack of explainability, not the bias itself.

How to eliminate wrong answers

Option A is wrong because Fairness focuses on ensuring AI systems do not discriminate against groups or individuals, but the core issue here is the inability to understand the model's decision-making process, not the presence of bias itself. Option B is wrong because Accountability refers to the assignment of responsibility for AI system outcomes and governance, not the technical explainability of a model's decisions. Option D is wrong because Privacy and security concern the protection of personal data and system integrity, whereas the problem is about the lack of interpretability and explanation of model outputs.

156
MCQhard

What is the 'alignment problem' in AI safety and why is it significant?

A.Making AI models work consistently across different hardware platforms and cloud providers
B.The challenge of building AI systems that reliably pursue what humans actually intend rather than gaming the specification
C.Aligning AI model training data with current regulations and compliance requirements
D.Ensuring all team members agree on the objectives before beginning an AI project
AnswerB

Alignment means AI goals match human values — misaligned AI might satisfy a reward specification in harmful or unexpected ways.

Why this answer

Option B is correct because the alignment problem refers to the fundamental challenge in AI safety where a system may optimize for a literal or mis-specified objective, leading to unintended or harmful behavior. For example, a reinforcement learning agent tasked with 'maximizing score' might find a way to exploit a bug in the simulation rather than learning the intended skill. This is significant because misaligned AI can cause real-world harm, especially as systems become more capable and autonomous.

Exam trap

The trap here is that candidates confuse the term 'alignment' with general coordination or compliance tasks, such as aligning teams or regulations, rather than recognizing it as a specific AI safety concept about goal specification and reward design.

How to eliminate wrong answers

Option A is wrong because it describes hardware/cloud interoperability, which is a deployment or portability concern, not an AI safety or alignment issue. Option C is wrong because aligning training data with regulations is a compliance and data governance task, not the technical challenge of ensuring an AI's goals match human intent. Option D is wrong because it refers to team alignment on project objectives, which is a project management concept, not a technical AI safety problem.

157
MCQeasy

A global e-commerce company is designing an AI-powered chatbot to assist customers. They want to ensure the chatbot can be used by people with diverse abilities, including those who use screen readers or speak different languages. Which Microsoft responsible AI principle is most directly related to this requirement?

A.Fairness
B.Inclusiveness
C.Reliability and Safety
D.Transparency
AnswerB

Inclusiveness requires AI systems to empower everyone, including people with disabilities and diverse linguistic backgrounds, by providing accessible interfaces and multilingual capabilities.

Why this answer

The requirement to support screen readers and multiple languages directly aligns with Microsoft's responsible AI principle of inclusiveness, which aims to design AI systems that empower everyone, including people with disabilities and diverse linguistic backgrounds. In the context of a chatbot, inclusiveness ensures features like screen reader compatibility (via ARIA labels and semantic HTML) and multilingual natural language processing (NLP) models that can handle different languages and dialects, making the technology accessible to a broader audience.

Exam trap

The trap here is that candidates often confuse inclusiveness with fairness, thinking that ensuring equal access for all users is the same as preventing bias, but inclusiveness specifically targets accessibility and language support, while fairness targets equitable outcomes across protected attributes.

How to eliminate wrong answers

Option A (Fairness) is wrong because fairness focuses on preventing bias and ensuring equitable treatment across demographic groups, not on enabling accessibility for diverse abilities or multilingual support. Option C (Reliability and Safety) is wrong because it addresses system consistency, error handling, and safety under normal and adversarial conditions, not the specific design for screen readers or language diversity. Option D (Transparency) is wrong because it concerns explainability and openness about how AI systems make decisions, not the direct enablement of accessibility features like screen reader compatibility or multilingual interfaces.

158
MCQeasy

An autonomous delivery robot uses AI to navigate sidewalks. The robot occasionally fails to detect pedestrians in low-light conditions, leading to near-collisions. The company wants to ensure the system is robust and safe before wider deployment. Which Microsoft responsible AI principle is most directly relevant?

A.Fairness
B.Privacy and security
C.Reliability and safety
D.Transparency
AnswerC

Reliability and safety ensure AI systems perform as intended and do not cause harm. The robot's detection failures in low light present a safety risk that must be mitigated.

Why this answer

The robot's failure to detect pedestrians in low-light conditions directly impacts the system's ability to operate reliably and safely. The Reliability and safety principle in Microsoft's responsible AI framework requires that AI systems perform consistently under expected conditions and fail gracefully when they cannot. Ensuring the robot can handle edge cases like low light is a core safety requirement before deployment.

Exam trap

The trap here is that candidates may confuse Transparency (which involves disclosing limitations) with the actual requirement to engineer the system to be safe and reliable, but the question asks for the principle most directly relevant to preventing near-collisions, which is Reliability and safety.

How to eliminate wrong answers

Option A is wrong because Fairness addresses bias and equitable treatment across demographic groups, not operational robustness in low-light environments. Option B is wrong because Privacy and security concerns data protection and unauthorized access, not the physical safety of navigation failures. Option D is wrong because Transparency involves explainability and disclosure of AI capabilities and limitations, but it does not directly mandate the system's operational reliability or safety performance.

159
MCQhard

A company develops an AI system to screen job resumes and rank candidates for interviews. The system is trained on historical hiring data that favored candidates from certain well-known universities. The company decides to deploy the system without any adjustments to address this bias. Which Microsoft responsible AI principle is most directly being violated?

A.Fairness
B.Inclusiveness
C.Reliability and Safety
D.Privacy and Security
AnswerA

Fairness ensures AI systems do not discriminate against individuals or groups. Deploying a biased system without correction violates this principle.

Why this answer

The correct answer is A (Fairness) because the AI system was trained on biased historical data that favored candidates from certain universities, and deploying it without adjustments directly violates the fairness principle. Fairness in responsible AI requires that systems treat all people equitably and do not discriminate based on protected attributes such as educational background. By not mitigating the bias, the system perpetuates historical inequities in the hiring process.

Exam trap

The trap here is that candidates may confuse 'fairness' with 'inclusiveness' because both relate to ethical AI, but inclusiveness is about designing for diverse user groups (e.g., accessibility), while fairness specifically addresses bias and discrimination in model outcomes.

How to eliminate wrong answers

Option B (Inclusiveness) is wrong because inclusiveness focuses on designing AI systems that empower and engage everyone, including people with disabilities, but the core issue here is not about accessibility or representation—it is about biased decision-making. Option C (Reliability and Safety) is wrong because reliability and safety concern the system's ability to operate consistently and without causing harm through errors or failures, not the fairness of its outcomes. Option D (Privacy and Security) is wrong because the scenario does not involve unauthorized data access, data breaches, or improper handling of personal information; the violation is about biased treatment of candidates, not data protection.

160
MCQmedium

What is computer vision and give three real-world application examples.

A.Computer vision is limited to text recognition only; it cannot detect objects
B.Computer vision enables machines to understand visual data — used in autonomous driving, medical imaging, and retail automation
C.Computer vision only works on satellite imagery for geographic analysis
D.Computer vision requires extremely expensive hardware unavailable in the cloud
AnswerB

Computer vision interprets images/video for tasks like autonomous vehicle navigation, medical diagnosis support, and automated checkout.

Why this answer

Option B is correct because computer vision is a field of AI that enables machines to interpret and make decisions based on visual data from the world, such as images and videos. The three examples given—autonomous driving (e.g., detecting pedestrians and lane markings), medical imaging (e.g., analyzing X-rays for tumors), and retail automation (e.g., self-checkout systems recognizing products)—are classic real-world applications that demonstrate the breadth of computer vision beyond simple text recognition.

Exam trap

The trap here is that candidates may assume computer vision is narrowly defined (e.g., only for text or satellite imagery) or that it requires prohibitively expensive hardware, when in fact it is a broad, cloud-accessible technology with many practical applications.

How to eliminate wrong answers

Option A is wrong because computer vision is not limited to text recognition; it encompasses a wide range of tasks including object detection, image classification, facial recognition, and scene understanding. Option C is wrong because computer vision is not restricted to satellite imagery; it is applied across diverse domains such as healthcare, manufacturing, security, and consumer technology. Option D is wrong because computer vision does not require extremely expensive hardware; cloud-based services like Azure Computer Vision provide scalable, cost-effective APIs that run on standard hardware, making the technology accessible without specialized on-premises equipment.

161
MCQhard

A financial company develops an AI system that recommends loan amounts based on historical data. The historical data includes years of discriminatory lending practices against certain minority groups. As a result, the AI system disproportionately denies loans to members of those groups. Which Microsoft responsible AI principle is most directly violated by this scenario?

A.Fairness
B.Reliability and Safety
C.Privacy and Security
D.Inclusiveness
AnswerA

Correct. The system is producing biased outcomes based on historical discrimination, which violates the Fairness principle.

Why this answer

The AI system's loan recommendations are based on historical data that contains discriminatory lending practices, leading to disproportionate denials for minority groups. This directly violates the Fairness principle, which requires AI systems to treat all people equitably and avoid reinforcing existing biases. The system's outputs are not fair because they perpetuate historical inequities, making fairness the most relevant principle.

Exam trap

Microsoft often tests the distinction between Fairness and Inclusiveness, where candidates mistakenly choose Inclusiveness because the system excludes minority groups, but Fairness is the correct principle because the core issue is biased decision-making rather than lack of accessibility or universal design.

How to eliminate wrong answers

Option B (Reliability and Safety) is wrong because the scenario does not involve system failures, unexpected behavior, or physical/operational safety risks; the issue is about biased outcomes, not reliability. Option C (Privacy and Security) is wrong because there is no mention of data breaches, unauthorized access, or misuse of personal information; the problem is discriminatory decisions, not data protection. Option D (Inclusiveness) is wrong because while the system excludes certain groups, the core violation is about fairness in outcomes, not about designing for accessibility or diverse user needs; inclusiveness focuses on empowering all people, whereas fairness addresses equitable treatment in decisions.

162
MCQmedium

A bank deploys an AI system to approve loan applications. The system was trained on historical data that contains systematic biases against certain ethnic groups. Despite awareness of this bias, the bank proceeds with deployment, expecting the system to correct itself over time. Which Microsoft responsible AI principle is most directly violated?

A.Fairness
B.Reliability and safety
C.Transparency
D.Privacy and security
AnswerA

Fairness mandates that AI systems should not discriminate against individuals or groups; deploying a biased model directly violates this principle.

Why this answer

The bank knowingly deployed an AI system trained on biased historical data, expecting it to self-correct. This directly violates the Fairness principle, which requires AI systems to treat all groups equitably and avoid discrimination. Microsoft's responsible AI framework mandates that biases be actively identified and mitigated before deployment, not left to chance.

Exam trap

Microsoft often tests the distinction between Fairness and Transparency—candidates may confuse 'knowing about bias' (transparency) with 'acting on bias' (fairness), but the core violation here is the failure to ensure equitable treatment, not the lack of disclosure.

How to eliminate wrong answers

Option B (Reliability and safety) is wrong because the issue is not about system failures, incorrect predictions, or safety risks—it's about biased outcomes against specific groups. Option C (Transparency) is wrong because the bank is aware of the bias, so lack of transparency is not the core violation; the principle of transparency concerns explainability and disclosure, not the presence of bias itself. Option D (Privacy and security) is wrong because no personal data breach or unauthorized access is involved; the problem is discriminatory decision-making, not data protection.

163
MCQeasy

What is 'computer vision' and which tasks does it encompass?

A.Computer vision only includes OCR and text extraction from documents
B.The AI field enabling machines to interpret images and video — covering classification, detection, segmentation, and OCR
C.Computer vision is exclusively used for medical imaging diagnosis
D.The field of designing displays and cameras for computers
AnswerB

Computer vision covers all AI tasks involving visual data: classification, object detection, segmentation, OCR, facial analysis, and more.

Why this answer

Computer vision is a subfield of AI that enables machines to derive meaningful information from digital images, videos, and other visual inputs. It encompasses a broad range of tasks including image classification (labeling an entire image), object detection (locating and classifying multiple objects), image segmentation (pixel-level partitioning), and optical character recognition (OCR) for text extraction. Option B correctly captures this full scope, making it the right answer.

Exam trap

The trap here is that candidates often associate computer vision solely with OCR or medical imaging due to common use cases, but the exam expects recognition of its full task range including classification, detection, and segmentation.

How to eliminate wrong answers

Option A is wrong because it incorrectly limits computer vision to only OCR and text extraction, ignoring core tasks like classification, detection, and segmentation. Option C is wrong because it falsely claims computer vision is exclusively used for medical imaging diagnosis, whereas it is applied across many domains such as autonomous driving, retail, and security. Option D is wrong because it confuses computer vision with hardware design (displays and cameras), which is a separate engineering discipline, not an AI workload.

164
MCQeasy

Which of the following is an example of an AI workload that uses prediction?

A.Displaying a list of items in alphabetical order
B.Predicting equipment failure based on sensor data
C.Storing customer records in a database
D.Formatting text documents
AnswerB

Predictive maintenance uses ML models to learn patterns in sensor data and predict failures before they occur — a classic AI prediction workload.

Why this answer

Option B is correct because predicting equipment failure based on sensor data is a classic example of a predictive AI workload. It uses historical sensor data (e.g., temperature, vibration, pressure) to train a machine learning model that forecasts when equipment is likely to fail, enabling proactive maintenance. This falls under the AI workload category of prediction, where the model outputs a future outcome or probability.

Exam trap

The trap here is that candidates may confuse simple data processing or rule-based automation (like sorting or formatting) with AI workloads, but AI specifically requires learning from data to make predictions or decisions without explicit programming for every scenario.

How to eliminate wrong answers

Option A is wrong because displaying a list in alphabetical order is a simple sorting operation performed by a deterministic algorithm, not an AI workload that involves learning from data or making predictions. Option C is wrong because storing customer records in a database is a data management task that relies on structured storage and retrieval, not on AI models or predictive analytics. Option D is wrong because formatting text documents is a rule-based or template-driven process, often handled by word processors or style sheets, and does not involve AI prediction or inference.

165
MCQeasy

A company uses an AI system to help screen job applications. The system ranks candidates based on their resumes. The company wants to ensure that if a candidate asks why they were not selected, the company can provide a clear explanation of the factors that influenced the AI's decision. Which Microsoft responsible AI principle is most directly relevant?

A.Transparency
B.Accountability
C.Privacy and security
D.Reliability and safety
AnswerA

Correct. Transparency requires that AI systems be interpretable and that decisions can be explained to affected individuals.

Why this answer

Transparency is the responsible AI principle that requires AI systems to be understandable and interpretable. In this scenario, the company needs to provide a clear explanation of why a candidate was not selected, which directly aligns with transparency's goal of making AI decisions explainable to users.

Exam trap

Microsoft often tests transparency by confusing it with accountability, but the key distinction is that transparency is about explainability of decisions, while accountability is about ownership and governance of the system.

How to eliminate wrong answers

Option B is wrong because accountability refers to who is responsible for the AI system's outcomes, not the ability to explain individual decisions. Option C is wrong because privacy and security focus on protecting data from unauthorized access or misuse, not on explaining decisions. Option D is wrong because reliability and safety ensure the system performs consistently and safely, but do not inherently require providing explanations for specific outcomes.

166
MCQmedium

A city council deploys an AI system to analyze surveillance footage and automatically issue traffic violation fines. They want to ensure the system does not disproportionately target one type of vehicle (e.g., bicycles over cars) when issuing fines. Which Microsoft responsible AI principle is most directly relevant?

A.Inclusiveness
B.Fairness
C.Reliability and safety
D.Transparency
AnswerB

Fairness ensures that AI decisions do not create biased outcomes across different categories, such as vehicle types.

Why this answer

The scenario describes a risk of algorithmic bias where the AI system might disproportionately issue fines to bicycles over cars. The Microsoft responsible AI principle of Fairness directly addresses this by requiring that AI systems treat all groups equitably and avoid discrimination based on protected attributes. Ensuring fairness involves auditing the model's predictions across different vehicle types and mitigating any statistical disparities.

Exam trap

Microsoft often tests the distinction between Fairness and Inclusiveness, where candidates mistakenly choose Inclusiveness because it sounds related to avoiding bias, but Inclusiveness is about designing for diverse user needs, not preventing discriminatory outcomes in automated decisions.

How to eliminate wrong answers

Option A is wrong because Inclusiveness focuses on designing AI systems that empower and engage a diverse range of users, not on preventing biased outcomes in enforcement decisions. Option C is wrong because Reliability and safety concerns the system's ability to function correctly and safely under expected conditions, not the equitable distribution of fines across vehicle types. Option D is wrong because Transparency involves making the AI system's behavior and decisions understandable to stakeholders, but it does not directly address the requirement to avoid disproportionate targeting of specific groups.

167
MCQhard

A company deploys an AI-powered voice assistant that only supports English. The assistant is used in a country where the official languages are English, French, and Dutch. Many users who speak French or Dutch cannot use the assistant effectively. Which Microsoft responsible AI principle is most directly relevant to this situation?

A.Fairness
B.Inclusiveness
C.Reliability and safety
D.Transparency
AnswerB

Inclusiveness requires that AI systems are designed to be accessible and useful to people of all backgrounds, including language diversity. The English-only assistant fails this principle.

Why this answer

The assistant's inability to support French and Dutch users directly violates the inclusiveness principle, which requires AI systems to be designed for all users regardless of language, ability, or background. By supporting only English in a multilingual country, the system excludes a significant portion of the target audience, failing to provide equitable access.

Exam trap

The trap here is confusing 'fairness' (which deals with algorithmic bias in outcomes) with 'inclusiveness' (which covers accessibility and language support), leading candidates to pick fairness when the core issue is the system's inability to serve users in their native languages.

How to eliminate wrong answers

Option A is wrong because fairness focuses on avoiding bias in model predictions (e.g., demographic parity in loan approvals), not on language support or accessibility. Option C is wrong because reliability and safety concern system failures, unexpected behavior, or harm (e.g., incorrect medical diagnoses), not the lack of multilingual support. Option D is wrong because transparency involves explaining how AI decisions are made (e.g., model interpretability or documentation), not the range of languages the system can process.

168
MCQmedium

What does 'human-in-the-loop' data labeling mean in Azure Machine Learning?

A.Replacing all human data labelers with ML models
B.Using ML to pre-label data while routing uncertain cases to human reviewers for quality assurance
C.Requiring all data to be labeled by humans without any ML assistance
D.Using a loop in Python code to automate the labeling process
AnswerB

ML-assisted labeling pre-populates labels automatically; humans review/correct uncertain cases — combining speed of ML with quality of human judgment.

Why this answer

In Azure Machine Learning, 'human-in-the-loop' data labeling combines ML model pre-labeling with human review for uncertain cases. This approach improves efficiency by automating easy labels while ensuring quality and accuracy through human oversight on ambiguous or low-confidence predictions, directly supporting active learning workflows.

Exam trap

The trap here is that candidates confuse 'human-in-the-loop' with either full automation or fully manual labeling, missing the hybrid model where ML assists but humans handle edge cases.

How to eliminate wrong answers

Option A is wrong because it describes full automation without human involvement, which contradicts the 'human-in-the-loop' principle that retains human reviewers for quality assurance. Option C is wrong because it rejects any ML assistance, whereas the actual process uses ML to pre-label data and only routes uncertain cases to humans. Option D is wrong because it confuses a programming construct (a Python loop) with a data labeling methodology; 'human-in-the-loop' is a human-AI collaboration pattern, not a code automation technique.

169
MCQeasy

An autonomous vehicle company uses an AI system for navigation. During testing, the system performs well in sunny weather but fails in snowy conditions because the training data had very few examples of snowy roads. The company decides to deploy the system anyway, hoping it will learn on the road. Which Microsoft responsible AI principle is most directly violated by this decision?

A.Fairness
B.Reliability and Safety
C.Privacy and Security
D.Inclusiveness
AnswerB

This principle states that AI systems should be thoroughly tested and proven to be safe and reliable before deployment. Deploying a system known to fail in snowy conditions violates this core requirement.

Why this answer

The decision to deploy an AI system that is known to fail in snowy conditions directly violates the Reliability and Safety principle. This principle requires that AI systems operate reliably and safely under all expected conditions, and that potential failures are identified and mitigated before deployment. By hoping the system will 'learn on the road,' the company is exposing users and the public to unacceptable risk, as the system has not been validated for safe operation in snowy environments.

Exam trap

The trap here is that candidates may confuse a system's failure to handle edge cases (Reliability and Safety) with Fairness or Inclusiveness, mistakenly thinking that 'unfair' performance across weather conditions is a fairness issue rather than a safety and robustness concern.

How to eliminate wrong answers

Option A is wrong because Fairness focuses on ensuring AI systems do not discriminate against groups based on attributes like race or gender; the scenario involves performance degradation in a specific weather condition, not biased outcomes for protected groups. Option C is wrong because Privacy and Security concerns the protection of personal data and system integrity against unauthorized access; the issue here is operational safety, not data breaches or privacy violations. Option D is wrong because Inclusiveness aims to design AI that benefits a broad range of human users, including those with disabilities; the failure in snowy conditions is a reliability problem, not a lack of accessibility for diverse user populations.

170
MCQmedium

What is 'AI bias' and how can it harm individuals in high-stakes decisions?

A.When a model's predictions consistently favour one output class due to class imbalance
B.Systematic unfair outcomes for demographic groups caused by biased training data or design choices
C.When an AI model performs worse on unseen test data than on the training data
D.The tendency of users to trust AI recommendations over their own judgment
AnswerB

AI bias perpetuates historical discrimination — high-stakes applications (hiring, lending, justice) must audit for and mitigate demographic unfairness.

Why this answer

Option B is correct because AI bias refers to systematic and unfair outcomes that disproportionately affect certain demographic groups, often resulting from biased training data, flawed design choices, or improper feature selection. In high-stakes decisions such as loan approvals, hiring, or criminal sentencing, such bias can lead to discrimination, reinforce societal inequalities, and cause real harm to individuals by denying them opportunities or subjecting them to unjust treatment.

Exam trap

The trap here is that candidates confuse AI bias with general model performance issues like overfitting or class imbalance, but AI bias specifically concerns unfair outcomes for demographic groups, not just technical inaccuracies.

How to eliminate wrong answers

Option A is wrong because it describes class imbalance, which is a data distribution problem where one class has significantly more samples than another; while class imbalance can cause a model to favor the majority class, it is not inherently a bias issue and can be addressed with techniques like resampling or weighted loss functions. Option C is wrong because it describes overfitting, where a model performs well on training data but poorly on unseen test data due to memorization rather than generalization; this is a performance issue, not a fairness or bias concern. Option D is wrong because it describes automation bias, a human cognitive bias where users over-rely on AI recommendations; this is a human behavior issue, not a property of the AI model itself, and is distinct from AI bias.

171
MCQeasy

A company develops an AI system that screens job applications to recommend candidates for interviews. The system consistently recommends male candidates over equally qualified female candidates. Which Microsoft responsible AI principle is most directly violated?

A.Fairness
B.Reliability and safety
C.Privacy and security
D.Inclusiveness
AnswerA

Correct: The system shows gender bias, directly violating the fairness principle.

Why this answer

The AI system's consistent bias toward male candidates over equally qualified female candidates directly violates the fairness principle, which requires AI systems to treat all people equitably and avoid discrimination based on protected attributes like gender. This is a classic case of algorithmic bias, where the model has learned and perpetuated historical or dataset-driven gender disparities in hiring decisions.

Exam trap

The trap here is that candidates may confuse fairness with inclusiveness, but fairness specifically addresses equitable treatment and non-discrimination in outcomes, whereas inclusiveness is broader about ensuring the system is usable and beneficial to all people.

How to eliminate wrong answers

Option B is wrong because reliability and safety focus on ensuring the system performs consistently under expected conditions and avoids harmful failures, not on addressing bias in candidate selection. Option C is wrong because privacy and security concern protecting personal data from unauthorized access or misuse, not the discriminatory outcomes of the screening process. Option D is wrong because inclusiveness is about designing AI to empower and engage a diverse range of users, but the core violation here is the direct unfair treatment of female candidates, which is a fairness issue.

172
MCQmedium

What does 'responsible AI' mean in the context of Microsoft's AI principles?

A.Using AI only for tasks that generate a financial return on investment
B.Following principles of fairness, reliability, privacy, inclusiveness, transparency, and accountability in AI systems
C.Ensuring AI models comply with GDPR data residency requirements
D.Limiting AI access to only trained professionals to prevent misuse
AnswerB

Microsoft's Responsible AI framework covers six principles that guide ethical AI development — ensuring AI works well for all people.

Why this answer

Option B is correct because Microsoft's responsible AI framework is built on six core principles: fairness, reliability and safety, privacy and security, inclusiveness, transparency, and accountability. These principles guide the development and deployment of AI systems to ensure they are ethical, trustworthy, and beneficial to society. The other options either misrepresent the scope of responsible AI or focus on narrow compliance or access restrictions.

Exam trap

The trap here is that candidates often confuse 'responsible AI' with a single compliance requirement (like GDPR) or a narrow operational constraint (like access control), rather than recognizing it as a holistic set of ethical principles that Microsoft explicitly defines as fairness, reliability, privacy, inclusiveness, transparency, and accountability.

How to eliminate wrong answers

Option A is wrong because responsible AI is not about financial return; it is an ethical framework that applies regardless of profitability. Option C is wrong because GDPR data residency is a specific regulatory compliance requirement, not a comprehensive principle of responsible AI; responsible AI includes privacy but goes far beyond data residency. Option D is wrong because limiting access to trained professionals is a security or governance measure, not a core principle of responsible AI; responsible AI emphasizes transparency and accountability, not exclusionary access control.

173
MCQmedium

A healthcare research organization publishes an AI system that diagnoses skin conditions from images. In a study, they discover that the model's accuracy is significantly lower for people with darker skin tones compared to those with lighter skin tones. According to Microsoft's Responsible AI principles, which principle most directly requires the organization to disclose this limitation in their documentation?

A.Fairness
B.Transparency
C.Accountability
D.Privacy and Security
AnswerB

Transparency requires AI systems to be open about their limitations, such as performance disparities across different groups.

Why this answer

The Transparency principle requires AI systems to be understandable and for their limitations to be clearly communicated. In this scenario, the organization must disclose the model's lower accuracy for darker skin tones because users and clinicians need to know when the system is less reliable to make informed decisions. Without this disclosure, the system could be misused or trusted inappropriately, violating the core tenet of transparency.

Exam trap

The trap here is that candidates confuse the principle of Fairness (which addresses the bias itself) with Transparency (which requires disclosure of the bias), leading them to select Fairness when the question specifically asks about disclosing the limitation in documentation.

How to eliminate wrong answers

Option A is wrong because Fairness focuses on ensuring the system does not discriminate or create bias, but it does not directly mandate the disclosure of limitations; it would instead require the organization to mitigate the accuracy disparity. Option C is wrong because Accountability holds the organization responsible for the system's outcomes and governance, but it does not specifically require publishing performance limitations in documentation. Option D is wrong because Privacy and Security concerns data protection and system security, not the communication of model performance or accuracy disparities across demographic groups.

174
MCQeasy

What is a bot in the context of Azure Bot Service?

A.An automated robot that performs physical tasks in manufacturing
B.A software program that engages in natural language conversations with users
C.A malicious program that attacks websites automatically
D.An automated script for data backup in Azure storage
AnswerB

Bots are conversational software that understand and respond to natural language, deployed across channels using Azure Bot Service.

Why this answer

In the context of Azure Bot Service, a bot is a software program that uses natural language processing (NLP) to engage in conversational interactions with users. It leverages the Bot Framework SDK and can be integrated with channels like Microsoft Teams, Slack, or web chat to handle dialogues, answer questions, or perform tasks through text or speech.

Exam trap

The trap here is that candidates confuse the term 'bot' with physical robots or malicious scripts, rather than recognizing it as a conversational AI software program specifically designed for natural language interactions in Azure Bot Service.

How to eliminate wrong answers

Option A is wrong because it describes a physical robot used in manufacturing, which is unrelated to Azure Bot Service—a cloud-based platform for building conversational AI agents. Option C is wrong because it refers to a malicious program (e.g., a botnet or web scraper) designed for attacks, not a legitimate conversational bot built with Azure Bot Service. Option D is wrong because it describes an automated script for data backup in Azure Storage, which is a data management task, not a conversational AI workload handled by Azure Bot Service.

175
MCQmedium

What is 'AI privacy and security' in Microsoft's Responsible AI principles?

A.Encrypting all data at rest in Azure storage used by AI workloads
B.Protecting personal data from AI systems and securing AI against adversarial attacks and misuse
C.Using AI to enhance cybersecurity by detecting network intrusions
D.Ensuring employees don't share AI model weights externally without authorisation
AnswerB

Privacy = data minimisation, consent, anonymisation. Security = model protection from attacks. Both are foundational Responsible AI requirements.

Why this answer

Microsoft's Responsible AI principle of 'privacy and security' focuses on protecting individuals' personal data from being exposed or misused by AI systems, and ensuring AI models and infrastructure are resilient against adversarial attacks, data poisoning, and other security threats. Option B correctly captures this dual focus on data protection and system security, which is distinct from general Azure encryption or cybersecurity use cases.

Exam trap

The trap here is that candidates confuse general Azure security features (like encryption) or AI-for-security use cases with the specific Responsible AI principle of 'privacy and security,' which is about protecting data and models from harm, not just securing infrastructure or using AI defensively.

How to eliminate wrong answers

Option A is wrong because encrypting data at rest is a standard Azure security practice, not a specific Responsible AI principle; privacy and security in AI goes beyond encryption to include data minimization, access controls, and adversarial robustness. Option C is wrong because using AI to detect network intrusions is an application of AI for cybersecurity, not a principle governing the ethical and secure development of AI itself. Option D is wrong because preventing unauthorized sharing of model weights is a specific operational security measure, not the broad principle of AI privacy and security, which encompasses data protection and system resilience against attacks.

176
MCQmedium

What is 'Azure Cognitive Services' and how does it relate to Azure AI Services?

A.A set of tools for cognitive psychology research at Microsoft Research
B.Microsoft's family of pre-built AI APIs (now rebranded as Azure AI Services) for vision, speech, and language
C.Services that simulate human cognitive functions like memory and problem-solving in robots
D.A premium Azure support tier that provides AI specialists to help with complex deployments
AnswerB

Cognitive Services = Azure AI Services — the same pre-built AI APIs for computer vision, speech, NLP, and decision making.

Why this answer

Azure Cognitive Services is the original name for Microsoft's family of pre-built AI APIs that provide capabilities in vision, speech, language, and decision-making. These APIs have been rebranded as Azure AI Services, making option B correct because it accurately describes the service as pre-built AI APIs for vision, speech, and language, and correctly notes the rebranding.

Exam trap

The trap here is that candidates may confuse Azure Cognitive Services with a general AI research tool or a support tier, rather than recognizing it as a set of pre-built, ready-to-use APIs for common AI tasks.

How to eliminate wrong answers

Option A is wrong because Azure Cognitive Services is not a set of tools for cognitive psychology research at Microsoft Research; it is a commercial cloud service for building AI applications. Option C is wrong because Azure Cognitive Services does not simulate human cognitive functions like memory and problem-solving in robots; it provides pre-built APIs for specific tasks like image recognition and text translation, not general cognitive simulation. Option D is wrong because Azure Cognitive Services is not a premium Azure support tier; it is a collection of AI APIs, and there is no such support tier named 'Cognitive Services'.

177
MCQmedium

A hospital uses an AI system to prioritize emergency room patients based on severity. The system was trained on historical data that may contain biases against certain demographic groups. The hospital wants to ensure the system does not disproportionately disadvantage any group. According to Microsoft's responsible AI principles, which practice should the hospital implement during the design phase?

A.Remove all demographic features from the training data to achieve fairness through unawareness
B.Conduct an impact assessment and involve diverse stakeholders during design
C.Use a complex, uninterpretable model to avoid scrutiny of predictions
D.Deploy the system and rely on post-deployment monitoring to catch unfair outcomes
AnswerB

Correct. Engaging diverse perspectives and performing an impact assessment helps identify potential biases early and align the system with the fairness principle.

Why this answer

Option B is correct because Microsoft's responsible AI principles emphasize the importance of conducting impact assessments and involving diverse stakeholders during the design phase to identify and mitigate potential biases before deployment. This proactive approach aligns with the fairness principle, ensuring that the AI system does not disproportionately disadvantage any demographic group. Simply removing features or relying on post-deployment monitoring is insufficient to address systemic biases embedded in historical data.

Exam trap

The trap here is that candidates often assume fairness is achieved by simply removing sensitive attributes (Option A), not realizing that bias can persist through proxy features and that proactive stakeholder involvement is required by Microsoft's responsible AI framework.

How to eliminate wrong answers

Option A is wrong because removing all demographic features (fairness through unawareness) does not eliminate bias; proxy features like zip code or socioeconomic indicators can still encode demographic disparities, and the model may learn biased correlations from the remaining features. Option C is wrong because using a complex, uninterpretable model violates the transparency and accountability principles of responsible AI, making it impossible to audit decisions or detect unfair outcomes. Option D is wrong because relying solely on post-deployment monitoring is reactive and may allow harm to occur before biases are caught; the design phase is the critical time to proactively assess and mitigate risks.

178
MCQmedium

A self-driving car company tests its AI navigation system in a new city. The system fails to detect a temporary construction barrier and causes a collision. The company wants to ensure that their AI system is robust to unexpected and unusual environmental conditions. Which Microsoft responsible AI principle is most directly relevant to this requirement?

A.Fairness
B.Privacy and security
C.Reliability and safety
D.Transparency
AnswerC

This principle requires AI systems to perform as intended, avoid harm, and be resilient to unexpected conditions or inputs.

Why this answer

The requirement is to ensure the AI system is robust to unexpected and unusual environmental conditions, which directly falls under the responsible AI principle of Reliability and safety. This principle focuses on building systems that operate consistently and safely under a wide range of conditions, including edge cases like temporary construction barriers, and that fail gracefully when they cannot perform as expected.

Exam trap

Microsoft often tests the distinction between Transparency (explainability) and Reliability/safety (robustness), where candidates mistakenly choose Transparency because they think explaining failures is the same as preventing them.

How to eliminate wrong answers

Option A is wrong because Fairness addresses bias and equitable treatment across different groups, not the system's ability to handle unusual environmental conditions. Option B is wrong because Privacy and security concerns protecting data from unauthorized access or breaches, not the operational robustness of the AI model in novel scenarios. Option D is wrong because Transparency involves explainability and clear communication about how and why the AI makes decisions, but it does not directly ensure the system can handle unexpected physical conditions safely.

179
MCQeasy

What is 'image recognition for accessibility' and how does Microsoft's Seeing AI app use it?

A.A feature that makes AI models accessible to users without programming expertise
B.An app using Azure AI Vision to describe scenes, read text, and identify objects aloud for blind users
C.Accessibility compliance checking software that validates AI applications meet WCAG standards
D.Screen reader software that makes Azure portal accessible to keyboard-only users
AnswerB

Seeing AI applies computer vision APIs — scene description, OCR, face recognition — as accessibility tools for visual impairment.

Why this answer

Option B is correct because Microsoft's Seeing AI app leverages Azure AI Vision (specifically the Computer Vision API) to perform real-time image recognition for accessibility. It describes scenes, reads text via optical character recognition (OCR), and identifies objects aloud, enabling blind or low-vision users to understand their surroundings through audio feedback.

Exam trap

The trap here is that candidates confuse 'accessibility' in the context of AI (making AI usable for people with disabilities) with 'accessibility' of AI tools themselves (e.g., no-code platforms), leading them to pick Option A.

How to eliminate wrong answers

Option A is wrong because 'image recognition for accessibility' refers to AI analyzing visual data to assist users with disabilities, not making AI models accessible to non-programmers (that would be 'AI democratization' or 'low-code AI'). Option C is wrong because it describes accessibility compliance checking (e.g., WCAG validation), which is a separate process unrelated to image recognition or Seeing AI's functionality. Option D is wrong because screen reader software for the Azure portal (like Narrator or JAWS) is a general accessibility tool, not an image recognition app that uses Azure AI Vision to interpret visual content.

180
MCQeasy

A bank is developing an AI system to automatically approve or reject small personal loans. To ensure the system treats applicants fairly regardless of race, gender, or age, which Microsoft responsible AI principle is most directly relevant?

A.Inclusiveness
B.Fairness
C.Reliability and safety
D.Transparency
AnswerB

Fairness directly addresses avoiding bias and ensuring equitable treatment across demographic groups, which is critical for loan approval decisions.

Why this answer

The Fairness principle is directly relevant because it requires AI systems to treat all individuals equitably, avoiding discrimination based on protected attributes like race, gender, or age. In this loan approval scenario, the system must be designed and tested to ensure its decisions do not systematically disadvantage any group, which is the core goal of fairness in AI.

Exam trap

Microsoft often tests the distinction between Fairness and Inclusiveness, where candidates mistakenly choose Inclusiveness because they think it covers all aspects of ethical AI, but Fairness is the specific principle for preventing discrimination in automated decisions.

How to eliminate wrong answers

Option A is wrong because Inclusiveness focuses on designing AI systems that empower and engage a diverse range of users, not specifically on preventing discriminatory outcomes in automated decisions. Option C is wrong because Reliability and safety concerns the system's ability to function correctly and safely under expected conditions, not the equitable treatment of applicants. Option D is wrong because Transparency is about making the system's behavior and decisions understandable to users and stakeholders, which supports fairness but does not directly enforce non-discriminatory outcomes.

181
MCQmedium

What is 'AI in education' and how are Azure AI services applied to learning?

A.Using AI to replace teachers in classrooms with fully automated instruction
B.Personalised learning, pronunciation assessment, automated grading, tutoring chatbots, and accessibility tools
C.Generating educational certificates automatically when students complete online courses
D.Using AI to monitor student attention levels during online classes via webcam
AnswerB

Education AI spans personalisation, speech feedback, automated assessment, and accessibility — improving outcomes and inclusion.

Why this answer

Option B is correct because it accurately describes the application of Azure AI services to education, including personalized learning via Azure Machine Learning, pronunciation assessment with Azure Speech Services, automated grading using Azure Cognitive Services, tutoring chatbots built with Azure Bot Service, and accessibility tools leveraging Azure Cognitive Services like Computer Vision and Text-to-Speech. These services enhance learning without replacing human educators.

Exam trap

The trap here is that candidates may confuse simple automation (like certificate generation) with AI workloads, or overestimate AI's capability to replace human roles, while the exam emphasizes augmentation and ethical use of AI in education.

How to eliminate wrong answers

Option A is wrong because it misrepresents AI's role in education as replacing teachers entirely, whereas Azure AI services augment teaching by automating repetitive tasks and providing insights, not replacing human instruction. Option C is wrong because generating certificates automatically is a trivial automation task (e.g., using Azure Logic Apps or Power Automate) and does not represent a core AI workload in education; it lacks the cognitive services that define AI. Option D is wrong because monitoring student attention via webcam raises privacy and ethical concerns, and Azure AI services focus on enhancing learning outcomes through tools like personalized recommendations and assessments, not surveillance.

182
MCQmedium

Which of the following is a consideration for responsible AI regarding fairness?

A.AI systems should run as fast as possible regardless of accuracy
B.AI systems should not perpetuate or amplify societal biases against specific groups
C.AI systems should be available 24/7 without any downtime
D.AI systems should always produce the same output for the same input
AnswerB

Fair AI doesn't discriminate based on protected characteristics and doesn't amplify historical biases present in training data.

Why this answer

Fairness in responsible AI means that AI systems should be designed and tested to avoid perpetuating or amplifying societal biases against specific groups. This involves careful data selection, bias detection, and mitigation techniques to ensure equitable outcomes across different demographics.

Exam trap

The trap here is that candidates confuse fairness with other responsible AI principles like reliability (uptime) or consistency (determinism), leading them to pick options that sound reasonable but are not specifically about fairness.

How to eliminate wrong answers

Option A is wrong because prioritizing speed over accuracy can lead to unreliable or harmful AI outputs, and responsible AI emphasizes reliability and safety, not just performance. Option C is wrong because 24/7 availability relates to system reliability and uptime, not fairness, which is a separate ethical consideration. Option D is wrong because consistent output for the same input is about determinism or reproducibility, not fairness; a system can be deterministic yet still biased against certain groups.

183
MCQmedium

What is 'Azure AI Foundry' and how does it relate to building enterprise AI applications?

A.A physical manufacturing facility that produces Azure AI hardware accelerators
B.Microsoft's enterprise platform for the full AI development lifecycle — models, evaluation, deployment, and governance
C.A certification programme for Azure AI engineers who build production AI systems
D.An open-source framework for building AI pipelines outside of Azure
AnswerB

Azure AI Foundry unifies model access, development tools, safety evaluation, and governance for enterprise generative AI development.

Why this answer

Azure AI Foundry is Microsoft's unified enterprise platform that supports the entire AI development lifecycle, from model selection and fine-tuning to evaluation, deployment, and governance. It integrates Azure AI services, model catalog, prompt flow, and responsible AI tools, enabling teams to build, manage, and monitor production AI applications at scale. This makes it the correct answer for how Azure AI Foundry relates to building enterprise AI applications.

Exam trap

The trap here is that candidates confuse 'Azure AI Foundry' with a hardware facility or a certification, because the word 'Foundry' suggests manufacturing, but in Azure it refers to a software platform for the AI lifecycle.

How to eliminate wrong answers

Option A is wrong because Azure AI Foundry is not a physical manufacturing facility; it is a cloud-based platform, and Azure AI hardware accelerators (like NPUs) are produced by hardware partners, not in a Microsoft facility called 'Foundry'. Option C is wrong because Azure AI Foundry is a platform, not a certification programme; the relevant certification for AI engineers is the AI-102 or AI-900 exam itself. Option D is wrong because Azure AI Foundry is a proprietary Microsoft platform tightly integrated with Azure, not an open-source framework, and it does not operate outside of Azure.

184
MCQeasy

What is the difference between narrow AI and general AI?

A.Narrow AI is more powerful than general AI
B.Narrow AI excels at one specific task; general AI would have human-like intelligence across all domains
C.Narrow AI runs on-premises; general AI runs in the cloud
D.Narrow AI is for businesses; general AI is for consumers
AnswerB

Narrow AI = specific task (chess, vision, language); General AI (AGI) = human-level intelligence across all tasks (not yet achieved).

Why this answer

Option B is correct because narrow AI (also called weak AI) is designed and trained to perform a single specific task, such as image recognition or language translation, while general AI (strong AI) would possess the ability to understand, learn, and apply intelligence across a wide range of tasks at a human-like level. General AI remains a theoretical concept and has not been achieved, whereas narrow AI powers virtually all current AI systems, including those on Azure like Computer Vision and Language Understanding (LUIS).

Exam trap

The trap here is that candidates often confuse 'narrow' with 'less capable' and choose Option A, not realizing that narrow AI is actually highly effective within its domain but fundamentally limited in scope compared to the hypothetical general AI.

How to eliminate wrong answers

Option A is wrong because narrow AI is not more powerful than general AI; in fact, general AI would be far more capable if realized, but narrow AI is limited to its specific domain. Option C is wrong because the distinction between on-premises and cloud deployment is unrelated to the AI type; both narrow and general AI can run on-premises or in the cloud depending on the implementation. Option D is wrong because both narrow and general AI can be used by businesses and consumers; the classification is based on capability scope, not target user.

185
MCQhard

What is 'model cards' in responsible AI and what information do they contain?

A.Azure billing documents showing the monthly cost of running a model in production
B.Transparency documents describing a model's intended use, training data, performance, biases, and limitations
C.Technical specification sheets for AI hardware accelerators used in model training
D.Playing cards used in gamification of AI training to motivate data labellers
AnswerB

Model cards enable informed deployment decisions — documenting who the model works for, where it fails, and what biases to expect.

Why this answer

Model cards are transparency documents that accompany machine learning models to disclose their intended use, training data, performance metrics, known biases, and limitations. They are a key responsible AI practice, mandated by frameworks like Microsoft's Responsible AI Standard, to ensure stakeholders understand a model's capabilities and risks before deployment.

Exam trap

The trap here is that candidates confuse operational documents (billing, hardware specs) with the transparency and accountability documentation required by responsible AI principles, leading them to select plausible-sounding but incorrect options like A or C.

How to eliminate wrong answers

Option A is wrong because model cards are not billing documents; Azure billing documents track resource consumption and costs, not model transparency. Option C is wrong because model cards describe the model itself, not hardware accelerators like GPUs or TPUs used during training. Option D is wrong because model cards are formal documentation, not gamification tools; playing cards are unrelated to responsible AI documentation.

186
MCQmedium

What is 'sentiment analysis' used for in business applications?

A.Detecting whether a customer is experiencing technical problems with a product
B.Automatically classifying customer text as positive, negative, or neutral to monitor brand and product perception
C.Predicting whether a customer will make a repeat purchase based on their browsing history
D.Determining the financial sentiment of stock market news articles for trading decisions
AnswerB

Sentiment analysis scales manual opinion reading — powering review analysis, social listening, and customer satisfaction monitoring.

Why this answer

Sentiment analysis is an AI workload that uses natural language processing (NLP) to automatically determine the emotional tone behind a body of text. In business applications, it is commonly used to classify customer feedback, reviews, or social media mentions as positive, negative, or neutral, enabling organizations to monitor brand and product perception at scale.

Exam trap

The trap here is that candidates confuse sentiment analysis with other NLP tasks like intent recognition or predictive analytics, leading them to pick options that describe classification of specific issues or forecasting behavior rather than emotional tone detection.

How to eliminate wrong answers

Option A is wrong because detecting technical problems is a form of issue classification or intent recognition, not sentiment analysis, which focuses on emotional tone rather than specific problem categories. Option C is wrong because predicting repeat purchases based on browsing history is a predictive analytics or recommendation system task, often using regression or collaborative filtering, not sentiment analysis. Option D is wrong because while it involves sentiment, it is a narrow financial application; sentiment analysis in business is broader and typically used for general customer feedback, not exclusively for stock market trading decisions.

187
MCQeasy

What is 'fraud detection' as an AI workload and what type of ML technique does it typically use?

A.Generating synthetic fraudulent data to train security awareness training content
B.Using anomaly detection and classification models to identify fraudulent transactions in real time
C.Verifying digital signatures on financial documents to confirm their authenticity
D.Encrypting financial data to prevent fraudsters from intercepting it
AnswerB

Fraud detection combines anomaly detection (unusual patterns) with classification (fraud vs. legitimate) — operating in real time on transactions.

Why this answer

Fraud detection is an AI workload that identifies suspicious or anomalous patterns in transaction data to flag potential fraud. It typically uses anomaly detection (to spot outliers deviating from normal behavior) and classification models (e.g., logistic regression, random forest, or neural networks) to label transactions as legitimate or fraudulent in real time, enabling rapid intervention.

Exam trap

The trap here is that candidates confuse data security techniques (encryption, digital signatures) or data preparation steps (synthetic data generation) with the core AI workload of detecting fraud through anomaly detection and classification.

How to eliminate wrong answers

Option A is wrong because generating synthetic fraudulent data is a data augmentation technique, not a fraud detection workload; it may be used to train models but does not itself detect fraud. Option C is wrong because verifying digital signatures is a cryptographic authentication process, not an AI workload; it relies on public-key infrastructure (PKI) and hashing, not machine learning. Option D is wrong because encrypting financial data is a data protection mechanism (using algorithms like AES-256), not an AI workload; it prevents interception but does not analyze or detect fraudulent activity.

188
MCQeasy

A company develops an AI system to recommend personalized news articles to users. The system uses collaborative filtering, suggesting articles that similar users have read. Which type of machine learning does this approach primarily rely on?

A.Supervised learning
B.Unsupervised learning
C.Reinforcement learning
D.Semi-supervised learning
AnswerB

Correct. Collaborative filtering clusters users based on behavior patterns without predefined labels, making it a form of unsupervised learning.

Why this answer

Collaborative filtering identifies patterns in user-item interactions without labeled outcomes, grouping users or items based on similarity. This is a classic unsupervised learning task because the system discovers hidden structures (e.g., user clusters) from unlabeled data, rather than being trained on explicit input-output pairs.

Exam trap

Microsoft often tests the misconception that any recommendation system must be supervised because it 'predicts' what a user will like, but the key distinction is that collaborative filtering learns from unlabeled interaction patterns, not from labeled training examples.

How to eliminate wrong answers

Option A is wrong because supervised learning requires labeled training data with known target outputs, whereas collaborative filtering uses only user-item interaction data without explicit labels. Option C is wrong because reinforcement learning involves an agent learning through trial-and-error interactions with an environment to maximize cumulative reward, not by finding patterns in static user-item data. Option D is wrong because semi-supervised learning uses a small amount of labeled data alongside a larger unlabeled dataset, while collaborative filtering typically relies entirely on unlabeled interaction data.

189
MCQeasy

Which responsible AI principle focuses on protecting personal information and ensuring AI systems handle data with appropriate privacy safeguards?

A.Fairness
B.Privacy and security
C.Inclusiveness
D.Accountability
AnswerB

Privacy and security in responsible AI protects personal data, respects individual privacy rights, and safeguards AI systems from misuse.

Why this answer

Privacy and security is the correct responsible AI principle because it directly addresses the protection of personal data and the implementation of safeguards such as encryption, access controls, and data minimization. In AI systems, this principle ensures that sensitive information (e.g., PII) is handled in compliance with regulations like GDPR and that models do not inadvertently leak training data through inference attacks.

Exam trap

The trap here is that candidates often confuse 'privacy and security' with 'accountability' because both involve governance, but privacy specifically concerns data protection mechanisms, not just who is responsible for the system.

How to eliminate wrong answers

Option A (Fairness) is wrong because it focuses on mitigating bias and ensuring equitable outcomes across demographic groups, not on data protection or privacy safeguards. Option C (Inclusiveness) is wrong because it aims to design AI systems that empower and engage diverse users, including those with disabilities, rather than securing personal information. Option D (Accountability) is wrong because it deals with establishing governance, audit trails, and ownership for AI decisions, not with the technical handling or protection of data privacy.

190
MCQeasy

What does it mean for an AI system to be 'inclusive' according to Microsoft's responsible AI principles?

A.AI systems should include as many features as possible regardless of user needs
B.AI systems should empower all people including those with disabilities and from diverse backgrounds
C.AI data should include examples from every country in the world
D.All employees should be included in AI model training decisions
AnswerB

Inclusiveness ensures AI is accessible and beneficial to everyone — supporting diverse abilities, languages, and cultural contexts.

Why this answer

Option B is correct because Microsoft's responsible AI principle of inclusiveness requires that AI systems are designed to empower everyone, including people with disabilities and those from diverse cultural, linguistic, and socioeconomic backgrounds. This means the system should account for accessibility needs (e.g., screen readers, voice input) and avoid biases that could exclude or disadvantage any group.

Exam trap

The trap here is that candidates often confuse 'inclusiveness' with 'comprehensiveness' (more data or features), when in fact it is about equitable access and fair treatment for all user groups, especially marginalized ones.

How to eliminate wrong answers

Option A is wrong because inclusiveness is not about adding as many features as possible; it is about ensuring the system is usable and beneficial for all intended users, which often requires careful feature selection and simplification. Option C is wrong because inclusiveness does not mandate that training data must include examples from every country; it focuses on fair representation of relevant groups to avoid bias, not global coverage. Option D is wrong because inclusiveness does not require all employees to be involved in model training decisions; it is about the system's impact on end users, not internal governance processes.

191
MCQeasy

A company plans to use an AI system to analyze employee email communications to identify patterns and improve productivity. The company is concerned about respecting employee boundaries and legal regulations. Which Microsoft responsible AI principle is most important to consider?

A.Fairness – ensuring the system treats all employees equally.
B.Reliability and safety – ensuring the system functions correctly.
C.Privacy and security – protecting employees' personal data and email content.
D.Inclusiveness – ensuring the system works for all employees regardless of communication style.
AnswerC

Email analysis involves sensitive personal data; privacy and security must be ensured to comply with regulations and maintain trust.

Why this answer

The scenario involves analyzing employee email communications, which inherently includes sensitive personal data and private correspondence. Microsoft's 'Privacy and security' principle is the most relevant because it mandates that AI systems protect individuals' data and respect boundaries, ensuring compliance with regulations like GDPR and internal privacy policies. Without strong privacy and security safeguards, analyzing email content could violate employee trust and legal requirements, regardless of how fair, reliable, or inclusive the system is.

Exam trap

The trap here is that candidates may confuse 'fairness' (Option A) as the primary concern because it sounds ethical, but the question specifically highlights 'respecting employee boundaries and legal regulations,' which directly maps to privacy and security, not bias mitigation.

How to eliminate wrong answers

Option A is wrong because fairness focuses on avoiding bias and ensuring equitable treatment across groups, but it does not directly address the core concern of respecting employee boundaries and legal regulations around data protection in email analysis. Option B is wrong because reliability and safety ensure the system functions correctly and without errors, but they do not specifically cover the privacy and legal compliance needed when handling sensitive email content. Option D is wrong because inclusiveness ensures the system works for diverse communication styles and user groups, but it does not address the primary issue of protecting personal data and adhering to privacy laws.

192
MCQeasy

A company deploys an AI system to screen job applications and recommend candidates for interviews. The system consistently rates male candidates higher than equally qualified female candidates. Which Microsoft responsible AI principle is most directly violated?

A.Fairness
B.Reliability and safety
C.Privacy and security
D.Inclusiveness
AnswerA

Fairness is violated because the AI system is discriminating based on gender by systematically favoring male candidates over equally qualified female candidates.

Why this answer

The AI system's consistent rating of male candidates higher than equally qualified female candidates demonstrates a clear bias in outcomes based on gender, which directly violates the Fairness principle. Fairness in responsible AI requires that AI systems treat all people equitably, avoiding discrimination based on sensitive attributes such as gender, race, or age. This bias likely stems from biased training data or flawed feature engineering that encodes historical hiring disparities.

Exam trap

The trap here is that candidates may confuse 'Inclusiveness' (which focuses on designing for all users, including those with disabilities) with 'Fairness' (which specifically addresses bias and equitable outcomes), leading them to select D instead of A.

How to eliminate wrong answers

Option B (Reliability and safety) is wrong because the issue is not about the system failing to function correctly or causing physical harm; it is about biased decision-making, not operational reliability. Option C (Privacy and security) is wrong because the problem does not involve unauthorized access to data, data breaches, or improper handling of personal information. Option D (Inclusiveness) is wrong because while inclusiveness relates to designing for diverse user groups, the core violation here is the unfair treatment of equally qualified candidates, which is a direct fairness issue, not a lack of accessibility or representation in design.

193
MCQmedium

A multinational corporation deploys an AI-powered language translation system that performs well for English, Spanish, and French, but has significantly lower accuracy for Swahili and Navajo. The company wants to ensure the system serves all users equitably. Which Microsoft responsible AI principle is most directly relevant to this scenario?

A.Inclusiveness
B.Fairness
C.Reliability and safety
D.Transparency
AnswerA

Inclusiveness requires AI systems to be designed to empower everyone, including speakers of less common languages, by ensuring fair performance across diverse groups.

Why this answer

The correct answer is A. Inclusiveness. This principle directly addresses designing AI systems that work well for all users, including those with diverse languages, abilities, and cultural backgrounds.

The scenario highlights a performance disparity for Swahili and Navajo, which are underrepresented in the training data, making inclusiveness the most relevant principle to ensure equitable service.

Exam trap

The trap here is that candidates often confuse 'Fairness' (which deals with bias against protected groups) with 'Inclusiveness' (which focuses on designing for all users, including those with limited data or accessibility needs), leading them to pick B instead of A.

How to eliminate wrong answers

Option B (Fairness) is wrong because while fairness is related, it focuses on avoiding bias in outcomes (e.g., demographic parity), not specifically on ensuring the system serves underrepresented language groups through inclusive design. Option C (Reliability and safety) is wrong because the issue is not about system crashes, errors, or safety risks, but about accuracy gaps due to data imbalance. Option D (Transparency) is wrong because the core problem is not about explaining how the translation works, but about actively including languages that are currently underserved.

194
MCQmedium

What is 'AI at the edge' and why would you deploy an AI model to an edge device?

A.Using AI to analyse data collected near the geographic borders of a country
B.Running AI inference locally on devices for low latency, offline capability, and data privacy
C.Using AI to detect adversarial attacks at the network perimeter
D.Deploying AI to the most remote Azure region for disaster recovery
AnswerB

Edge AI processes data where it's generated — avoiding cloud round-trips for speed, enabling offline use, and keeping sensitive data local.

Why this answer

B is correct because 'AI at the edge' refers to running AI inference locally on edge devices (e.g., IoT sensors, cameras, or local servers) rather than in the cloud. This approach provides low latency by processing data immediately without network round-trips, enables offline capability when connectivity is intermittent, and enhances data privacy by keeping sensitive data on the device. It is a core AI workload consideration for scenarios like real-time video analytics or industrial predictive maintenance.

Exam trap

The trap here is that candidates confuse 'edge' with geographic or network security boundaries, rather than understanding it as the local deployment of AI on devices at the network periphery for latency, offline, and privacy benefits.

How to eliminate wrong answers

Option A is wrong because it misinterprets 'edge' as a geographic border rather than the network edge (local devices near data sources). Option C is wrong because it confuses 'edge' with network security perimeters; adversarial attack detection at the network perimeter is a cybersecurity function, not an AI workload deployment concept. Option D is wrong because deploying AI to a remote Azure region is still cloud-based, not edge computing; edge devices operate locally, independent of specific cloud regions, and disaster recovery is a separate consideration.

195
MCQmedium

A city government implements an AI system to analyze traffic camera feeds and predict congestion. The system is found to be less accurate for neighborhoods with lower-income populations because historical traffic data from those areas is sparse. Which Microsoft responsible AI principle is most directly relevant to address this issue?

A.Transparency
B.Accountability
C.Fairness
D.Privacy and security
AnswerC

Fairness ensures AI systems do not discriminate or produce biased outcomes, directly addressing the accuracy imbalance in different neighborhoods.

Why this answer

The system's reduced accuracy for lower-income neighborhoods due to sparse historical data is a direct fairness issue. Fairness in AI requires that systems perform equitably across different demographic groups, and this scenario describes a clear disparity in model performance based on socioeconomic factors. Addressing this would involve techniques like data augmentation, reweighting, or collecting more representative data to mitigate bias.

Exam trap

The trap here is that candidates may confuse fairness with transparency, assuming that explaining why the model is inaccurate solves the underlying performance disparity, when in fact fairness requires actively correcting the imbalance.

How to eliminate wrong answers

Option A is wrong because Transparency refers to making AI systems understandable and their decisions explainable, but the core problem here is unequal performance, not a lack of explanation. Option B is wrong because Accountability concerns who is responsible for the system's outcomes, not the technical bias caused by data sparsity. Option D is wrong because Privacy and security focus on protecting personal data and preventing unauthorized access, whereas the issue is about data representativeness and model fairness, not data breaches or confidentiality.

196
MCQeasy

Which of the following is an example of 'anomaly detection' as an AI workload?

A.Translating customer support emails from Spanish to English
B.Automatically identifying fraudulent credit card transactions that deviate from a customer's normal patterns
C.Generating product descriptions from a list of specifications
D.Classifying customer reviews as positive or negative
AnswerB

Fraud detection is anomaly detection — identifying transactions that statistically deviate from established normal behaviour patterns.

Why this answer

Anomaly detection identifies data points that deviate significantly from the norm. In this case, fraudulent credit card transactions are detected because they do not match the customer's typical spending patterns, which is a classic use case for anomaly detection in AI workloads.

Exam trap

The trap here is that candidates may confuse anomaly detection with classification (Option D) because both involve identifying unusual items, but classification requires labeled training data for known categories, whereas anomaly detection focuses on deviations from a learned norm without predefined labels for anomalies.

How to eliminate wrong answers

Option A is wrong because translating emails from Spanish to English is a natural language processing (NLP) task for machine translation, not anomaly detection. Option C is wrong because generating product descriptions from specifications is a generative AI or natural language generation task, not anomaly detection. Option D is wrong because classifying customer reviews as positive or negative is a text classification or sentiment analysis task, which falls under supervised learning, not anomaly detection.

197
MCQeasy

A bank deploys an AI system to automatically approve or reject loan applications. After six months, an audit reveals that the system approves loans at a significantly lower rate for applicants from a specific ethnic group compared to other groups with similar financial profiles. Which Microsoft responsible AI principle is most directly violated by this outcome?

A.Transparency
B.Fairness
C.Privacy
D.Reliability
AnswerB

Fairness requires that AI systems treat all people fairly and do not discriminate based on sensitive attributes like ethnicity. The significantly lower approval rate for one ethnic group despite similar financial profiles is a direct violation of Fairness.

Why this answer

The AI system's approval rate disparity for a specific ethnic group, despite similar financial profiles, directly violates the Fairness principle. Fairness requires that AI systems treat all groups equitably and avoid discrimination based on sensitive attributes like ethnicity. This outcome demonstrates a lack of fairness in the model's decision-making process.

Exam trap

The trap here is that candidates may confuse the discriminatory outcome (a Fairness issue) with a lack of Transparency, thinking that if the system were more explainable the bias would be avoided, but the core violation is the unequal treatment itself.

How to eliminate wrong answers

Option A is wrong because Transparency refers to the ability to understand and interpret how an AI system makes decisions, not the discriminatory outcome itself. Option C is wrong because Privacy concerns the protection of personal data and control over its use, not the unequal treatment of groups. Option D is wrong because Reliability focuses on the system's ability to perform consistently and correctly under expected conditions, not on the equitable distribution of outcomes across demographic groups.

198
MCQmedium

A hospital deploys an AI system to assist doctors in interpreting MRI scans. The system highlights the regions of interest and provides a numeric confidence score for its findings, along with a list of the image features that contributed to the diagnosis. Which responsible AI principle is being applied?

A.Fairness
B.Transparency
C.Privacy
D.Accountability
AnswerB

Correct because transparency is achieved when the AI system provides understandable explanations for its outputs, enabling users to see what features influenced the result.

Why this answer

The system provides a numeric confidence score and a list of image features that contributed to the diagnosis, which directly supports the principle of Transparency. Transparency in responsible AI requires that AI systems are understandable and that their decisions can be explained to users, enabling clinicians to interpret and trust the output.

Exam trap

The trap here is that candidates confuse Transparency with Accountability, thinking that providing a confidence score implies responsibility, but Transparency is specifically about making the model's reasoning visible and interpretable to users.

How to eliminate wrong answers

Option A is wrong because Fairness focuses on ensuring AI systems do not exhibit bias or discriminate against groups, which is not addressed by providing confidence scores or feature lists. Option C is wrong because Privacy concerns the protection of personal data and compliance with regulations like GDPR or HIPAA, whereas the scenario describes explainability features, not data handling. Option D is wrong because Accountability refers to establishing governance and responsibility for AI outcomes, such as audit trails or human oversight, not the technical explanation of a single inference.

199
MCQmedium

A financial services company uses an AI system to detect fraudulent credit card transactions. After deployment, the system incorrectly flags a significant number of legitimate transactions as fraudulent, causing customer dissatisfaction. The company wants to reduce these false positives while still catching most fraudulent transactions. Which Microsoft responsible AI principle should guide their redesign of the system?

A.Reliability and safety
B.Fairness
C.Transparency
D.Privacy and security
AnswerA

Correct. The company needs to ensure the system performs reliably by balancing false positives and false negatives, which is a core aspect of the Reliability and safety principle.

Why this answer

Option A is correct because the Reliability and safety principle emphasizes that AI systems should perform reliably, safely, and consistently under normal conditions. In this scenario, the high rate of false positives indicates the system is not operating reliably for legitimate transactions, causing customer harm. Redesigning to reduce false positives while maintaining fraud detection aligns directly with improving the system's reliability and safety for end users.

Exam trap

The trap here is that candidates confuse 'false positives causing customer dissatisfaction' with a fairness or transparency issue, when in fact it is a reliability and safety problem about the system's accuracy and trustworthiness in production.

How to eliminate wrong answers

Option B (Fairness) is wrong because the issue is not about bias or discrimination against protected groups—false positives affect all legitimate customers equally, not a specific demographic. Option C (Transparency) is wrong because the problem is not about explaining how decisions are made; customers are dissatisfied due to incorrect flags, not a lack of explanation. Option D (Privacy and security) is wrong because the system is not leaking or mishandling personal data; the core issue is classification accuracy, not data protection.

← PreviousPage 3 of 3 · 199 questions total

Ready to test yourself?

Try a timed practice session using only Describe Artificial Intelligence workloads and considerations questions.