- A
Adjust the decision threshold for the affected group
Why wrong: Post-hoc threshold adjustments can reduce disparity but often reduce overall model performance and may be seen as unfair.
- B
Remove the zip code feature from the model
Why wrong: Zip code is a proxy for race, but other features like income may also be proxies; removal alone is insufficient.
- C
Apply sample weighting to balance the demographic groups
Why wrong: Reweighting can reduce bias but may lead to loss of information and hurt overall accuracy.
- D
Use adversarial debiasing during model training
Adversarial debiasing forces the model to learn representations that are invariant to sensitive attributes, reducing bias with minimal accuracy loss.
Adversarial Debiasing for Fair AI: Mitigating Demographic Bias
This AI0-001 practice question tests your understanding of ai concepts and foundations. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A government agency is deploying an AI model to screen loan applications. The model uses features like income, credit score, employment history, and zip code. During fairness auditing, the model is found to deny a disproportionately high number of applicants from a particular demographic group, even when controlling for legitimate financial factors. The agency wants to mitigate this bias without significantly reducing overall accuracy. Which approach should the data scientist prioritize?
Quick Answer
The answer is adversarial debiasing during model training, as this in-processing technique directly addresses fairness bias mitigation by training the model to ignore demographic attributes while preserving predictive power. Adversarial debiasing works by pitting a primary model against an adversary that tries to predict the sensitive attribute from the model’s internal representations; the primary model is penalized when the adversary succeeds, forcing it to learn features uncorrelated with demographics. On the CompTIA AI+ AI0-001 exam, this scenario tests your understanding of in-processing bias mitigation versus simpler but flawed approaches like removing sensitive features—a common trap, since correlated proxies like zip code can reintroduce bias. Remember that adversarial debiasing is the only method that actively removes demographic information from the model’s learned representations without sacrificing overall accuracy. A useful memory tip: think of it as a “fairness tug-of-war” where the model and adversary pull in opposite directions, ensuring the final model stays blind to protected traits.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Use adversarial debiasing during model training
Adversarial debiasing is the correct approach because it directly optimizes the model to remove sensitive information (e.g., demographic group membership) from its internal representations while preserving predictive accuracy. This technique trains a primary model to predict the target (loan approval) and an adversary to predict the protected attribute from the model's learned features, forcing the primary model to learn representations that are both accurate and unbiased. It addresses the root cause of bias—correlation between protected attributes and model predictions—without requiring post-hoc threshold adjustments or sacrificing overall performance.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Adjust the decision threshold for the affected group
Why it's wrong here
Post-hoc threshold adjustments can reduce disparity but often reduce overall model performance and may be seen as unfair.
- ✗
Remove the zip code feature from the model
Why it's wrong here
Zip code is a proxy for race, but other features like income may also be proxies; removal alone is insufficient.
- ✗
Apply sample weighting to balance the demographic groups
Why it's wrong here
Reweighting can reduce bias but may lead to loss of information and hurt overall accuracy.
- ✓
Use adversarial debiasing during model training
Why this is correct
Adversarial debiasing forces the model to learn representations that are invariant to sensitive attributes, reducing bias with minimal accuracy loss.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Cisco often tests the misconception that simply removing a sensitive feature (like zip code) or reweighting data is sufficient to eliminate bias, when in reality bias can be encoded through correlated proxies and requires algorithmic debiasing during training.
Detailed technical explanation
How to think about this question
Adversarial debiasing works by adding a gradient reversal layer during training: the primary model minimizes its loss while the adversary maximizes its ability to predict the protected attribute from the primary model's hidden layer. This creates a minimax game that forces the primary model to discard demographic information, effectively learning fair representations. In practice, this technique is sensitive to the adversary's capacity and learning rate; if the adversary is too weak, bias persists, and if too strong, the primary model may lose predictive power.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
AI Concepts and Foundations — study guide chapter
Learn the concepts, then practise the questions
- →
AI Concepts and Foundations practice questions
Targeted practice on this topic area only
- →
All AI0-001 questions
1,000 questions across all exam domains
- →
CompTIA AI+ AI0-001 study guide
Full concept coverage aligned to exam objectives
- →
AI0-001 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related AI0-001 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
AI Infrastructure and Technologies practice questions
Practise AI0-001 questions linked to AI Infrastructure and Technologies.
AI Security practice questions
Practise AI0-001 questions linked to AI Security.
AI Concepts and Foundations practice questions
Practise AI0-001 questions linked to AI Concepts and Foundations.
AI Concepts and Techniques practice questions
Practise AI0-001 questions linked to AI Concepts and Techniques.
Machine Learning and Deep Learning practice questions
Practise AI0-001 questions linked to Machine Learning and Deep Learning.
AI Models and Data Engineering practice questions
Practise AI0-001 questions linked to AI Models and Data Engineering.
Implementing AI Solutions practice questions
Practise AI0-001 questions linked to Implementing AI Solutions.
AI Implementation and Operations practice questions
Practise AI0-001 questions linked to AI Implementation and Operations.
AI Security, Ethics and Governance practice questions
Practise AI0-001 questions linked to AI Security, Ethics and Governance.
AI Governance and Ethics practice questions
Practise AI0-001 questions linked to AI Governance and Ethics.
CompTIA A+ hardware practice questions
Practise AI0-001 questions linked to CompTIA A+ hardware.
CompTIA A+ mobile devices practice questions
Practise AI0-001 questions linked to CompTIA A+ mobile devices.
Practice this exam
Start a free AI0-001 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this AI0-001 question test?
AI Concepts and Foundations — This question tests AI Concepts and Foundations — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use adversarial debiasing during model training — Adversarial debiasing is the correct approach because it directly optimizes the model to remove sensitive information (e.g., demographic group membership) from its internal representations while preserving predictive accuracy. This technique trains a primary model to predict the target (loan approval) and an adversary to predict the protected attribute from the model's learned features, forcing the primary model to learn representations that are both accurate and unbiased. It addresses the root cause of bias—correlation between protected attributes and model predictions—without requiring post-hoc threshold adjustments or sacrificing overall performance.
What should I do if I get this AI0-001 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more ways this is tested on AI0-001
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. Based on the exhibit, what issue should the team address?
easy- A.Model accuracy below threshold
- ✓ B.Potential fairness bias across groups
- C.High latency
- D.Low throughput
Why B: Option B is correct because the exhibit likely shows a confusion matrix or performance metrics broken down by demographic groups (e.g., race, gender), revealing that the model's false positive or false negative rates differ significantly across groups. This disparity indicates a potential fairness bias, which must be addressed to ensure equitable outcomes, especially in high-stakes AI applications like hiring or lending.
Keep practising
More AI0-001 practice questions
- A data science team uses a CI/CD pipeline for ML models. They need to ensure that each model version is traceable back t…
- A company is deploying a large language model for customer support. They want to reduce the number of off-topic or nonse…
- A data scientist fine-tunes a large language model for a legal document summarization task. After fine-tuning, the model…
- A team is designing an AI system for autonomous driving. They need to decide between an end-to-end deep learning approac…
- A team is using Kubeflow to orchestrate ML workflows on Kubernetes. They need to ensure reproducibility, track experimen…
- A healthcare organization deploys an AI system to analyze medical images and detect anomalies. During a routine audit, t…
Last reviewed: Jul 4, 2026
This AI0-001 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI0-001 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.