Courseiva

CCNA AI Security, Ethics and Governance Questions

75 of 78 questions · Page 1/2 · AI Security, Ethics and Governance · Answers revealed

1
MCQeasy

A healthcare organization uses an AI model to recommend treatment plans. The model was trained on data from a single hospital, and now treats patients from multiple demographics. Which ethical concern is most critical?

A.Accountability for treatment outcomes
B.Lack of transparency in model decisions
C.Privacy violations in training data
D.Fairness and bias in predictions
AnswerD

The model trained on a single hospital's data may not generalize, leading to unfair treatment recommendations for other demographics.

Why this answer

The model was trained on data from a single hospital, which likely has a homogeneous demographic profile. When deployed across multiple demographics, the model may produce biased or unfair predictions for underrepresented groups, making fairness and bias the most critical ethical concern. This directly violates the principle of distributive justice in AI ethics.

Exam trap

The AI0-001 exam often tests the distinction between general ethical principles (like accountability or transparency) and the specific, root-cause ethical violation triggered by the scenario, which here is fairness and bias due to demographic mismatch in training data.

How to eliminate wrong answers

Option A is wrong because accountability for treatment outcomes is a general ethical concern but not the most critical here; the primary issue is that the model's training data lacks demographic diversity, which leads to biased predictions before accountability can even be assessed. Option B is wrong because lack of transparency (black-box nature) is a separate concern; while it can exacerbate bias, the core problem is that the model's training data does not represent the target population, not that the model's decisions are opaque. Option C is wrong because privacy violations in training data are a valid concern but not directly triggered by the scenario; the scenario describes using data from a single hospital, which does not inherently imply privacy breaches, whereas the demographic shift introduces bias.

2
MCQeasy

An organization deploys an AI system that processes personal data of EU citizens. Which regulatory framework imposes strict requirements on automated decision-making and profiling?

A.Payment Card Industry Data Security Standard (PCI DSS)
B.General Data Protection Regulation (GDPR)
C.Health Insurance Portability and Accountability Act (HIPAA)
D.Sarbanes-Oxley Act (SOX)
AnswerB

GDPR specifically addresses automated individual decision-making and profiling.

Why this answer

The General Data Protection Regulation (GDPR) is the correct regulatory framework because it specifically governs the processing of personal data of EU citizens and imposes strict requirements on automated decision-making and profiling under Article 22. This article grants individuals the right not to be subject to a decision based solely on automated processing, including profiling, which produces legal effects or similarly significant effects. The GDPR also mandates data protection impact assessments and transparency obligations for such AI-driven processing.

Exam trap

The AI0-001 exam often tests candidates' ability to distinguish between data privacy regulations (GDPR) and industry-specific security standards (PCI DSS, HIPAA, SOX), trapping those who confuse data security with data protection governance for AI systems.

How to eliminate wrong answers

Option A is wrong because PCI DSS is a security standard for protecting payment card data, not a framework for regulating automated decision-making or profiling of EU citizens' personal data. Option C is wrong because HIPAA applies to protected health information in the United States and does not address automated decision-making or profiling under EU law. Option D is wrong because SOX is a US federal law focused on financial reporting and corporate governance, with no provisions for personal data processing or AI-driven profiling.

3
MCQhard

A financial institution uses an AI model to approve loans. The model uses features including credit score and ZIP code. During an audit, it is discovered that the model has a high false positive rate for loan default predictions in certain ZIP codes. What should the institution do to address this?

A.Remove the ZIP code feature from the model
B.Increase the decision threshold for those ZIP codes
C.Discontinue use of the model for those ZIP codes
D.Retrain the model with fairness constraints
AnswerD

Fairness constraints can reduce bias while maintaining overall performance, a more comprehensive solution.

Why this answer

Retraining the model with fairness constraints directly addresses the root cause of the bias—the model's learned correlations between ZIP code and default risk. Fairness constraints, such as demographic parity or equalized odds, are applied during training to ensure the model's predictions are not systematically skewed against certain groups. This approach preserves the predictive power of legitimate features while mitigating discriminatory outcomes, aligning with AI governance principles.

Exam trap

The AI0-001 exam often tests the misconception that removing a sensitive feature (like ZIP code) is sufficient to eliminate bias, when in reality correlated proxy features can perpetuate discrimination—a concept known as 'fairness through unawareness' being a flawed approach.

How to eliminate wrong answers

Option A is wrong because removing the ZIP code feature may not eliminate bias if other features (e.g., income, credit history) are correlated with ZIP code, and it could reduce model accuracy by discarding legitimate predictive information. Option B is wrong because increasing the decision threshold for those ZIP codes is a post-hoc adjustment that treats the symptom (high false positives) without fixing the underlying bias, and it may introduce new disparities or violate regulatory requirements for consistent lending standards. Option C is wrong because discontinuing use of the model for those ZIP codes abandons the model's utility entirely for those areas, which is operationally impractical and does not address the bias—it simply avoids the problem rather than correcting it.

4
MCQeasy

A company is developing an AI chatbot for customer service. They want to ensure the bot does not generate offensive or harmful responses. Which governance practice should be implemented first?

A.Set up a human-in-the-loop review process
B.Implement a content filter to screen responses before delivery
C.Create a usage policy for acceptable bot behavior
D.Sanitize training data to remove toxic examples
AnswerB

Content filtering immediately prevents harmful outputs from reaching users.

Why this answer

A content filter acts as a real-time safety gate that screens every response generated by the AI model before it reaches the customer. This is the first line of defense against offensive or harmful outputs, as it can catch toxic language, PII leaks, or policy violations immediately, even if the underlying model has not been fully sanitized. Without such a filter, harmful responses could be delivered before any other governance measure (like human review or policy creation) can intervene.

Exam trap

CompTIA often tests the principle of 'defense in depth' and the order of implementation, where candidates mistakenly choose data sanitization (D) as the first step, overlooking that runtime controls are more immediate and practical for preventing harm in a deployed system.

How to eliminate wrong answers

Option A is wrong because a human-in-the-loop review process introduces latency and cannot scale to handle high-volume chatbot traffic; it is a secondary safeguard, not the first implementation. Option C is wrong because creating a usage policy defines acceptable behavior but does not technically prevent the model from generating offensive responses—it is a documentation step, not an enforcement mechanism. Option D is wrong because sanitizing training data is a proactive but time-consuming and imperfect process; even with clean data, large language models can still generate toxic outputs due to emergent behaviors or adversarial prompts, so a runtime filter is needed first.

5
MCQmedium

A healthcare organization is deploying an AI system to analyze patient records and recommend treatment plans. To comply with data privacy regulations, what is the most important security measure to implement?

A.Enable detailed audit logging
B.Anonymize patient data before processing
C.Encrypt all data at rest and in transit
D.Implement role-based access control
AnswerB

Anonymization removes identifying information, reducing privacy risks while allowing analysis.

Why this answer

Anonymizing patient data before processing is the most important security measure because it directly addresses data privacy regulations like HIPAA and GDPR by removing personally identifiable information (PII) from the dataset. This ensures that even if a breach occurs, the data cannot be linked back to an individual, thereby minimizing compliance risk. While other measures like encryption and access control are essential, anonymization is the foundational step for lawful AI processing of sensitive health data.

Exam trap

CompTIA often tests the distinction between security controls that protect data in transit/at rest versus those that protect the data's content itself; the trap here is that candidates confuse encryption with anonymization, thinking encryption alone satisfies privacy regulations, when in fact it only protects confidentiality, not identifiability.

How to eliminate wrong answers

Option A is wrong because detailed audit logging is a detective control that records who accessed what and when, but it does not prevent exposure of PII or ensure compliance with privacy regulations like HIPAA or GDPR. Option C is wrong because encrypting data at rest (e.g., AES-256) and in transit (e.g., TLS 1.3) protects against unauthorized interception but does not remove PII from the data; if an authorized user or AI model processes encrypted data, the plaintext still contains identifiable information. Option D is wrong because role-based access control limits who can view or process data but does not alter the data itself; a user with the appropriate role can still access raw PII, violating privacy regulations if the data is used for AI training without anonymization.

6
MCQmedium

An image classification model misclassifies a stop sign as a speed limit sign after a few pixels are altered. What is the most effective defense against such attacks?

A.Use a larger validation dataset
B.Reduce the input image resolution
C.Increase the model's complexity
D.Adversarial training
AnswerD

Adversarial training explicitly trains on perturbed examples to improve robustness.

Why this answer

Adversarial training is the most effective defense because it explicitly incorporates adversarial examples—like the perturbed stop sign—into the model's training data. By training on both clean and adversarially altered images, the model learns to be robust against small, malicious perturbations that cause misclassification. This directly addresses the root cause of the vulnerability, unlike other options that only mitigate symptoms or ignore the attack vector.

Exam trap

The AI0-001 exam often tests the misconception that increasing dataset size or model complexity improves security, when in fact adversarial training is the only listed option that directly hardens the model against input perturbations.

How to eliminate wrong answers

Option A is wrong because a larger validation dataset does not protect against adversarial perturbations; it only improves the statistical estimate of model performance on clean data, not robustness to crafted attacks. Option B is wrong because reducing input resolution may actually increase vulnerability by discarding fine-grained features that help distinguish objects, and it does not prevent pixel-level manipulations from fooling the model. Option C is wrong because increasing model complexity often makes the model more susceptible to overfitting and adversarial examples, as deeper networks can have larger linear regions that attackers exploit.

7
Multi-Selectmedium

Which TWO are key requirements for AI governance under the EU AI Act for high-risk AI systems? (Choose two.)

Select 2 answers
A.Regular performance benchmarks
B.Human oversight
C.Open-source licensing
D.Transparency and documentation
E.Mandatory use of cloud
AnswersB, D

Required for high-risk AI systems.

Why this answer

The EU AI Act mandates that high-risk AI systems must incorporate human oversight mechanisms to ensure that humans can intervene or override the system's decisions when necessary. This requirement is designed to prevent or minimize risks to health, safety, and fundamental rights, and it is a core governance obligation under Article 14 of the Act.

Exam trap

The AI0-001 exam often tests the distinction between general best practices (like performance benchmarks) and specific regulatory mandates (like human oversight and transparency), leading candidates to select familiar but non-required options such as regular performance benchmarks.

8
MCQhard

An AI system used for autonomous driving is found to have a lower accuracy in detecting pedestrians with darker skin tones. The development team wants to address this ethical issue. Which action is most effective?

A.Conduct additional testing to measure the disparity
B.Augment the training dataset with more images of pedestrians with darker skin
C.Replace the object detection algorithm with a different one
D.Adjust the model's decision threshold for pedestrian detection
AnswerB

Diverse data helps the model learn robust features for all skin tones.

Why this answer

Augmenting the training dataset with more images of pedestrians with darker skin directly addresses the root cause of the bias: underrepresentation in the training data. By providing a more balanced and diverse dataset, the model can learn more robust features for all skin tones, reducing accuracy disparity without altering the algorithm's core logic or introducing arbitrary thresholds.

Exam trap

CompTIA often tests the misconception that bias can be fixed by simply changing the algorithm or threshold, when in reality the most effective first step is to address data imbalance through targeted augmentation.

How to eliminate wrong answers

Option A is wrong because additional testing only measures the disparity but does not fix it; it is a diagnostic step, not a corrective action. Option C is wrong because replacing the object detection algorithm does not guarantee improved fairness—bias often stems from training data distribution, not the algorithm itself, and a different algorithm may still exhibit similar biases if trained on the same skewed data. Option D is wrong because adjusting the decision threshold can trade off precision and recall but does not address the underlying data imbalance; it may reduce false negatives for one group at the expense of increased false positives for another, without resolving the root cause.

9
MCQeasy

What is the primary function of an AI ethics board within an organization?

A.Developing algorithms
B.Managing cloud infrastructure
C.Marketing AI products
D.Reviewing AI projects for ethical compliance
AnswerD

The board provides oversight and guidance on ethical matters.

Why this answer

The primary function of an AI ethics board is to review AI projects for ethical compliance, ensuring that the organization's AI systems adhere to established ethical principles, legal standards, and governance frameworks. This board typically assesses risks related to bias, fairness, transparency, and accountability before deployment, rather than engaging in technical development or operational tasks.

Exam trap

The AI0-001 exam often tests the distinction between operational roles (e.g., development, infrastructure, marketing) and governance roles (e.g., ethics review), so the trap here is confusing a technical or business function with the oversight responsibility of an ethics board.

How to eliminate wrong answers

Option A is wrong because developing algorithms is a technical function performed by data scientists and engineers, not by an ethics board, which focuses on governance and oversight. Option B is wrong because managing cloud infrastructure is an IT operations role involving platforms like AWS or Azure, unrelated to ethical review processes. Option C is wrong because marketing AI products is a business development activity that promotes AI solutions, whereas an ethics board provides independent scrutiny to prevent unethical practices.

10
MCQhard

You are a security engineer at a large e-commerce company that uses an AI-based recommendation system. The system is deployed on a Kubernetes cluster and uses a TensorFlow model served via REST API. Recently, the security team detected unusual API calls that caused the model to return incorrect recommendations. Analysis shows that the inputs were crafted to maximize prediction error. The team suspects an adversarial attack. You need to implement a solution that detects and mitigates such attacks in real-time without requiring model retraining. Which approach should you take?

A.Implement an input validation filter to detect and block anomalous inputs
B.Increase the number of model replicas to distribute the load
C.Retrain the model with adversarial examples
D.Roll back the model to a previous version that was not attacked
AnswerA

Input validation can identify adversarial examples based on statistical anomalies.

Why this answer

An input validation filter can detect and block adversarial inputs in real-time by analyzing statistical properties (e.g., outlier detection, perturbation magnitude) without modifying the model. This approach is lightweight, operates at the API gateway level, and does not require retraining, making it suitable for immediate deployment against crafted inputs that maximize prediction error.

Exam trap

CompTIA often tests the misconception that retraining or scaling can solve security issues, but the key constraint here is 'real-time detection without retraining,' which eliminates options that require model modification or do not address the attack vector.

How to eliminate wrong answers

Option B is wrong because increasing model replicas only distributes load and improves throughput, but does not detect or block malicious inputs; adversarial attacks exploit model vulnerabilities, not resource exhaustion. Option C is wrong because retraining with adversarial examples requires model retraining, which violates the constraint of 'without requiring model retraining' and is a longer-term solution, not real-time mitigation. Option D is wrong because rolling back to a previous version does not address the root cause; the same adversarial inputs would still be effective against the older model, and the attack vector remains unmitigated.

11
MCQhard

A financial institution uses a deep learning model for loan approvals. Under the EU AI Act, this is considered a high-risk AI system. Which mandatory requirement must the institution fulfill before deployment?

A.Obtain certification from an ISO 27001 auditor
B.Publish the model's source code publicly
C.Register the AI system with the national data protection authority
D.Conduct a risk assessment and bias testing
AnswerD

The EU AI Act mandates a risk management system and bias audits for high-risk systems.

Why this answer

Under the EU AI Act, high-risk AI systems must undergo a conformity assessment that includes a risk assessment and bias testing to ensure fairness, transparency, and non-discrimination before deployment. This requirement is mandated by Articles 9 and 10 of the Act, which specifically address risk management and data governance for high-risk systems. Option D correctly identifies this mandatory step, as the institution must demonstrate that the model does not produce biased outcomes that could lead to discriminatory lending practices.

Exam trap

The AI0-001 exam often tests the misconception that all AI systems require public transparency or external certification, but the EU AI Act specifically mandates internal risk and bias assessments for high-risk systems, not broad publication or ISO standards.

How to eliminate wrong answers

Option A is wrong because ISO 27001 certification pertains to information security management systems, not to AI-specific risk or bias compliance under the EU AI Act; the Act does not require ISO 27001 certification for high-risk AI systems. Option B is wrong because the EU AI Act does not mandate public disclosure of source code; doing so could violate trade secrets and intellectual property rights, and transparency requirements are limited to documentation and logging, not open-source publication. Option C is wrong because registration with a national data protection authority is not a pre-deployment requirement for high-risk AI systems under the EU AI Act; instead, the Act requires registration in an EU-wide database managed by the European Commission, not individual national authorities.

12
Multi-Selecthard

Which THREE are effective methods for ensuring data privacy in AI training? (Choose three.)

Select 3 answers
A.Data encryption at rest
B.Data anonymization
C.Differential privacy
D.Data replication
E.Federated learning
AnswersB, C, E

Removes personally identifiable information.

Why this answer

Data anonymization (B) is correct because it removes or obfuscates personally identifiable information (PII) from training datasets, ensuring that individuals cannot be re-identified. This is a foundational privacy technique that directly addresses regulatory requirements like GDPR and CCPA by breaking the link between data and specific individuals.

Exam trap

The AI0-001 exam often tests the distinction between security controls (like encryption) and privacy-preserving techniques, trapping candidates who confuse data protection at rest with privacy during model training.

13
MCQeasy

A bank uses an AI model to approve loans. During an audit, it is found that the model denies loans at a higher rate for a certain ethnic group. Which governance principle is primarily violated?

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

Fairness requires non-discrimination, which is violated here.

Why this answer

The model's disparate impact on a specific ethnic group directly violates the principle of Fairness, which requires that AI systems do not discriminate based on protected attributes such as race, ethnicity, or gender. In lending, fairness is often assessed using metrics like demographic parity or equal opportunity, and a higher denial rate for one group indicates a lack of algorithmic fairness.

Exam trap

The AI0-001 exam often tests the distinction between Fairness and Transparency, where candidates mistakenly choose Transparency because they think 'explaining the bias' is the primary issue, but the question asks which principle is violated by the biased outcome itself.

How to eliminate wrong answers

Option A is wrong because Accountability refers to the assignment of responsibility for the model's decisions and outcomes, not the presence of bias itself; while the bank must be accountable for the bias, the primary violation here is the discriminatory outcome. Option C is wrong because Transparency concerns the ability to explain and understand how the model makes decisions (e.g., through interpretability or documentation), but the core issue is the biased result, not a lack of explanation. Option D is wrong because Privacy involves the protection of personal data and compliance with regulations like GDPR or CCPA; the scenario does not describe unauthorized data use or exposure, only discriminatory lending decisions.

14
MCQmedium

A hospital deploys an AI diagnostic assistant that analyzes medical images. The system has been in use for six months, and radiologists have reported that the AI is increasingly confident in its predictions, but sometimes misses rare conditions. The AI ethics board is concerned about overreliance and potential harm from false negatives. They want to implement a governance framework that ensures appropriate human oversight. The hospital has a limited IT budget. What is the best approach?

A.Implement a human-in-the-loop process where the AI flags low-confidence or rare condition predictions for mandatory radiologist review
B.Add a warning to the AI interface that says 'This tool may miss rare conditions'
C.Require all AI predictions to be reviewed by a radiologist before final diagnosis
D.Increase the AI's false positive threshold to reduce missed cases
AnswerA

This balances efficiency with safety, ensuring oversight where it matters.

Why this answer

A human-in-the-loop process that triggers mandatory radiologist review only for low-confidence or rare-condition predictions directly addresses the risk of overreliance and false negatives without overwhelming the limited IT budget. This targeted oversight ensures that the AI's increasing confidence does not lead to missed rare conditions, while still allowing routine high-confidence predictions to proceed efficiently. The approach balances safety and resource constraints by focusing human attention where the AI is most likely to err.

Exam trap

CompTIA AI often tests the distinction between passive warnings (like option B) and active workflow controls (like option A), where candidates mistakenly believe that a simple disclaimer is sufficient for governance when actual process enforcement is required.

How to eliminate wrong answers

Option B is wrong because adding a static warning does not enforce any change in workflow or guarantee that radiologists will actually catch missed rare conditions; it merely shifts liability without reducing the risk of false negatives. Option C is wrong because requiring all AI predictions to be reviewed by a radiologist before final diagnosis would be prohibitively expensive and slow, defeating the purpose of using AI to improve throughput and contradicting the limited IT budget constraint. Option D is wrong because increasing the false positive threshold would reduce false negatives but would also increase false positives, potentially overwhelming radiologists with unnecessary alerts and degrading trust in the system, while not addressing the core issue of overreliance on the AI's confidence.

15
MCQhard

A financial institution uses an AI model to approve loan applications. The model was trained on historical data that included biased lending practices. The bank's ethics committee wants to mitigate bias without removing protected attributes. Which approach best balances fairness and model performance?

A.Retrain the model using a balanced dataset
B.Remove all protected attributes from the training data
C.Post-process model outputs to adjust for demographic parity
D.Apply adversarial debiasing during training
AnswerD

Adversarial debiasing reduces bias by learning non-discriminatory representations.

Why this answer

Adversarial debiasing is the best approach because it directly optimizes the model to reduce bias during training while preserving predictive accuracy. It uses an adversarial network that tries to predict the protected attribute from the model's predictions, forcing the main model to learn representations that are less correlated with that attribute. This allows the bank to keep protected attributes in the data (as required by the ethics committee) while actively mitigating bias.

Exam trap

CompTIA often tests the misconception that simply removing protected attributes (Option B) is sufficient to eliminate bias, when in reality proxy features and correlated variables can perpetuate discrimination.

How to eliminate wrong answers

Option A is wrong because retraining on a balanced dataset only addresses representation bias (e.g., equal numbers of approved/rejected loans across groups) but does not remove the underlying biased correlations learned from historical lending practices; it may also reduce model performance by discarding real-world data distributions. Option B is wrong because removing all protected attributes does not eliminate bias—correlated features (e.g., zip code, income) can act as proxies for race or gender, leading to indirect discrimination, and the ethics committee explicitly wants to keep protected attributes. Option C is wrong because post-processing adjusts outputs after the model is trained, which can improve demographic parity but often at the cost of significant accuracy loss and does not address bias embedded in the model's internal representations.

16
MCQhard

Refer to the exhibit. Which model is NOT in full compliance with the policy?

A.ChurnPredict v1
B.FraudDetect v4
C.CreditScorer v2
D.LoanApproval v3
AnswerC

CreditScorer v2 uses a black-box neural network that cannot provide explainability, violating the policy's requirement for model interpretability.

Why this answer

CreditScorer v2 is not in full compliance because it uses a black-box neural network that cannot provide explainability for its credit decisions, violating the policy's requirement for model interpretability and transparency. The policy mandates that all models must support post-hoc explanation methods such as SHAP or LIME, which CreditScorer v2 lacks due to its opaque architecture.

Exam trap

CompTIA AI often tests the misconception that all machine learning models are equally compliant if they achieve high accuracy, ignoring the specific governance requirement for interpretability in high-stakes domains like credit scoring.

How to eliminate wrong answers

Option A is wrong because ChurnPredict v1 uses a gradient-boosted decision tree (XGBoost) with built-in feature importance and SHAP support, satisfying the policy's interpretability requirement. Option B is wrong because FraudDetect v4 employs a logistic regression model with L1 regularization, which is inherently interpretable through coefficient analysis and passes the transparency audit. Option D is wrong because LoanApproval v3 is a rule-based system using a decision tree with a maximum depth of 5, providing full traceability and meeting the policy's compliance criteria.

17
Multi-Selectmedium

Which THREE are key principles of trustworthy AI according to the OECD?

Select 3 answers
A.Profitability
B.Robustness
C.Transparency
D.Scalability
E.Accountability
AnswersB, C, E

Robustness ensures AI systems perform reliably under varied conditions.

Why this answer

Robustness is a key principle of trustworthy AI according to the OECD, ensuring that AI systems operate reliably and securely under a wide range of conditions, including handling errors, adversarial inputs, and unexpected scenarios. This principle directly supports the goal of maintaining system integrity and preventing harm, which is fundamental to trustworthiness.

Exam trap

The AI0-001 exam often tests candidates by including plausible-sounding business or operational terms like 'profitability' or 'scalability' as distractors, leading them to confuse general system attributes with the specific ethical and governance principles outlined by the OECD.

18
Multi-Selecthard

Which THREE of the following are key components of an AI governance framework?

Select 3 answers
A.Cloud infrastructure configuration
B.Model accuracy benchmarks
C.Risk assessment and mitigation plans
D.Transparency and explainability policies
E.Data management and privacy controls
AnswersC, D, E

Essential for identifying and managing AI risks.

Why this answer

Risk assessment and mitigation plans are a core component of an AI governance framework, ensuring that potential harms, biases, and security vulnerabilities are identified and addressed before deployment. This aligns with frameworks like NIST AI RMF, which mandates continuous risk monitoring and mitigation strategies to maintain ethical and secure AI operations.

Exam trap

CompTIA often tests the distinction between governance (policies, ethics, risk) and operational/technical components (infrastructure, model tuning), so candidates mistakenly select cloud configuration or accuracy benchmarks as governance elements.

19
Multi-Selectmedium

Which TWO of the following are common methods for mitigating bias in AI models?

Select 2 answers
A.Using adversarial training
B.Reweighting training samples based on sensitive attributes
C.Applying L1 regularization
D.Adding fairness constraints during training
E.Performing k-fold cross-validation
AnswersB, D

Reweighting can adjust for underrepresented groups to reduce bias.

Why this answer

Reweighting training samples based on sensitive attributes is a common pre-processing bias mitigation technique. It assigns higher weights to underrepresented groups or lower weights to overrepresented groups to balance the dataset, thereby reducing the model's reliance on biased correlations. This method directly addresses data-level bias before model training begins.

Exam trap

CompTIA often tests the distinction between bias mitigation techniques (pre-processing, in-processing, post-processing) and general ML best practices like regularization or cross-validation, leading candidates to confuse L1 regularization or k-fold cross-validation with fairness methods.

20
Multi-Selectmedium

Which THREE of the following are key components of an AI governance framework?

Select 3 answers
A.Regular auditing and monitoring for compliance.
B.Cloud-based deployment for scalability.
C.Ethical guidelines for AI development and deployment.
D.Explainability mechanisms for model decisions.
E.Model accuracy thresholds for production deployment.
AnswersA, C, D

Auditing ensures ongoing adherence to policies and regulations.

Why this answer

Regular auditing and monitoring for compliance (A) is a key component of an AI governance framework because it ensures that AI systems operate within legal, ethical, and organizational policies over time. Continuous monitoring detects drift, bias, or security violations, while audits provide evidence of adherence to standards such as ISO/IEC 42001 or internal governance rules. Without this, governance becomes a static policy with no enforcement or verification.

Exam trap

CompTIA often tests the distinction between governance components (policies, ethics, oversight) and operational or technical metrics (deployment, accuracy thresholds), leading candidates to confuse performance requirements with governance pillars.

21
MCQmedium

A team is deploying an AI model that predicts patient readmission risk. The model was trained on data from three hospitals but will be used in a fourth hospital with different patient demographics. What is the most important security risk to assess?

A.Data poisoning during training
B.Adversarial attacks that cause misclassification
C.Model inversion to extract patient data
D.Data breach of the inference API
AnswerB

The shift in demographics can make the model more vulnerable to adversarial examples that cause incorrect readmission predictions.

Why this answer

Using a model on data from a different distribution (population shift) can degrade performance, but from a security perspective, the main risk is adversarial attacks that exploit the model's unfamiliarity with new data. Model inversion and poisoning are training-time attacks; data breach is an operational risk but not specific to this scenario.

22
MCQhard

A company's AI governance board requires each model to have a model card documenting intended use, performance metrics, and limitations. What is the primary purpose of a model card?

A.To provide transparent documentation of model capabilities and limitations
B.To specify the exact training algorithm and hyperparameters
C.To outline a complete risk assessment framework
D.To serve as a legal contract between developers and users
AnswerA

They promote accountability and informed deployment.

Why this answer

A model card is a standardized documentation framework that provides transparent, concise information about a machine learning model's intended use, performance metrics, and limitations. This transparency enables stakeholders to understand the model's capabilities and potential biases, ensuring responsible deployment and governance as required by AI ethics and governance frameworks.

Exam trap

The AI0-001 exam often tests the distinction between documentation for transparency (model card) and detailed technical specifications (hyperparameters) or legal instruments, so candidates mistakenly choose B or D because they confuse 'documentation' with exhaustive technical detail or binding agreements.

How to eliminate wrong answers

Option B is wrong because specifying the exact training algorithm and hyperparameters is a detail of model development documentation, not the primary purpose of a model card, which focuses on high-level transparency for governance and end-users. Option C is wrong because a complete risk assessment framework is a broader governance artifact (e.g., an AI risk register) that may reference model cards but is not the primary purpose of the card itself. Option D is wrong because a model card is not a legal contract; it is a technical documentation tool for transparency, and legal agreements are separate documents governed by terms of service or licensing.

23
MCQhard

A self-driving car company is testing an AI model for pedestrian detection. During simulation, the model fails to detect pedestrians in low-light conditions. The safety team wants to improve robustness without retraining the entire model from scratch. Which approach is most appropriate?

A.Replace the convolutional layers with transformer layers to improve attention.
B.Apply data augmentation techniques to simulate low-light conditions in the training dataset.
C.Use adversarial training to add imperceptible perturbations to training images.
D.Increase the model's depth by adding more convolutional layers.
AnswerB

Data augmentation can expand the training data to include low-light scenarios, improving robustness without full retraining.

Why this answer

Data augmentation techniques, such as adjusting brightness, contrast, and adding noise, can synthetically create low-light training examples from existing data. This improves the model's robustness to low-light conditions without requiring a full retraining from scratch, as it directly addresses the distribution shift in the input data.

Exam trap

CompTIA often tests the distinction between improving robustness to natural distribution shifts (e.g., low-light) via augmentation versus defending against adversarial perturbations, causing candidates to mistakenly choose adversarial training for non-adversarial scenarios.

How to eliminate wrong answers

Option A is wrong because replacing convolutional layers with transformer layers would require significant architectural changes and likely full retraining, not a lightweight fix, and transformers are not inherently more robust to low-light conditions without specific training. Option C is wrong because adversarial training focuses on imperceptible perturbations that cause misclassification, which is a different problem (adversarial attacks) than natural low-light degradation; it does not simulate the global brightness reduction or noise patterns of low-light environments. Option D is wrong because increasing model depth by adding more convolutional layers does not address the specific data distribution shift (low-light) and may lead to overfitting or vanishing gradients without corresponding training data changes.

24
MCQhard

A large e-commerce company uses a recommendation engine trained on millions of user interactions. Recently, the marketing team noticed a sharp increase in click-through rates for a particular product category. Upon investigation, an engineer found that a competitor had injected fake user profiles that consistently clicked on their products, skewing the training data. The company needs to remediate the attack and prevent future occurrences. The team has limited time and budget. Which course of action should the company take first?

A.Identify and remove the fake user profiles from the training dataset, then retrain the model
B.Implement adversarial training to make the model robust to future poisoning attempts
C.Decrease the frequency of model retraining to limit exposure to new data
D.Add differential privacy noise to the training data to mask the injected profiles
AnswerA

This directly eliminates the poisoned data and restores model accuracy.

Why this answer

The immediate priority is to remove the poisoned data from the training set and retrain the model, as the fake profiles are actively skewing predictions and causing incorrect click-through rate spikes. This direct remediation addresses the root cause with minimal time and budget, aligning with the team's constraints. Without cleaning the data, any further training or defensive measures would still operate on corrupted inputs.

Exam trap

The AI0-001 exam often tests the principle that immediate incident response (clean and retrain) must precede long-term defenses, tempting candidates to choose sophisticated solutions like adversarial training or differential privacy that are premature without first removing the poisoned data.

How to eliminate wrong answers

Option B is wrong because adversarial training is a proactive defense that makes models robust to future attacks, but it does not remove existing poisoned data; the current model is already compromised and needs immediate cleanup first. Option C is wrong because decreasing retraining frequency would actually prolong exposure to the poisoned data, allowing the attack to continue influencing recommendations for longer. Option D is wrong because differential privacy adds noise to protect individual privacy, not to correct injected profiles; it would not remove the fake clicks and could degrade model accuracy without addressing the attack.

25
MCQeasy

Refer to the exhibit. A security auditor identifies a critical vulnerability that could allow an attacker to manipulate model inputs to cause misclassification. Which configuration setting is most directly responsible for this vulnerability?

A.enable_input_sanitization = true
B.audit_level = basic
C.enable_adversarial_defense = false
D.pii_detection = enabled
AnswerC

Disabling adversarial defense leaves the model vulnerable.

Why this answer

The vulnerability described is an adversarial attack on model inputs, which directly exploits the absence of adversarial defenses. Setting `enable_adversarial_defense = false` disables mechanisms like adversarial training or input perturbation detection that prevent misclassification from manipulated inputs. This configuration is the most direct root cause because it explicitly turns off the defense designed to counter such attacks.

Exam trap

The AI0-001 exam often tests the distinction between input sanitization (which handles malformed or malicious data) and adversarial defense (which specifically counters perturbation-based attacks), causing candidates to mistakenly choose input sanitization as the answer.

How to eliminate wrong answers

Option A is wrong because `enable_input_sanitization = true` would actually help prevent input manipulation by cleaning or validating inputs, so enabling it reduces vulnerability, not causes it. Option B is wrong because `audit_level = basic` controls the granularity of logging and monitoring, not the security posture against adversarial inputs; it affects visibility, not defense. Option D is wrong because `pii_detection = enabled` focuses on identifying personally identifiable information for compliance, not on defending against adversarial perturbations that cause misclassification.

26
MCQeasy

An AI development team is building a system to detect fraudulent transactions. They want to ensure the model complies with regulations requiring that individuals can question automated decisions. Which governance element is most relevant?

A.Right to explanation
B.Model versioning
C.Differential privacy
D.Data minimization
AnswerA

Right to explanation allows individuals to question and understand automated decisions.

Why this answer

The right to explanation is a governance principle that requires automated decision-making systems to provide individuals with meaningful information about how decisions are made. In the context of fraudulent transaction detection, this regulation ensures that a customer can question why a transaction was flagged, and the model must be able to provide an interpretable rationale. This directly aligns with the scenario's requirement for compliance with regulations allowing individuals to question automated decisions.

Exam trap

The trap here is that candidates often confuse governance principles like data minimization or differential privacy (which deal with data handling and privacy) with the specific regulatory requirement for transparency and contestability of automated decisions, which is the right to explanation.

How to eliminate wrong answers

Option B (Model versioning) is wrong because it refers to tracking and managing different iterations of a model for reproducibility and rollback, not to providing explanations to end-users about specific decisions. Option C (Differential privacy) is wrong because it is a technique for adding noise to data to protect individual privacy during training, not a mechanism for explaining or justifying individual automated decisions. Option D (Data minimization) is wrong because it is a principle of collecting only the necessary data for a task, which relates to privacy and storage, not to the transparency or contestability of automated decisions.

27
MCQeasy

A financial institution is implementing an AI-based fraud detection system. The compliance officer is concerned about potential bias in the model that could lead to unfair treatment of certain customer groups. Which governance practice should be prioritized to address this concern?

A.Increase the diversity of the training data by collecting more samples from underrepresented groups.
B.Schedule regular bias audits using fairness metrics.
C.Retrain the model every month with the latest transaction data.
D.Use SHAP values to provide explanations for each prediction.
AnswerB

Bias audits with metrics like demographic parity can detect unfair treatment and guide mitigation.

Why this answer

Regular bias audits using fairness metrics (Option B) are the correct governance practice because they provide a systematic, quantitative method to detect and measure disparate impact across protected groups. Unlike simply collecting more data, audits directly evaluate model outputs for statistical parity, equal opportunity, or other fairness definitions, enabling the institution to identify and remediate bias proactively. This aligns with regulatory expectations for ongoing monitoring and accountability in AI governance.

Exam trap

CompTIA often tests the distinction between interpretability (explaining a single prediction) and fairness (systematic bias across groups), leading candidates to mistakenly choose SHAP values (Option D) as a bias mitigation technique when it is only an explanation tool.

How to eliminate wrong answers

Option A is wrong because merely increasing training data diversity does not guarantee fairness; the model can still learn biased correlations from the data or amplify existing societal biases, and without fairness metrics, there is no way to measure whether the outcome is equitable. Option C is wrong because retraining monthly with the latest transaction data addresses model drift and concept drift, not bias; bias can persist or even worsen with new data if the underlying data generation process remains biased. Option D is wrong because SHAP values provide local interpretability for individual predictions but do not measure or mitigate systemic bias across groups; they explain why a specific decision was made, not whether the model treats groups fairly overall.

28
MCQmedium

After deploying a model for fraud detection, the data scientist observes a steady decline in precision over two months. Which issue is most likely occurring?

A.Data drift
B.Concept drift
C.Model overfitting
D.Adversarial attack
AnswerB

Precision decline indicates that the model's decision boundary is no longer optimal, a sign of concept drift.

Why this answer

Concept drift occurs when the statistical properties of the target variable change over time, causing the model's decision boundary to become outdated. In fraud detection, fraudsters continuously adapt their methods, so the relationship between input features and the fraud label shifts, leading to a steady decline in precision as false positives increase.

Exam trap

The AI0-001 exam often tests the distinction between data drift and concept drift by describing a scenario where the model's predictions become less accurate over time due to a change in the underlying relationship, not just the input data distribution.

How to eliminate wrong answers

Option A is wrong because data drift refers to changes in the distribution of input features (e.g., transaction amounts shift higher), which would affect recall or overall accuracy but not specifically precision in a steady decline pattern. Option C is wrong because model overfitting would cause poor generalization from the start, not a gradual decline over two months after deployment. Option D is wrong because an adversarial attack typically causes sudden, targeted performance drops or specific misclassifications, not a steady, broad decline in precision over time.

29
MCQhard

A security researcher demonstrates that by adding small perturbations to an image of a stop sign, an autonomous vehicle's AI misclassifies it as a speed limit sign. This is an example of which type of attack?

A.Data poisoning attack
B.Model extraction attack
C.Adversarial example attack
D.Membership inference attack
AnswerC

Adversarial examples are crafted inputs with perturbations that fool the model.

Why this answer

This is an adversarial example attack because the researcher adds imperceptible perturbations to the input image (the stop sign) to cause the AI model to output an incorrect classification (speed limit sign). Adversarial examples exploit the model's sensitivity to small, crafted changes in input data, leading to misclassification without altering the underlying task or training data.

Exam trap

The AI0-001 exam often tests the distinction between attacks that occur during training (poisoning) versus inference (adversarial examples), so candidates mistakenly choose data poisoning when the scenario clearly describes input manipulation at test time.

How to eliminate wrong answers

Option A is wrong because data poisoning attacks involve corrupting the training data (e.g., injecting malicious samples) to manipulate the model's learned behavior, not perturbing inputs at inference time. Option B is wrong because model extraction attacks aim to steal a model's architecture or parameters by querying it (e.g., via API calls), not by modifying inputs to cause misclassification. Option D is wrong because membership inference attacks determine whether a specific data point was used in the model's training set, not by perturbing inputs to cause misclassification.

30
MCQeasy

Which principle ensures that AI decisions can be traced back and understood by humans?

A.Transparency
B.Privacy
C.Robustness
D.Accountability
AnswerA

Transparency ensures that AI processes are open and understandable.

Why this answer

Transparency is the principle that ensures AI decisions can be traced back and understood by humans. It requires that the internal workings of an AI model, including its inputs, decision paths, and outputs, are documented and interpretable, enabling auditability and trust. Without transparency, stakeholders cannot verify whether the AI system is behaving as intended or complying with ethical and regulatory standards.

Exam trap

The AI0-001 exam often tests the confusion between Accountability and Transparency, where candidates mistakenly think that assigning responsibility (Accountability) automatically ensures the decision path is visible, but in reality, Accountability can exist without full Transparency if the system is a black box.

How to eliminate wrong answers

Option B is wrong because Privacy focuses on protecting personal data and controlling its collection, use, and sharing, not on making AI decisions traceable or understandable. Option C is wrong because Robustness concerns the system's ability to maintain performance under adversarial conditions or unexpected inputs, not the traceability of its decision-making process. Option D is wrong because Accountability refers to assigning responsibility for AI outcomes and ensuring there are mechanisms for redress, but it does not inherently require that the decision-making process itself be transparent or understandable.

31
Multi-Selectmedium

Which TWO of the following are effective techniques for detecting bias in an AI model?

Select 2 answers
A.Fairness metrics such as equal opportunity difference
B.Feature importance scores
C.Confusion matrix on the entire dataset
D.Cross-validation accuracy
E.Disparate impact analysis
AnswersA, E

Quantifies specific fairness criteria.

Why this answer

Fairness metrics such as equal opportunity difference directly quantify bias by measuring the difference in true positive rates between privileged and unprivileged groups. A value of zero indicates perfect fairness, while non-zero values reveal disparate treatment, making it a standard technique for bias detection in AI models.

Exam trap

The AI0-001 exam often tests the distinction between model performance metrics (accuracy, confusion matrix) and fairness-specific metrics, leading candidates to mistakenly select cross-validation accuracy or feature importance as bias detection tools.

32
MCQeasy

A bank deploys an AI system to approve loan applications. During testing, the model denies a disproportionate number of applicants from a particular demographic group, even after controlling for credit history. Which ethical principle is being violated?

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

Fairness requires equal treatment across demographic groups; the observed disparity indicates bias.

Why this answer

The AI system's disparate impact on a demographic group, even after controlling for credit history, directly violates the principle of fairness. Fairness in AI requires that models do not produce biased outcomes that systematically disadvantage protected groups, regardless of whether the bias stems from training data, feature selection, or algorithmic design. This scenario describes a clear case of algorithmic bias, which fairness principles aim to prevent.

Exam trap

The AI0-001 exam often tests the distinction between fairness and transparency, where candidates mistakenly choose transparency because they confuse 'explaining why the model denied loans' with 'the model being biased against a group.'

How to eliminate wrong answers

Option A is wrong because transparency refers to the openness and explainability of AI decisions, not the presence of biased outcomes; a model can be fully transparent yet still unfair. Option B is wrong because privacy concerns the protection of personal data and consent, not the equitable treatment of groups in decision-making. Option C is wrong because accountability involves assigning responsibility for AI outcomes, but the core ethical breach here is the biased result itself, not the lack of a responsible party.

33
MCQmedium

A credit union uses an AI model to approve personal loans. The model was trained on historical data from the past five years. A recent internal review shows that the model approves loans predominantly for white applicants compared to other ethnicities, even when income and credit scores are similar. The credit union wants to comply with fair lending laws without significantly reducing overall approval rates. The data science team has access to the training data. What is the most appropriate remediation step?

A.Apply a fairness constraint that penalizes the model for disparate impact
B.Discontinue the AI model and use manual approval for all loans
C.Resample the training data to ensure balanced representation of ethnicities
D.Adjust the approval threshold so that approval rates are equal across ethnic groups
AnswerC

Resampling addresses the root cause by balancing training data.

Why this answer

Resampling the training data to ensure balanced representation of ethnicities directly addresses the root cause of the bias—skewed historical data—without altering the model's decision logic or approval thresholds. By rebalancing the dataset (e.g., oversampling underrepresented groups or undersampling the majority), the model learns from a more equitable distribution of features, reducing disparate impact while preserving overall approval rates. This approach aligns with fair lending laws by mitigating bias at the data level, which is the most fundamental and effective remediation step.

Exam trap

CompTIA often tests the misconception that adjusting the approval threshold (Option D) is a valid fairness intervention, but the trap here is that threshold adjustment only changes the cutoff for decisions without fixing the underlying biased feature representations, leading to inconsistent and potentially illegal outcomes under fair lending laws.

How to eliminate wrong answers

Option A is wrong because applying a fairness constraint that penalizes the model for disparate impact is a post-hoc regularization technique that can reduce approval rates overall and may not comply with fair lending laws if it introduces reverse discrimination or violates the business requirement of not significantly reducing overall approval rates. Option B is wrong because discontinuing the AI model and using manual approval for all loans is an extreme measure that abandons automation entirely, likely increasing operational costs and introducing human bias, which does not meet the goal of compliance without significantly reducing approval rates. Option D is wrong because adjusting the approval threshold to equalize approval rates across ethnic groups is a simplistic, outcome-based fix that does not address underlying bias in the model's learned representations; it can lead to inconsistent decisions for similar applicants and may violate the principle of individual fairness under fair lending laws.

34
MCQmedium

Refer to the exhibit. An auditor reports that the model's fairness check was bypassed in a recent deployment. Based on the policy, what is the most likely cause?

A.The auditor role lacks 'evaluate' permission
B.Data scientist role has deploy permission, allowing deployment without fairness validation
C.Fairness check threshold is set to 0.8, which is too low
D.External_user role can perform inference, which triggers unfair predictions
AnswerB

The deploy permission may bypass the fairness check if not enforced.

Why this answer

(Data scientist role has deploy permission, allowing deployment without fairness validation) is correct. The policy shows fairness_check required, but if the deployment process does not enforce it, the data scientist could bypass it. Option A (Auditor lacks evaluate) is unrelated to deployment.

Option C (Fairness threshold low) does not cause bypass. Option D (External user inference) is unrelated.

35
MCQmedium

A security analyst notices that an AI model used for facial recognition is returning unusually high confidence scores for certain individuals while consistently misidentifying others. Which type of attack is most likely occurring?

A.Data poisoning
B.Evasion attack
C.Model inversion attack
D.Model extraction attack
AnswerC

Inversion exploits confidence scores to infer private training data, often showing high confidence on seen data.

Why this answer

A model inversion attack allows an adversary to reconstruct training data or infer sensitive attributes from the model's outputs. In this scenario, the unusually high confidence scores for certain individuals and misidentification of others indicate that the attacker is exploiting the model's internal representations to extract information about the training data, leading to biased or overconfident predictions for specific classes.

Exam trap

The AI0-001 exam often tests the distinction between attacks that affect model outputs (evasion) versus attacks that extract or infer training data (model inversion), and candidates may confuse the high confidence scores with a successful evasion or poisoning effect.

How to eliminate wrong answers

Option A is wrong because data poisoning involves injecting malicious data into the training set to corrupt the model's behavior, which would typically cause systematic errors across many inputs rather than selectively high confidence for some individuals. Option B is wrong because an evasion attack (adversarial example) manipulates input data to cause misclassification, but it does not explain the high confidence scores for certain individuals; evasion attacks usually reduce confidence or cause incorrect labels. Option D is wrong because model extraction aims to duplicate the model's functionality by querying it and training a substitute, not to reveal training data or cause confidence anomalies for specific individuals.

36
Multi-Selecteasy

Which TWO of the following are common techniques to improve the transparency and interpretability of an AI model?

Select 2 answers
A.Generate SHAP (SHapley Additive exPlanations) values
B.Use differential privacy to add noise to training data
C.Implement a random forest algorithm
D.Use deep neural networks to increase model complexity
E.Apply LIME (Local Interpretable Model-agnostic Explanations)
AnswersA, E

SHAP values explain the contribution of each feature to predictions.

Why this answer

SHAP values are correct because they provide a unified measure of feature importance based on cooperative game theory, specifically Shapley values, which quantify the marginal contribution of each feature to a model's prediction. This makes the model's decision-making process transparent by showing how each input feature influences the output, which is a core technique for interpretability in AI governance.

Exam trap

The AI0-001 exam often tests the distinction between techniques that improve model transparency (like SHAP and LIME) versus techniques that enhance privacy (like differential privacy) or model performance (like random forests or deep neural networks), leading candidates to confuse privacy-preserving methods with interpretability methods.

37
MCQmedium

A security team discovers that an AI-based anomaly detection system frequently misclassifies benign network traffic as malicious when the source IP is from a specific geographic region. Which type of AI vulnerability is most likely being exploited?

A.Data poisoning
B.Model inversion
C.Adversarial evasion
D.Membership inference
AnswerC

Adversarial evasion manipulates input features to cause misclassification. The regional bias suggests crafted inputs bypassing detection.

Why this answer

The scenario describes an AI-based anomaly detection system that misclassifies benign traffic from a specific geographic region as malicious. This is a classic example of an adversarial evasion attack, where an attacker crafts inputs (in this case, network traffic) that appear benign to human analysts but cause the AI model to misclassify them. The geographic bias suggests the attacker is exploiting the model's learned decision boundary, likely by manipulating features such as source IP or packet timing to evade detection.

Exam trap

The AI0-001 exam often tests the distinction between data poisoning (training-time attack) and adversarial evasion (inference-time attack), and the trap here is that candidates confuse the geographic bias with a poisoned training set rather than recognizing it as an evasion technique exploiting the model's learned regional patterns.

How to eliminate wrong answers

Option A is wrong because data poisoning involves injecting malicious data into the training set to corrupt the model's learning, not causing misclassification of benign traffic at inference time. Option B is wrong because model inversion attacks aim to reconstruct private training data from the model's outputs, not to cause misclassification of specific inputs. Option D is wrong because membership inference attacks determine whether a specific data point was used in training, not to cause the model to misclassify benign traffic as malicious.

38
MCQmedium

A healthcare startup deploys an AI model to predict patient readmission rates. An internal audit reveals that the model consistently underestimates readmission risk for non-native English speakers. According to AI ethics principles, what is the most appropriate course of action?

A.Add a confidence score disclaimer to model outputs
B.Reduce the sample size of non-native English speakers to balance the dataset
C.Continue using the model as is, since overall accuracy is acceptable
D.Retrain the model with a more representative dataset that includes diverse language backgrounds
AnswerD

Retraining with balanced data addresses the root cause of bias.

Why this answer

It directly addresses the root cause of the bias: the training data lacks sufficient representation from non-native English speakers, leading to systematic underestimation of readmission risk for that group. Retraining with a more representative dataset aligns with the AI ethics principle of fairness by ensuring the model learns patterns across all demographic groups equally, rather than masking the issue with disclaimers or manipulating sample sizes.

Exam trap

The AI0-001 exam often tests the misconception that adding a disclaimer or adjusting sample sizes post-hoc is sufficient to address bias, when in fact the ethical requirement is to fix the data or model at the training stage to ensure fairness.

How to eliminate wrong answers

Option A is wrong because adding a confidence score disclaimer does not fix the underlying algorithmic bias; it merely informs users of potential inaccuracy without correcting the model's systematic error. Option B is wrong because reducing the sample size of non-native English speakers would exacerbate the bias by further underrepresenting that group, violating the ethical principle of fairness and likely increasing model variance. Option C is wrong because continuing to use a model with known demographic bias, even if overall accuracy is acceptable, violates the AI ethics principle of non-maleficence and could lead to harmful disparities in patient care.

39
MCQeasy

A security analyst is reviewing logs from an AI-powered recommendation system and notices an unusually high number of requests for products from a specific vendor. The analyst suspects data poisoning. Which mitigation strategy should be implemented first?

A.Encrypt all training data at rest
B.Deploy an anomaly detection system on model outputs
C.Retrain the model with a smaller, curated dataset
D.Implement input validation and sanitization for training data
AnswerD

Input validation prevents poisoned data from entering the training pipeline.

Why this answer

Input validation and sanitization directly prevent malicious or anomalous data from entering the training pipeline, which is the root cause of data poisoning. In an AI-powered recommendation system, poisoned training data can cause the model to learn biased associations, such as favoring a specific vendor. By validating and sanitizing inputs before they are used for training, the attack vector is blocked at the earliest stage, making it the most effective first mitigation step.

Exam trap

The AI0-001 exam often tests the principle of defense in depth by making candidates choose a reactive or recovery measure (like retraining or monitoring outputs) instead of the proactive control that stops the attack at the input stage.

How to eliminate wrong answers

Option A is wrong because encrypting training data at rest protects confidentiality and integrity during storage, but it does not prevent malicious data from being ingested into the training set; data poisoning occurs before encryption is applied. Option B is wrong because deploying an anomaly detection system on model outputs is a reactive measure that detects poisoning after the model has already been compromised, rather than preventing the attack. Option C is wrong because retraining with a smaller, curated dataset may reduce the impact of poisoning but does not address the underlying vulnerability that allowed poisoned data to enter the system; it is a recovery step, not a first-line mitigation.

40
Multi-Selecteasy

Which TWO are common types of adversarial attacks on AI models?

Select 2 answers
A.Hyperparameter tuning
B.Transfer learning
C.Evasion attack
D.Backdoor attack
E.Data poisoning
AnswersC, E

Evasion attacks craft input perturbations to cause misclassification at test time.

Why this answer

Evasion attacks (Option C) are a common type of adversarial attack where an attacker crafts malicious input data that is intentionally designed to cause a trained AI model to make incorrect predictions or classifications, often by adding imperceptible perturbations to legitimate inputs. This exploits the model's sensitivity to small changes in feature space, leading to misclassification without altering the model itself.

Exam trap

The AI0-001 exam often tests the distinction between attack types that occur during training (data poisoning) versus inference (evasion), and candidates may mistakenly classify hyperparameter tuning or transfer learning as attacks because they sound like active manipulations, but they are standard ML practices.

41
MCQhard

Refer to the exhibit. An AI governance review finds that a model was deployed without required ethics approval. Based on the audit log, who is most responsible for the compliance failure?

A.Bob
B.Alice
C.Carol
D.System
AnswerA

Bob deployed the model without ethics approval.

Why this answer

Bob is the data scientist who deployed the model to production. The audit log shows that Bob executed the deployment command without first obtaining the required ethics approval. As the individual who performed the action that violated the governance policy, Bob bears primary responsibility for the compliance failure.

Exam trap

The AI0-001 exam often tests the distinction between who performed the action versus who requested or approved it, leading candidates to incorrectly blame the project manager or ethics officer instead of the deployer.

How to eliminate wrong answers

Option B (Alice) is wrong because Alice is the project manager who requested the model deployment, but she did not perform the actual deployment action; the audit log shows she only submitted the request. Option C (Carol) is wrong because Carol is the ethics officer who approved the model earlier, but the audit log indicates she did not approve this specific deployment; the failure is that Bob bypassed the required approval step. Option D (System) is wrong because the system is an automated deployment pipeline that executed Bob's command; it has no agency or responsibility for compliance decisions, and the governance policy assigns accountability to human actors.

42
MCQhard

A large hospital system deploys an AI triage system for emergency rooms. The system uses patient vitals and symptoms to recommend treatment priority. Six months after deployment, complaints arise that the system frequently underestimates the severity of symptoms for patients from certain ethnic backgrounds. A data scientist runs a bias audit and finds that the model's false negative rate is 20% higher for the minority group. The hospital's AI governance board requires immediate corrective action. The data science team has limited resources and cannot retrain the entire model from scratch. They have access to the training data, which is imbalanced. The model is a gradient boosted tree. Which course of action best addresses the bias while minimizing operational impact?

A.Rebalance the training data using SMOTE and retrain the model
B.Use adversarial debiasing during training to remove protected attribute correlations
C.Post-process the model's predictions by adjusting thresholds for the minority group
D.Replace the model with a simpler logistic regression model to improve interpretability
AnswerC

Threshold adjustment is fast, cheap, and directly minimizes false negative disparity.

Why this answer

Post-processing by adjusting decision thresholds for the minority group directly compensates for the higher false negative rate without requiring retraining. Since the team has limited resources and cannot retrain the entire gradient boosted tree model, this approach minimizes operational impact while addressing the bias. The threshold adjustment effectively lowers the probability cutoff for the minority group, making the model more sensitive to their symptoms and reducing underestimation of severity.

Exam trap

CompTIA often tests the misconception that bias mitigation always requires retraining or complex algorithmic changes, when in fact post-processing threshold adjustments can be a quick, effective fix for deployed models with limited resources.

How to eliminate wrong answers

Option A is wrong because SMOTE rebalances the training data by oversampling the minority class, but retraining the entire gradient boosted tree model from scratch is resource-intensive and contradicts the constraint of limited resources; moreover, SMOTE may introduce synthetic noise that degrades model performance. Option B is wrong because adversarial debiasing is a training-time technique that requires modifying the model architecture and retraining, which is not feasible given the limited resources and the fact that the model is already deployed; it also does not directly address the false negative rate disparity without full retraining. Option D is wrong because replacing the model with a simpler logistic regression model would require retraining and likely reduce predictive performance, especially for complex interactions in patient vitals and symptoms, and does not guarantee bias reduction; interpretability alone does not correct the existing bias.

43
MCQmedium

An AI model's performance drops significantly in production compared to testing. The data shows distribution shift. What is the best first step?

A.Add more features
B.Retrain model with new data
C.Use a different algorithm
D.Reduce model complexity
AnswerB

Retraining with current data addresses drift.

Why this answer

(Retrain model with new data) is correct because retraining with more representative data adapts to distribution shift. Option A (Add more features) may not address the shift. Option C (Change algorithm) is a larger change without addressing data.

Option D (Reduce model complexity) might worsen performance.

44
MCQmedium

An e-commerce company uses an AI system to set dynamic prices for products. A customer complains that the price they see is higher than the price shown to a friend for the same product at the same time. The company wants to ensure pricing fairness. Which ethical principle should guide the redesign of the pricing algorithm?

A.Transparency and explainability
B.Privacy by design
C.Accountability
D.Beneficence
AnswerA

Transparency requires the company to disclose how prices are determined, helping to ensure fairness and build trust.

Why this answer

Transparency and explainability is the correct principle because the core issue is that the customer cannot understand why the AI system set a different price for them compared to their friend. Redesigning the algorithm to provide clear, understandable reasons for price variations—such as demand, purchase history, or time of day—directly addresses this lack of visibility. This principle ensures that the system's decision-making process is open to scrutiny, which is essential for building trust and resolving fairness complaints in dynamic pricing models.

Exam trap

CompTIA often tests the distinction between 'accountability' (who is responsible) and 'transparency' (how the decision is made), leading candidates to pick accountability when the question explicitly asks for the principle that guides the redesign to ensure fairness through understanding.

How to eliminate wrong answers

Option B (Privacy by design) is wrong because the complaint is about price disparity and lack of understanding, not about how customer data is collected, stored, or protected. Option C (Accountability) is wrong because while accountability is important for assigning responsibility, it does not directly solve the customer's need to understand why the price differs; it focuses on who is responsible rather than making the algorithm's logic visible. Option D (Beneficence) is wrong because beneficence refers to doing good or maximizing benefits, but the immediate ethical failure here is the lack of clarity and justification for the pricing decision, not the absence of overall positive outcomes.

45
MCQhard

A research lab trains a language model using DP-SGD. What primary privacy risk does this technique mitigate?

A.Data poisoning attacks
B.Membership inference attacks
C.Adversarial patch attacks
D.Model inversion attacks
AnswerB

DP-SGD explicitly bounds the contribution of each datapoint, making membership inference harder.

Why this answer

DP-SGD (Differentially Private Stochastic Gradient Descent) mitigates membership inference attacks by adding calibrated noise to gradients during training, which bounds the influence any single training example can have on the final model. This differential privacy guarantee makes it difficult for an adversary to determine whether a specific data point was included in the training set, directly addressing the core risk of membership inference.

Exam trap

The AI0-001 exam often tests the distinction between privacy risks (membership inference, model inversion) and security risks (poisoning, adversarial examples), and the trap here is that candidates confuse 'privacy risk' with 'security risk' and pick data poisoning or adversarial attacks instead of recognizing that DP-SGD is specifically designed for differential privacy against membership inference.

How to eliminate wrong answers

Option A is wrong because data poisoning attacks involve injecting malicious data to corrupt model behavior, which DP-SGD does not specifically prevent—it only limits per-example influence but does not detect or filter poisoned inputs. Option C is wrong because adversarial patch attacks target image classifiers by placing physical patches on objects to cause misclassification, which is a computer vision robustness issue unrelated to the privacy guarantees of DP-SGD. Option D is wrong because model inversion attacks aim to reconstruct training data features or attributes from the model, and while DP-SGD provides some defense, its primary and most direct mitigation is against membership inference, not full inversion which requires stronger assumptions and additional techniques.

46
MCQmedium

You are an AI governance officer at a bank that uses a machine learning model to predict credit risk. The model was developed by an external vendor and uses a proprietary algorithm. The bank's compliance team has determined that the model must be explainable to meet regulatory requirements. However, the vendor claims the model is a 'black box' and cannot provide explanations. You need to ensure compliance while maintaining the model's performance. What is the best course of action?

A.Ignore the requirement as the model is proprietary
B.Ask the vendor to develop a custom explanation module
C.Replace the model with a simpler, interpretable model
D.Use a model-agnostic explanation technique like SHAP
AnswerD

SHAP provides explanations for any model, satisfying regulatory needs.

Why this answer

D is correct because model-agnostic explanation techniques like SHAP (SHapley Additive exPlanations) can provide post-hoc interpretability for any black-box model without requiring access to its internal structure or proprietary algorithm. This allows the bank to meet regulatory explainability requirements while preserving the vendor's proprietary model and its predictive performance.

Exam trap

The trap here is that candidates may assume that a 'black box' model cannot be explained at all, leading them to choose replacement with a simpler model (Option C), when in fact model-agnostic techniques like SHAP or LIME can provide explanations without altering the model itself.

How to eliminate wrong answers

Option A is wrong because ignoring regulatory requirements is not a viable option for a financial institution; it would lead to non-compliance and potential penalties. Option B is wrong because asking the vendor to develop a custom explanation module would require the vendor to modify their proprietary algorithm, which they have stated is a 'black box' and cannot provide explanations, making this request impractical and likely impossible. Option C is wrong because replacing the model with a simpler, interpretable model would sacrifice the predictive performance that the current model provides, which may be critical for accurate credit risk assessment.

47
MCQmedium

Which AI governance framework is specifically designed by the U.S. National Institute of Standards and Technology (NIST) to help organizations manage AI risks?

A.ISO/IEC 27001
B.COBIT
C.NIST AI Risk Management Framework
D.GDPR
AnswerC

NIST AI RMF is the U.S. standard for AI risk management.

Why this answer

The NIST AI Risk Management Framework (AI RMF) is the specific governance framework developed by the U.S. National Institute of Standards and Technology to help organizations manage AI risks, including those related to trustworthiness, fairness, and robustness. It provides a structured approach for identifying, assessing, and mitigating risks throughout the AI lifecycle, aligning with NIST's role in setting standards for cybersecurity and risk management.

Exam trap

The AI0-001 exam often tests candidates by listing well-known frameworks or regulations (like ISO/IEC 27001 or GDPR) that are related to security or privacy but are not AI-specific, leading candidates to confuse general governance with the NIST AI RMF.

How to eliminate wrong answers

Option A is wrong because ISO/IEC 27001 is an international standard for information security management systems (ISMS), not an AI-specific risk management framework, and it focuses on general data security rather than AI risks. Option B is wrong because COBIT (Control Objectives for Information and Related Technologies) is a framework for IT governance and management, developed by ISACA, and does not address AI-specific risks or the NIST AI RMF. Option D is wrong because GDPR (General Data Protection Regulation) is a European Union regulation for data privacy and protection, not a risk management framework, and it is not designed by NIST.

48
Multi-Selecthard

Which TWO techniques are specifically designed to protect individual privacy when training AI models?

Select 2 answers
A.Dropout
B.Model pruning
C.Differential privacy
D.Regularization
E.Anonymization
AnswersC, E

Differential privacy adds noise to training to prevent data leakage.

Why this answer

Differential privacy (C) is a technique that adds calibrated noise to training data or model updates, ensuring that the output of the model does not reveal whether any specific individual's data was included. This provides a formal mathematical guarantee of privacy, quantified by the epsilon parameter, making it a direct privacy-preserving method for AI training.

Exam trap

The AI0-001 exam often tests the distinction between techniques that improve model performance (dropout, pruning, regularization) and those that explicitly safeguard privacy, leading candidates to confuse regularization with privacy protection.

49
Multi-Selectmedium

Which TWO of the following are effective defenses against adversarial examples in AI systems?

Select 2 answers
A.Train the model with adversarial examples (adversarial training)
B.Use an ensemble of models and majority voting
C.Increase the model's sensitivity to input changes
D.Implement input sanitization and feature squeezing
E.Reduce model complexity through pruning
AnswersA, D

Adversarial training hardens the model against perturbations.

Why this answer

Adversarial training (A) is effective because it exposes the model to perturbed inputs during training, forcing it to learn robust decision boundaries that are less sensitive to small, malicious perturbations. Input sanitization and feature squeezing (D) reduce the attack surface by compressing input features (e.g., reducing bit depth or spatial smoothing) to eliminate adversarial noise before inference, making it harder for an attacker to craft a successful perturbation.

Exam trap

The AI0-001 exam often tests the misconception that ensemble methods or model simplification inherently improve adversarial robustness, when in fact they do not address the fundamental mechanism of adversarial perturbations and may even weaken defenses.

50
Multi-Selecthard

Which TWO of the following are effective defenses against adversarial evasion attacks on image classifiers?

Select 2 answers
A.Data augmentation
B.Gradient masking
C.Adversarial training
D.Input validation
E.Feature squeezing
AnswersB, C

Gradient masking obscures gradient information to prevent crafting adversarial examples.

Why this answer

Adversarial training and gradient masking (e.g., defensive distillation) are common defenses. Data augmentation helps generalization but not specifically against adversarial perturbations; feature squeezing reduces input complexity; input validation is generic.

51
MCQeasy

An AI system in a self-driving car misinterprets a stop sign due to a small sticker placed on it. This is an example of which security vulnerability?

A.Supply chain attack
B.Model inversion attack
C.Adversarial example attack
D.Data poisoning attack
AnswerC

Small manipulation of input causes incorrect output.

Why this answer

The sticker on the stop sign creates a small perturbation that causes the AI model's image classifier to misclassify the sign (e.g., as a speed limit sign). This is the defining characteristic of an adversarial example attack, where crafted input perturbations exploit model vulnerabilities to cause incorrect predictions.

Exam trap

The AI0-001 exam often tests the distinction between attacks that occur during training (data poisoning) versus attacks that occur during inference (adversarial examples), and candidates mistakenly choose data poisoning because they think the sticker 'poisons' the input, but the key is that the model's training data is unaffected.

How to eliminate wrong answers

Option A is wrong because a supply chain attack involves compromising hardware or software during the manufacturing or distribution process, not manipulating physical inputs after deployment. Option B is wrong because a model inversion attack aims to reconstruct private training data from model outputs, not to cause misclassification of inputs. Option D is wrong because data poisoning attacks corrupt the training dataset to influence the model's learned behavior, whereas the sticker is applied to a real-world input at inference time, not during training.

52
Multi-Selecteasy

Which TWO are common attack vectors against AI systems? (Choose two.)

Select 2 answers
A.SQL injection
B.Cross-site scripting
C.Buffer overflow
D.Data poisoning
E.Adversarial examples
AnswersD, E

Corrupts training data.

Why this answer

Data poisoning is a common attack vector against AI systems where an attacker manipulates the training data to corrupt the model's learning process. By injecting malicious or misleading samples into the training dataset, the attacker can cause the model to learn incorrect patterns, leading to biased outputs, reduced accuracy, or targeted misclassifications. This directly targets the integrity of the AI's training pipeline.

Exam trap

The AI0-001 exam often tests the distinction between traditional cybersecurity attacks (SQL injection, XSS, buffer overflow) and AI-specific threats (data poisoning, adversarial examples), so the trap is that candidates mistakenly apply general security knowledge to AI systems without recognizing the unique attack surfaces.

53
MCQmedium

A company deployed an AI chatbot that started generating offensive responses after a data update. The security team needs to quickly mitigate the issue. What should they do first?

A.Delete the training data
B.Disable the chatbot and investigate
C.Roll back to previous model version
D.Add a content filter
AnswerB

Immediate containment and then investigation.

Why this answer

The first priority when an AI chatbot generates offensive responses is to stop the harm immediately. Disabling the chatbot (Option B) halts all user interactions, preventing further offensive outputs while the security team investigates the root cause. This aligns with the principle of containment before remediation in incident response.

Exam trap

The AI0-001 exam often tests the principle that immediate containment (disabling the system) must precede any corrective action like rolling back or adding filters, because candidates mistakenly think a technical fix (rollback or filter) is faster than shutting down the service.

How to eliminate wrong answers

Option A is wrong because deleting the training data is a destructive action that may destroy forensic evidence needed to understand why the model misbehaved; it also does not stop the chatbot from generating offensive responses in the meantime. Option C is wrong because rolling back to a previous model version assumes the issue is in the model weights, but the offensive behavior could stem from the data update itself or a configuration change, and rolling back might reintroduce other vulnerabilities or not address the root cause. Option D is wrong because adding a content filter is a reactive, post-hoc mitigation that does not stop the ongoing generation of offensive responses; filters can be bypassed and do not address the underlying model or data corruption.

54
MCQmedium

A healthcare AI system used for diagnosis shows a significant accuracy difference between demographic groups. Which technique should be applied to directly reduce this bias during model training?

A.Ignore the disparity as long as overall accuracy is acceptable
B.Retrain the model with more data from the underperforming group
C.Apply adversarial debiasing during training
D.Remove demographic attributes from the training data
AnswerC

Adversarial debiasing explicitly penalizes the model for encoding demographic information, reducing bias.

Why this answer

Adversarial debiasing directly reduces bias during model training by introducing an adversarial network that attempts to predict the protected attribute (e.g., demographic group) from the model's predictions. The primary model is trained to maximize accuracy while simultaneously minimizing the adversary's ability to infer the protected attribute, thereby forcing the model to learn representations that are invariant to that attribute. This technique directly addresses the accuracy disparity by encoding fairness as an optimization objective, unlike post-hoc or data-level approaches.

Exam trap

The AI0-001 exam often tests the misconception that 'fairness through unawareness' (removing demographic attributes) is sufficient to eliminate bias, but the trap here is that proxy variables and correlated features can still cause disparate impact, making adversarial debiasing a more robust in-processing technique.

How to eliminate wrong answers

Option A is wrong because ignoring the disparity violates ethical AI principles and regulatory requirements (e.g., HIPAA, FDA guidelines for clinical AI), and overall accuracy can mask significant subgroup performance drops that lead to misdiagnosis. Option B is wrong because simply adding more data from the underperforming group does not guarantee removal of spurious correlations or biased representations; it may even amplify existing biases if the data contains systematic label noise or confounding variables. Option D is wrong because removing demographic attributes (often called 'fairness through unawareness') is ineffective, as proxy variables (e.g., ZIP code, socioeconomic indicators) can still encode the protected attribute, and the model may learn biased correlations from remaining features.

55
MCQeasy

An organization wants to ensure its AI systems comply with new regulations requiring explanations for automated decisions. Which governance practice is most directly relevant?

A.Implementing differential privacy
B.Deploying explainability tools
C.Conducting bias audits
D.Establishing an AI ethics board
AnswerB

Explainability tools generate explanations for individual decisions, meeting regulatory requirements.

Why this answer

Deploying explainability tools (B) is the most directly relevant governance practice because the regulation specifically requires explanations for automated decisions. Explainability tools, such as LIME or SHAP, generate human-interpretable justifications for model outputs, enabling compliance with transparency mandates. This directly addresses the need to understand and communicate why a particular decision was made, unlike other practices that focus on privacy, fairness, or oversight.

Exam trap

The AI0-001 exam often tests the distinction between governance practices that are about oversight (ethics board) or data protection (differential privacy) versus those that directly implement a specific technical requirement (explainability), leading candidates to choose a broader or unrelated option.

How to eliminate wrong answers

Option A is wrong because differential privacy is a technique for protecting individual data points by adding noise to queries or training data, not for generating explanations for decisions; it addresses privacy compliance, not explainability. Option C is wrong because bias audits detect and measure unfairness or discrimination in model outcomes, but they do not provide per-decision explanations required by the regulation; they focus on fairness, not transparency. Option D is wrong because establishing an AI ethics board provides high-level governance and policy oversight, but it does not directly implement the technical capability to produce explanations for individual automated decisions, which is the core regulatory requirement.

56
MCQhard

An organization uses an AI-based hiring tool. To prevent bias, they want to ensure the model's decisions are explainable. Which approach is most suitable?

A.Use reinforcement learning with fairness constraints
B.Use a simpler interpretable model like logistic regression
C.Use a black-box deep learning model with SHAP explanations
D.Use ensemble methods with feature importance
AnswerB

Simple models are inherently explainable.

Why this answer

A simpler interpretable model like logistic regression provides inherent transparency—its coefficients directly show the weight and direction of each input feature on the hiring decision. This makes it easy for auditors and stakeholders to verify that the model is not using protected attributes (e.g., race, gender) in a biased way, without needing post-hoc explanation tools. The key is that the model itself is interpretable by design, not just explained after the fact.

Exam trap

The AI0-001 exam often tests the distinction between a model that is inherently interpretable (like logistic regression) versus a model that is explained post-hoc (like SHAP on a deep network), where the trap is that candidates assume any explanation method makes a black-box model 'explainable' in the same way.

How to eliminate wrong answers

Option A is wrong because reinforcement learning with fairness constraints focuses on optimizing a reward signal over time, which is not designed for static, explainable decision-making in hiring; it also introduces complexity that undermines the goal of straightforward explainability. Option C is wrong because using a black-box deep learning model with SHAP explanations still relies on post-hoc approximations that can be inaccurate or misleading, and SHAP values do not guarantee that the model's internal logic is free from bias—they only approximate feature contributions. Option D is wrong because ensemble methods with feature importance (e.g., random forest) provide only global importance scores that can be unstable and do not offer per-decision transparency; they also fail to reveal how features interact in a specific hiring outcome.

57
Multi-Selectmedium

Which THREE of the following are key principles of AI ethics as defined by major frameworks?

Select 3 answers
A.Transparency
B.Scalability
C.Accountability
D.Latency
E.Fairness
AnswersA, C, E

Transparency is about openness in AI systems' workings and decisions.

Why this answer

Transparency is a core principle of AI ethics because it requires that AI systems be open about their purpose, data sources, and decision-making processes. Major frameworks like the OECD AI Principles and the EU Ethics Guidelines for Trustworthy AI emphasize transparency to enable auditability and informed consent. Without transparency, stakeholders cannot verify that an AI system operates as intended or identify potential biases.

Exam trap

The AI0-001 exam often tests candidates by mixing technical performance metrics (scalability, latency) with ethical principles, expecting you to recognize that only value-based concepts like transparency, accountability, and fairness belong to AI ethics frameworks.

58
MCQeasy

Which practice best ensures AI systems comply with regulations like GDPR?

A.Using open-source models only
B.Regular vulnerability scans
C.Data minimization and anonymization
D.Hiring more data scientists
AnswerC

Directly supports GDPR requirements.

Why this answer

Data minimization and anonymization directly align with GDPR's core principles, such as Article 5(1)(c) which mandates that personal data be 'adequate, relevant and limited to what is necessary.' By collecting only essential data and applying techniques like k-anonymity or differential privacy, AI systems reduce the risk of re-identification and ensure compliance with data protection by design and by default (Article 25). This practice is a foundational governance measure, not a reactive or staffing solution.

Exam trap

The AI0-001 exam often tests the misconception that security practices (like vulnerability scans) are sufficient for privacy compliance, but GDPR specifically requires proactive data governance measures like minimization and anonymization, not just reactive security controls.

How to eliminate wrong answers

Option A is wrong because using open-source models only does not inherently ensure GDPR compliance; open-source models can still process excessive personal data or lack proper anonymization, and licensing terms do not substitute for regulatory adherence. Option B is wrong because regular vulnerability scans address security vulnerabilities (e.g., CVE patching) but do not enforce data minimization, purpose limitation, or anonymization required by GDPR; they are a security practice, not a privacy governance practice. Option D is wrong because hiring more data scientists does not guarantee compliance; without implementing specific technical controls like anonymization or data minimization, additional personnel cannot mitigate systemic privacy risks or meet GDPR's accountability requirements.

59
MCQeasy

Which ethical concern is most directly associated with AI systems that fully automate decision-making without human oversight?

A.Loss of human autonomy
B.Data storage costs
C.Job displacement
D.Environmental impact
AnswerA

Automated decisions remove human judgment, reducing autonomy and accountability.

Why this answer

Lack of human oversight can lead to ethical issues like biased decisions or unfair outcomes without recourse.

60
Multi-Selecteasy

Which TWO of the following are common threats to AI model security?

Select 2 answers
A.SQL injection
B.Data poisoning
C.Adversarial examples
D.Distributed denial-of-service (DDoS)
E.Phishing attacks
AnswersB, C

Malicious data inserted during training to corrupt model.

Why this answer

B is correct because data poisoning involves an attacker injecting malicious data into the training set to corrupt the model's learning process, causing it to make incorrect predictions or classifications. This directly undermines the integrity of the AI model by manipulating its foundational training data.

Exam trap

The AI0-001 exam often tests the distinction between traditional IT security threats (like SQL injection or DDoS) and AI-specific threats (like data poisoning and adversarial examples), so candidates may incorrectly select familiar network or application attacks instead of recognizing the unique AI attack vectors.

61
MCQeasy

A cybersecurity analyst monitors an AI chatbot that frequently produces offensive responses when given specific prompts. The development team suspects an adversarial attack. Which mitigation strategy is most effective against such prompt injection attacks?

A.Retrain the model on a larger, curated dataset
B.Encrypt all communication between users and the chatbot
C.Reduce the model's number of parameters
D.Implement input validation and sanitization
AnswerD

Validating inputs can neutralize injection attempts.

Why this answer

Prompt injection attacks exploit the model's inability to distinguish between user input and system instructions. Input validation and sanitization (e.g., filtering special characters, enforcing strict schema checks, and using allowlists) directly neutralize malicious payloads before they reach the model's inference engine, preventing the model from executing unintended commands.

Exam trap

The AI0-001 exam often tests the misconception that retraining or model size adjustments can fix security vulnerabilities, when in fact the issue lies in input handling and trust boundaries, not the model's training data or architecture.

How to eliminate wrong answers

Option A is wrong because retraining on a larger dataset does not address the root cause of prompt injection; the model will still be vulnerable to crafted inputs that bypass its instruction-following boundaries. Option B is wrong because encryption protects data in transit but does not inspect or filter the content of prompts, so it cannot prevent injection attacks. Option C is wrong because reducing the number of parameters degrades model performance and does not mitigate injection; the attack exploits input handling, not model capacity.

62
MCQmedium

Refer to the exhibit. A security analyst reviews the monitoring log for an AI fraud detection model. Which of the following is the most likely cause of the multiple alerts?

A.Data poisoning of the training dataset
B.A network hardware failure
C.An adversarial attack attempt
D.A scheduled model retraining process
AnswerC

Multiple concurrent alerts indicate active probing or evasion.

Why this answer

An adversarial attack attempt is the most likely cause because the monitoring log shows multiple alerts triggered by subtle, crafted perturbations in input data designed to cause the AI fraud detection model to misclassify legitimate transactions as fraudulent or vice versa. Unlike data poisoning, which corrupts the training dataset over time, adversarial attacks target the model's inference phase, exploiting its sensitivity to small input variations to produce incorrect outputs without altering the underlying training data.

Exam trap

The AI0-001 exam often tests the distinction between data poisoning (training-phase attack) and adversarial attacks (inference-phase attack), and the trap here is that candidates confuse the sudden onset of alerts with a training data issue, overlooking that adversarial attacks specifically target the model's decision boundary during live operation.

How to eliminate wrong answers

Option A is wrong because data poisoning involves injecting malicious samples into the training dataset to corrupt the model's learning process, which would manifest as a gradual degradation in model accuracy over time, not as a sudden burst of multiple alerts during inference. Option B is wrong because a network hardware failure would typically cause connectivity issues, latency spikes, or packet loss, not specific, targeted misclassifications in an AI model's output. Option D is wrong because a scheduled model retraining process is a planned maintenance activity that updates the model with new data, which would not generate alerts unless the retraining itself introduces errors, but the scenario describes multiple alerts from the monitoring log, not a retraining event.

63
MCQhard

A financial services firm deploys an AI system to screen loan applications. The model was trained on historical data that reflected biased lending practices. After deployment, a regulatory body investigates and finds that the model denies loans at a disproportionately higher rate to a protected demographic group. The firm must address this issue while maintaining compliance with fair lending laws. The Chief AI Officer proposes four possible actions. Which action is the most appropriate first step?

A.Retrain the model using a debiased dataset and implement fairness-aware algorithms, then validate with fairness metrics
B.Document the model's predictions and submit a report to the regulator explaining the historical dataset bias
C.Immediately deploy a rule-based system to manually review all denial decisions from the AI system
D.Disclose the bias findings to all rejected applicants and offer them priority reconsideration
AnswerA

This directly addresses the biased model and demonstrates a commitment to fairness.

Why this answer

The most appropriate first step because it directly addresses the root cause of biased predictions by retraining the model on a debiased dataset and implementing fairness-aware algorithms. This proactive approach aligns with regulatory expectations to correct systemic bias. Option B (documenting) is reactive and does not fix the underlying issue.

Option C (rule-based manual review) is inefficient, costly, and may still produce inconsistent decisions. Option D (disclosing to applicants) could be part of a remediation plan but is premature without first correcting the model.

64
MCQmedium

An AI system used for resume screening is found to consistently rank male candidates higher than female candidates with similar qualifications. The HR director wants to remediate this bias without significantly reducing model accuracy. Which technique should be applied?

A.Apply adversarial debiasing to the model during training.
B.Use a random selection of candidates to avoid bias.
C.Remove the gender feature from the dataset and retrain.
D.Collect more training data from underrepresented groups.
AnswerA

Adversarial debiasing reduces bias by training the model to be unable to predict protected attributes from its predictions.

Why this answer

Adversarial debiasing is the correct technique because it directly addresses bias during training by introducing an adversarial network that attempts to predict the protected attribute (e.g., gender) from the model's predictions. The main model is trained to maximize accuracy while minimizing the adversary's ability to infer the protected attribute, thereby reducing bias without a significant drop in predictive performance. This approach is more effective than simple feature removal or data collection because it actively learns to remove correlations between the protected attribute and the output.

Exam trap

CompTIA often tests the misconception that simply removing the protected attribute (e.g., gender) from the dataset is sufficient to eliminate bias, but candidates must understand that bias can persist through correlated features (proxy discrimination).

How to eliminate wrong answers

Option B is wrong because random selection of candidates would destroy the model's predictive accuracy entirely, as it ignores all qualifications and job-relevant features, which is not a valid remediation technique. Option C is wrong because simply removing the gender feature does not eliminate bias; the model can still learn gender proxies from correlated features such as years of experience, education, or job titles, leading to indirect discrimination. Option D is wrong because collecting more data from underrepresented groups may improve representation but does not guarantee removal of existing bias in the model's decision boundary; it can even introduce new imbalances if not handled carefully, and it does not actively debias the training process.

65
MCQeasy

A startup develops an AI recruiting tool that screens resumes. After deployment, they receive a complaint from a candidate who claims the system rejected them due to age discrimination. The startup has no formal AI governance process. They want to quickly assess and remediate the issue. The dataset includes age as a feature. What should they do first?

A.Conduct a bias analysis to measure the model's impact on different age groups
B.Apologize to the candidate and offer a manual review of their resume
C.Immediately remove age from the feature set and retrain the model
D.Ignore the complaint because age is a legitimate business requirement
AnswerA

Analysis identifies whether and where bias exists before taking action.

Why this answer

The first step in addressing a potential bias issue is to conduct a bias analysis to measure the model's impact on different age groups. This allows the startup to quantify the extent of any discriminatory behavior before taking remediation steps, ensuring that actions are data-driven and targeted. Without this analysis, any subsequent fix (like removing age) might be premature or ineffective, and could even introduce new biases.

Exam trap

CompTIA often tests the misconception that removing a protected attribute (like age) is sufficient to eliminate bias, when in fact proxy features can perpetuate discrimination, making a bias analysis the necessary first step.

How to eliminate wrong answers

Option B is wrong because apologizing and offering a manual review is a reactive customer service response that does not address the root cause of the bias in the model; it fails to assess or remediate the systemic issue. Option C is wrong because immediately removing age from the feature set and retraining the model is a hasty action that could mask the problem without understanding whether age is a proxy for other correlated features (e.g., years of experience), potentially leading to unintended discrimination or model degradation. Option D is wrong because ignoring the complaint outright violates ethical AI principles and regulatory requirements (such as EEOC guidelines), and age is not a legitimate business requirement for resume screening unless it is a bona fide occupational qualification, which is rarely the case.

66
MCQhard

During a penetration test, a security engineer discovers that an AI-powered chatbot can be tricked into revealing sensitive customer data by using specially crafted prompts. What type of attack is this, and what is the best mitigation?

A.Prompt injection attack; implement input validation and context sanitization
B.Model inversion attack; apply differential privacy during training
C.Data poisoning attack; implement strict access controls
D.Membership inference attack; add noise to model outputs
AnswerA

Prompt injection exploits the model via crafted inputs; validation prevents it.

Why this answer

This is a prompt injection attack, where an attacker crafts inputs that cause the AI model to override its original instructions or constraints, leading to unintended behavior such as revealing sensitive data. The best mitigation is input validation and context sanitization, which filters or neutralizes malicious prompt content before it reaches the model, preventing the injection from succeeding.

Exam trap

The AI0-001 exam often tests the distinction between attacks that occur during training (e.g., data poisoning, model inversion) versus those that occur during inference (e.g., prompt injection), leading candidates to confuse the attack phase and choose a wrong mitigation.

How to eliminate wrong answers

Option B is wrong because a model inversion attack reconstructs training data from model outputs, not by manipulating prompts, and its mitigation (differential privacy) does not address prompt-level manipulation. Option C is wrong because data poisoning involves corrupting the training data to influence model behavior, not exploiting the model at inference time via prompts, and strict access controls are a general security measure, not a direct mitigation for prompt injection. Option D is wrong because a membership inference attack determines if a specific record was used in training, not by tricking the model with prompts, and adding noise to outputs is a privacy technique, not a defense against prompt injection.

67
Multi-Selectmedium

Which TWO practices are most effective for ensuring the security of an AI model against adversarial attacks?

Select 2 answers
A.Encrypting the model weights
B.Continuous model monitoring
C.Input sanitization and validation
D.Adversarial training
E.Rate limiting API access
AnswersC, D

Sanitization removes or normalizes inputs that may contain adversarial perturbations.

Why this answer

Input sanitization and validation (C) is correct because it prevents adversarial inputs—such as specially crafted perturbations or injection strings—from reaching the model's inference pipeline. By filtering, encoding, or rejecting malicious data at the application layer, the model's decision boundary is protected from manipulation. This is a fundamental defense-in-depth measure against evasion and poisoning attacks.

Exam trap

CompTIA often tests the distinction between reactive monitoring (B) and proactive defenses (C and D), and candidates mistakenly choose rate limiting (E) thinking it blocks all attacks, but it only throttles frequency, not content.

68
MCQeasy

A company is developing an AI chatbot for customer service. The legal team is concerned that the chatbot might generate responses that violate privacy regulations. Which governance mechanism should be implemented to mitigate this risk?

A.Use explainable AI techniques to understand why the chatbot generates certain responses.
B.Encrypt all chatbot conversations at rest and in transit.
C.Implement a human-in-the-loop review process for high-risk responses.
D.Anonymize the training data used to train the chatbot.
AnswerC

Human review can catch and block responses that violate privacy regulations before they are sent to customers.

Why this answer

A human-in-the-loop (HITL) review process directly addresses the risk of privacy violations by ensuring that high-risk responses are reviewed by a human before being sent to the customer. This governance mechanism provides a safety net for unpredictable outputs from the generative AI model, which may inadvertently leak personally identifiable information (PII) or violate data protection regulations like GDPR or CCPA. Unlike technical controls that only reduce the attack surface, HITL offers real-time compliance oversight for the chatbot's natural language generation (NLG) outputs.

Exam trap

CompTIA often tests the distinction between preventive controls (like HITL) and detective or protective controls (like encryption or anonymization), and the trap here is that candidates confuse data security measures (encryption, anonymization) with governance mechanisms that directly control model output behavior.

How to eliminate wrong answers

Option A is wrong because explainable AI (XAI) techniques, such as SHAP or LIME, provide post-hoc interpretability of model decisions but do not prevent the generation of privacy-violating responses; they only help diagnose why a violation occurred after the fact. Option B is wrong because encrypting chatbot conversations at rest (e.g., using AES-256) and in transit (e.g., using TLS 1.3) protects data from external interception but does not control the content generated by the chatbot itself, which is the source of the privacy risk. Option D is wrong because anonymizing training data (e.g., via k-anonymity or differential privacy) reduces the risk of the model memorizing PII, but it does not prevent the chatbot from generating new responses that violate privacy regulations through inference or context-based leakage during inference.

69
Multi-Selectmedium

Which THREE of the following are key principles of trustworthy AI as defined by major regulatory bodies?

Select 3 answers
A.Fairness and non-discrimination
B.Transparency and explainability
C.Maximum profitability
D.Proprietary secrecy
E.Accountability
AnswersA, B, E

AI systems should avoid bias and ensure equitable treatment.

Why this answer

Fairness and non-discrimination (A) is a core principle of trustworthy AI because regulatory bodies like the European Commission's High-Level Expert Group on AI and the OECD require that AI systems do not perpetuate or amplify biases against protected groups. This involves implementing bias detection and mitigation techniques during model training and validation, such as using fairness metrics like demographic parity or equalized odds to ensure equitable outcomes across different demographic segments.

Exam trap

The AI0-001 exam often tests the distinction between ethical principles and business goals, so candidates mistakenly select 'maximum profitability' or 'proprietary secrecy' because they confuse corporate interests with regulatory requirements for trustworthy AI.

70
Multi-Selecthard

Which TWO of the following are effective techniques to detect data poisoning attacks in a training dataset?

Select 2 answers
A.Performing cross-validation to check for inconsistent model performance.
B.Normalizing features to zero mean and unit variance.
C.Using ensemble methods like random forest for training.
D.Applying PCA to reduce dimensionality.
E.Statistical outlier detection on feature distributions.
AnswersA, E

Poisoned data often causes model performance to vary significantly across folds.

Why this answer

Cross-validation can reveal data poisoning by exposing inconsistent model performance across folds. If a poisoned subset causes the model to perform well on certain folds but poorly on others, it indicates that the training data may have been tampered with, as the model's behavior becomes unstable due to maliciously injected samples.

Exam trap

CompTIA often tests the distinction between techniques that detect poisoning (like cross-validation and outlier detection) versus techniques that only mitigate or preprocess data, leading candidates to mistakenly select normalization or dimensionality reduction as detection methods.

71
MCQmedium

A company implements an AI-based chatbot for customer service. After deployment, customers report that the chatbot sometimes uses offensive language. The development team reviews the training data and finds no explicit offensive content. What is the most likely explanation?

A.There is a bug in the deployment pipeline
B.The model is overfitting to rare examples
C.The model learned biased language patterns from the training corpus
D.The training data was poisoned by an attacker
AnswerC

The model may have learned offensive language from context, e.g., associating certain demographics with negative terms.

Why this answer

The chatbot's offensive language likely stems from biased or toxic patterns present in the training corpus, even if no explicit offensive content was flagged. Large language models learn statistical associations from their training data, and if the corpus contains subtle biases, stereotypes, or indirect toxic language, the model can reproduce these patterns in its responses. This is a well-known issue in AI ethics and governance, where models inadvertently amplify societal biases embedded in the data.

Exam trap

The AI0-001 exam often tests the distinction between explicit data contamination (poisoning) and implicit bias learned from benign-looking data, so the trap here is assuming that the absence of explicit offensive content in the training data means the model cannot produce offensive output.

How to eliminate wrong answers

Option A is wrong because a deployment pipeline bug would typically cause functional failures (e.g., model not loading, incorrect API calls) or output errors, not the generation of offensive language that is contextually coherent. Option B is wrong because overfitting to rare examples would cause the model to memorize specific training instances, leading to exact or near-exact reproductions of those rare inputs, not the generation of novel offensive language that was not present in the training data. Option D is wrong because data poisoning requires an attacker to deliberately inject malicious samples into the training set, which would likely leave traces of explicit offensive content; the scenario states no explicit offensive content was found, making this less likely than the model learning implicit biases from the existing corpus.

72
MCQmedium

A healthcare organization uses an AI model to predict patient readmission risk. To comply with patient privacy regulations, they apply differential privacy during training. What is the primary trade-off of using differential privacy?

A.Increased training time for reduced bias
B.Lower interpretability for higher fairness
C.Faster inference for lower memory usage
D.Reduced model accuracy for increased privacy
AnswerD

Noise injection lowers accuracy but bounds privacy loss.

Why this answer

Differential privacy works by adding calibrated noise to the training process or model outputs, which directly reduces the model's accuracy in exchange for a quantifiable privacy guarantee (e.g., ε-differential privacy). This trade-off is fundamental: stronger privacy (lower ε) requires more noise, which degrades predictive performance. The healthcare organization must balance the need to protect patient data against the clinical utility of accurate readmission predictions.

Exam trap

The AI0-001 exam often tests the misconception that differential privacy primarily reduces bias or improves fairness, when in fact its core trade-off is accuracy for privacy, and fairness can be negatively impacted by the added noise.

How to eliminate wrong answers

Option A is wrong because differential privacy does not primarily target bias reduction; it addresses privacy, and increased training time is a secondary implementation cost, not the primary trade-off. Option B is wrong because differential privacy does not inherently lower interpretability or increase fairness; it may even reduce fairness if noise disproportionately affects minority subgroups, and interpretability is a separate concern. Option C is wrong because differential privacy does not improve inference speed or reduce memory usage; it typically adds computational overhead during training and does not affect inference latency or memory footprint.

73
MCQhard

An AI system used for resume screening is found to consistently reject female candidates for technical roles. The data science team retrains the model after removing the 'gender' feature, but the bias persists. What is the most likely cause?

A.The model architecture is too complex
B.The model uses proxy variables that correlate with gender
C.The training data still contains historical hiring bias
D.The evaluation metric does not measure fairness
AnswerB

Features like 'years of experience gaps' or 'extracurricular activities' may correlate with gender and perpetuate bias.

Why this answer

Even after removing the explicit 'gender' feature, the model can still learn biased patterns from proxy variables that correlate strongly with gender, such as years of experience (which may be lower for women due to career breaks), educational institutions attended, or even hobbies listed on resumes. These proxies act as surrogates for the protected attribute, allowing the model to effectively discriminate despite the feature being removed. This is a well-known phenomenon in algorithmic fairness called 'redundant encoding' or 'proxy discrimination.'

Exam trap

The AI0-001 exam often tests the concept that simply removing a protected attribute is insufficient to eliminate bias, because proxy variables can act as surrogates, and candidates mistakenly think retraining on the same data without the feature will solve the problem.

How to eliminate wrong answers

Option A is wrong because model complexity does not inherently cause bias; a complex model may overfit but that does not explain persistent gender bias after removing the gender feature. Option C is wrong because while historical hiring bias in training data can contribute to bias, the question states the bias persists after retraining, implying the root cause is not simply the data but the model's use of proxy features that encode the same bias. Option D is wrong because the evaluation metric not measuring fairness is a detection issue, not the root cause of the bias persisting; the bias would still exist even if a fairness metric were used.

74
MCQhard

A national security agency uses AI to analyze surveillance data for threat detection. The system is deployed in a high-stakes environment where false negatives could lead to missed threats, and false positives waste analyst time. Recently, a known hacker group attempted to evade detection by subtly modifying their communication patterns over time, a form of adversarial evasion. The agency wants to harden the system while maintaining performance. The system uses a deep neural network. Which mitigation strategy is most appropriate?

A.Switch to an unsupervised learning approach to detect anomalies
B.Simplify the model to a logistic regression to reduce the attack surface
C.Perform adversarial training using the hacker group's known evasion patterns
D.Add random noise to all input data to confuse evasion attempts
AnswerC

Adversarial training directly hardens the model against those patterns.

Why this answer

Adversarial training is the most appropriate mitigation because it directly incorporates known evasion patterns into the training process, making the deep neural network robust to the hacker group's subtle modifications. By retraining the model on adversarial examples, the decision boundary is hardened against these specific attacks without sacrificing overall detection performance. This approach is a standard defense in high-stakes security AI, balancing false positive and false negative rates while countering adversarial evasion.

Exam trap

CompTIA often tests the misconception that simplifying a model (e.g., to logistic regression) reduces attack surface, but in adversarial evasion, simpler models are actually more vulnerable because they lack the capacity to learn robust decision boundaries against crafted perturbations.

How to eliminate wrong answers

Option A is wrong because switching to unsupervised anomaly detection does not inherently defend against adversarial evasion; it may still be fooled by subtly modified patterns and often increases false positives due to lack of labeled threat data. Option B is wrong because simplifying to logistic regression reduces model capacity, making it less able to learn complex threat patterns and more susceptible to evasion, not less. Option D is wrong because adding random noise to input data degrades signal quality, increasing both false positives and false negatives, and does not target the specific evasion patterns used by the hacker group.

75
MCQhard

During a red-team exercise on an AI model, testers successfully extracted training data. Which vulnerability is this?

A.Membership inference
B.Model inversion
C.Adversarial example
D.Data poisoning
AnswerB

Model inversion reconstructs training data.

Why this answer

Model inversion attacks allow an adversary to reconstruct training data by exploiting the model's learned representations. In this scenario, the testers successfully extracted training data, which is the hallmark of a model inversion attack, not just inferring membership.

Exam trap

The AI0-001 exam often tests the distinction between 'extracting data' (model inversion) and 'inferring presence' (membership inference), so candidates mistakenly choose membership inference when the question explicitly states data was extracted.

How to eliminate wrong answers

Option A is wrong because membership inference only determines whether a specific data point was part of the training set, not extract the actual data. Option C is wrong because adversarial examples involve crafting inputs to cause misclassification, not extracting training data. Option D is wrong because data poisoning involves corrupting the training data to manipulate model behavior, not extracting existing training data.

Page 1 of 2 · 78 questions totalNext →

Ready to test yourself?

Try a timed practice session using only AI Security, Ethics and Governance questions.