AIGP:人工智能治理专业人员 Practice Exam — AlGP: Artificial Intelligence Governance Professional

1. The question bank is cloud‑connected and updates automatically; no manual re‑acquisition is required.

2. Start practicing right after activating the question bank. It supports simultaneous use on websites and mini‑programs, with one‑click bilingual switching for each question.

3. Functions include online practice, mock tests, note‑taking, wrong‑question recording, etc., valid for one year.

4. Recommended practice order: Turn on review mode to browse questions → Complete sequential practice → Take mock exams for pre‑test self‑assessment.

5. Activation codes can be purchased by clicking Buy Now on the right or via our official Tmall flagship store.

6. For inquiries, contact customer service through mini‑program, WeChat, WhatsApp or LINE.

Exam information

1. Exam Version: BoK v2.1 (Effective February 2, 2026)

AIGP Body of Knowledge and Exam Blueprint

https://prod.iapp.org/media/pdf/certification/AIGP_Cert_BOK_2025_FINAL_v2.1.0.pdf


2. Language: English only


3. Question Format: 100 multiple‑choice questions (85 scored questions + 15 unscored pre‑test questions)


4. Duration: 165 minutes, including an optional 15‑minute mid‑session break


5. Passing Score: Scoring range of 100–500; a score of 300 or higher is required to pass


6. Delivery Method: Online remote proctoring or in‑person testing centers via Pearson VUE


7. Score Release: Preliminary results available immediately after the exam; digital certificate issued in approximately two weeks


8. Exam Fees

First‑time Exam: $649 (Member), $799 (Non‑member)

Retake Exam: $475 (Member), $625 (Non‑member)


9. Knowledge Domains (BoK v2.1)

- Foundational AI Concepts & Responsible AI Principles (16–20%): Fundamentals of AI systems, value creation and risks, ethical dimensions, governance roles and accountability structures

- AI Laws & Standards (19–23%): Application of applicable legislation, EU AI Act, NIST AI RMF, ISO/IEC 42001 and other standards

- AI Lifecycle Governance (21–25%): Data sourcing, model validation, deployment controls, post‑deployment monitoring

- Organizational AI Governance (21–25%): Establishing AI policies, stakeholder engagement, implementation of governance frameworks, performance evaluation


10. Certification Validity: Valid for two years upon passing; 20 CPE credits must be completed within the validity period

Professional Value:

- Globally recognized proof of professional competency in AI governance

- Suitable for roles in compliance, legal affairs, IT, risk management and related fields

- Supports enterprises in complying with AI regulatory requirements (e.g., the EU AI Act)

- Enhances professional authority in AI ethics, transparency and accountability

Sample questions

AIGP:人工智能治理专业人员 · Q1
Question #1
Machine learning is best described as a type of algorithm by which?
  • A.
    Systems can mimic human intelligence with the goal of performing routine tasks.
  • B.
    Systems can automatically improve from experience through predictive patterns.
  • C.
    Statistical inferences are drawn from a sample with the goal of predicting human intelligence.
  • D.
    Previously unknown properties are discovered in data and used to predict and make improvements in the data.

Answer: B

The suggested answer B aligns with the globally accepted formal definition of machine learning adopted in the All AIGP Questions certification core curriculum, which traces back to Arthur Samuel's foundational 1959 definition of ML as the field of study that gives computers the ability to learn without being explicitly programmed. The core distinguishing feature of ML algorithms as specified in AIGP Domain 1 (AI and ML Fundamentals) is their ability to iteratively improve performance on a target task as they are exposed to more training data (experience), by identifying and leveraging consistent predictive patterns in that data. This option directly captures the two non-negotiable attributes of ML algorithms: automatic improvement from experience, and reliance on learned predictive patterns, making it the most accurate description among the provided choices.

Option Analysis:
A. Incorrect. This describes the broader category of general artificial intelligence and rule-based task automation, not machine learning specifically. Per AIGP certification standards, mimicking human intelligence is a high-level goal of the broader AI field, not a defining characteristic of ML algorithms, which can be used for tasks that do not involve human intelligence mimicry, such as predictive maintenance or demand forecasting.
B. Correct. This option exactly matches the core definition of machine learning algorithms as specified in AIGP foundational content. ML algorithms learn predictive patterns from historical training data (experience) and automatically improve their performance on a given task as they process more data, with no requirement for manual rule updates by engineers.
C. Incorrect. Drawing statistical inferences from a sample is the core function of inferential statistics, a related but distinct field from machine learning per AIGP curricula. Additionally, the stated goal of predicting human intelligence is unrelated to the standard use case of ML algorithms, which focus on improving task performance rather than predicting human cognitive function.
D. Incorrect. Discovering unknown properties in raw data is the defining characteristic of data mining and knowledge discovery in databases (KDD), not machine learning. While ML algorithms may be used as a tool to support data mining workflows, the core description of ML as an algorithm type does not center on discovery of unknown data properties, so this option is not the best fit.

Key Concepts:
1. Core Machine Learning Definition: A foundational AIGP certification knowledge point that defines ML as a subset of artificial intelligence that enables systems to automatically improve performance on a specific task by learning patterns from training data, without explicit hard-coded rules for every possible scenario.
2. ML Subdomain Differentiation: A required baseline competency for AIGP candidates that distinguishes ML from related fields including general AI, inferential statistics, and data mining, to ensure correct classification of algorithm types and use cases.
3. Predictive Pattern Learning: The core operating mechanism of most ML algorithms, which involves identifying consistent, repeatable patterns in labeled or unlabeled training data to enable accurate future predictions and iterative performance gains, a core topic in AIGP ML fundamentals.

References:
IBM Machine Learning Topic Guide, https://www.ibm.com/topics/machine-learning
Google Cloud AI/ML Glossary, https://cloud.google.com/ai-platform/docs/glossary#machine-learning-ml
AIGP:人工智能治理专业人员 · Q2
Question #2
Random forest algorithms are in what type of machine learning model?
  • A.
    Symbolic.
  • B.
    Generative.
  • C.
    Discriminative.
  • D.
    Natural language processing.

Answer: C

This question assesses core AIGP certification knowledge of machine learning model categorization based on underlying learning objectives. Random forest is an ensemble supervised learning algorithm built from multiple decision trees trained via bootstrap aggregation (bagging). Its core design purpose is to learn a mapping from input features to target outputs (class labels for classification or continuous values for regression) by directly modeling the conditional probability P(Y|X) or the decision boundary between distinct output classes, which aligns with the standard definition of discriminative machine learning models as specified in AIGP core curricula. This functional design eliminates the other incorrect options, confirming option C as the correct answer. Option Analysis:
A. Incorrect. Symbolic AI models operate on explicit, human-defined rules and symbolic knowledge representations, rather than learning patterns directly from training data. Random forest is a statistical, data-driven model that infers decision rules from labeled training data without pre-programmed symbolic logic, so it does not fit the symbolic model category per AIGP foundational knowledge frameworks.
B. Incorrect. Generative machine learning models learn the joint probability distribution P(X,Y) of input features and outputs, or the marginal distribution of input features P(X) to generate new synthetic data samples. Random forest does not model the underlying distribution of input data and cannot generate new, realistic input samples, so it is not classified as a generative model.
C. Correct. Per AIGP core machine learning standards, discriminative models are optimized to predict target outputs given input features by learning either the conditional probability P(Y|X) or the explicit decision boundary between different output classes. Random forest is purpose-built for predictive classification and regression tasks by learning this exact input-to-output mapping, so it is formally categorized as a discriminative model.
D. Incorrect. Natural language processing (NLP) is an application domain of machine learning, not a type of machine learning model. While random forest can be applied to solve limited NLP tasks such as basic text classification, it is not inherently an NLP-specific model type, so this option misrepresents the question's request for model type categorization. Key Concepts:
1. Discriminative vs Generative Model Classification: A core AIGP knowledge point that categorizes supervised machine learning models by their primary learning objective. Discriminative models prioritize predictive performance for target outputs given inputs, while generative models prioritize modeling input data distributions to enable synthetic data generation and indirect prediction.
2. Random Forest Core Properties: An ensemble supervised learning algorithm that uses bagging of de-correlated decision trees to reduce overfitting, designed explicitly for predictive classification and regression tasks, falling under the discriminative model category per standard ML taxonomy.
3. ML Model Type vs Application Domain: A foundational AIGP concept that distinguishes between model categorization based on inherent architecture and learning objective, and categorization based on use case (such as NLP, computer vision) to avoid misclassification of general-purpose models based on their possible use cases. References:
1. Google Machine Learning Crash Course: Generative Models Overview, 2. scikit-learn Official Documentation: Ensemble Methods - Random Forest, https://scikit-learn.org/stable/modules/ensemble.html#forest
AIGP:人工智能治理专业人员 · Q3
Question #3
A company developed AI technology that can analyze text, video, images and sound to tag content, including the names of animals, humans and objects.What type of AI is this technology classified as?
  • A.
    Deductive inference.
  • B.
    Multi-modal model.
  • C.
    Transformative AI.
  • D.
    Expert system.

Answer: B

The scenario describes an AI system that processes four distinct types of unstructured data (text, video, images, sound) to generate standardized content tags. Per All AIGP Questions certification core knowledge, AI systems are categorized by their functional capabilities and input processing architectures, and this use case directly aligns with the definition of a multi-modal model. Multi-modal models are purpose-built to process, integrate, and interpret information from multiple disparate data formats (called modalities) simultaneously, which is exactly the capability described in the question, making option B the correct classification. Option Analysis:
A. Deductive inference is a logical reasoning methodology that draws specific, guaranteed conclusions from general, pre-established premises, rather than a category of AI classified by input processing capability. The scenario does not describe rule-based logical deduction, so this option is incorrect.
B. Multi-modal model is the correct classification. Per AIGP domain knowledge, a modality refers to a distinct type of data input, and multi-modal models are engineered to process and combine insights from two or more modalities. The described technology processes four separate modalities (text, images, video, audio) to perform content tagging, which perfectly matches the definition of a multi-modal model, so this option is correct.
C. Transformative AI is a classification of AI based on its large-scale societal, economic, or industrial disruptive impact, not its technical input processing functionality. The question only describes the technical capability of the system, not any paradigm-shifting impact, so this option is incorrect.
D. Expert systems are narrow, rule-based AI systems that replicate human expert decision-making in specific domains, relying on pre-programmed knowledge bases and explicit if-then rules rather than processing unstructured multi-format data. The described technology analyzes unstructured content across multiple formats, which is not a characteristic of legacy expert systems, so this option is incorrect. Key Concepts:
1. Multi-modal AI Models: Core AIGP knowledge point defining AI systems that can process, integrate, and derive insights from two or more distinct data modalities (e.g., text, audio, visual data) to complete targeted tasks.
2. AI Model Classification Framework: A key AIGP certification domain covering standard categorization of AI systems by functional capability, input type, reasoning method, and use case, which is the basis for answering this classification question.
3. Unstructured Data Processing: Core AIGP knowledge covering how different AI architectures handle unstructured data formats including text, images, audio, and video, distinguishing between rule-based, single-modal, and multi-modal processing systems. References:
Microsoft Learn, Multimodal models in Azure OpenAI Service, AWS Machine Learning Glossary, https://docs.aws.amazon.com/machine-learning/latest/dg/machine-learning-glossary.html#term_Multimodal_AI
AIGP:人工智能治理专业人员 · Q4
Question #4
If it is possible to provide a rationale for a specific output of an AI system, that system can best be described as:
  • A.
    Accountable.
  • B.
    Transparent.
  • C.
    Explainable.
  • D.
    Reliable.

Answer: C

This question tests core responsible AI terminology defined in the All AIGP Questions certification domain, specifically the distinction between key attributes of ethical and governable AI systems. The scenario describes the ability to produce a specific, targeted rationale for an individual output of an AI system, which is the core functional requirement for explainable AI as defined in industry standard frameworks aligned with AIGP certification objectives. This capability is critical for use cases where end users or auditors need to understand why a specific decision such as a loan approval rejection, fraud detection flag, or medical diagnosis support output was generated by the model, rather than just understanding general system design. Option Analysis:
A. Accountable: Incorrect. Accountability in the AIGP responsible AI framework refers to the assignment of legal, ethical, and operational responsibility for an AI system's outputs to a specific human or organizational entity, not the system's inherent ability to explain its outputs. Accountability does not require the system itself to provide rationale for outputs, only that a responsible party can be identified to address harms or questions related to outputs.
B. Transparent: Incorrect. Transparency, per AIGP certification definitions, refers to system-level disclosure of AI design, development, and deployment practices, such as sharing training data sources, model architecture choices, or overall performance metrics. Transparency applies to broad system characteristics, not per-output specific rationale, so it does not match the scenario described.
C. Explainable: Correct. Explainable AI (XAI) is explicitly defined in AIGP core content as the property of an AI system that allows for the generation of clear, contextually relevant rationale for individual, specific outputs produced by the model. This directly matches the scenario in the question, making this the correct answer.
D. Reliable: Incorrect. Reliability in the AIGP framework refers to the consistent, repeatable performance of an AI system across its intended operating environment and use cases, with acceptable rates of error for its intended purpose. Reliability has no connection to the ability to provide rationale for outputs, so it is not the correct choice. Key Concepts:
1. Explainable AI (XAI) Definition: A core AIGP responsible AI concept referring to the ability of an AI system to provide human-understandable, specific rationale for each individual output it generates, to support trust, auditing, and compliance requirements.
2. Responsible AI Attribute Differentiation: A key AIGP certification knowledge point requiring candidates to distinguish between closely related responsible AI properties including explainability, transparency, accountability, and reliability to correctly apply governance controls to AI systems.
3. System-Level vs Output-Level AI Attributes: An AIGP core concept that clarifies that attributes like transparency and reliability apply to the entire AI system, while explainability applies to individual outputs of the system, which is the critical distinction tested in this question. References:
NIST AI Risk Management Framework: Explainable AI, Microsoft Learn: Interpretability and explainability in Azure Machine Learning
AIGP:人工智能治理专业人员 · Q5
Question #5
CASE STUDY -Please use the following to answer the next question:A company is considering the procurement of an AI system designed to enhance the security of IT infrastructure. The AI system analyzes how users type on their laptops, including typing speed, rhythm and pressure, to create a unique user profile. This data is then used to authenticate users and ensure that only authorized personnel can access sensitive resources.When prioritizing the updates to its policies, rules and procedures to include the new AI system for user authentication, the organization should:
  • A.
    Update third-party data sharing policies.
  • B.
    Update security controls for sensitive data.
  • C.
    Ensure that any personal data used is only processed for a specific and lawful purpose.
  • D.
    Reduce the complexity of the policy to make it easier for non technical employees to understand.

Answer: C

The scenario describes an AI authentication system that processes behavioral biometric personal data, including typing speed, rhythm, and pressure, to create user profiles for access control. For All AIGP certification, core AI governance requirements mandate that policy updates for new AI systems first address foundational legal and ethical data processing obligations before secondary operational or administrative adjustments. Option C aligns with the principle of purpose limitation and lawful processing, which is a non-negotiable first step when integrating any AI system that handles personal data, especially sensitive biometric data. Failing to establish this guardrail first exposes the organization to regulatory non-compliance, privacy breaches, and misuse of the biometric data collected by the AI system, making this the highest priority policy update. Option Analysis:
A. Incorrect. The scenario does not reference any intended or existing sharing of the AI system's data with external third parties, so updating third-party data sharing policies is not a relevant or high-priority action in this context. This update would only be required if the organization planned to disclose the biometric data to external entities, which is not noted in the case study.
B. Incorrect. While updating security controls for sensitive data is a valid operational step, it is not the first priority when updating policies to include the new AI system. Security controls are implementation measures that come after foundational policy guardrails for lawful data processing are established, per standard AIGP governance frameworks.
C. Correct. This aligns with core AIGP responsible AI and data governance requirements, which mandate that all personal data processed by AI systems must be used only for explicitly defined, lawful, and legitimate purposes. Behavioral biometrics like typing patterns are classified as sensitive personal data under most global regulatory regimes, so establishing this processing limitation in policy is the foundational first step to mitigate compliance, privacy, and ethical risks associated with the new AI system.
D. Incorrect. Reducing policy complexity for non-technical employees is a secondary, user experience-focused policy adjustment, not a priority when first integrating a new AI system that handles sensitive biometric data. This action would only be considered after core compliance and risk mitigation policy requirements are fully addressed. Key Concepts:
1. AI Data Processing Purpose Limitation: A core AIGP responsible AI principle requiring that all personal data used to train or operate AI systems is collected, stored, and processed exclusively for explicitly stated, lawful, and legitimate purposes, with no unauthorized secondary use permitted. This is a foundational requirement for compliance with global privacy regulations and AI governance standards.
2. Biometric Data Governance for AI: An AIGP domain covering special policy and control requirements for AI systems that process biometric personal data, including behavioral biometrics like typing dynamics. This class of data is considered high-risk, so mandatory policy guardrails for processing must be established before system deployment.
3. AI Policy Prioritization Framework: An AIGP governance guideline that mandates prioritizing legal and compliance-focused policy updates before operational or user-facing policy adjustments when deploying new AI systems, to minimize regulatory, ethical, and reputational risk. References:
NIST AI Risk Management Framework, ICO Guide to AI and Data Protection

FAQ

How many practice questions are available for AIGP:人工智能治理专业人员?

This question bank includes 222 AIGP:人工智能治理专业人员 practice questions covering single and multiple choice, each with answers and explanations.

Are AIGP:人工智能治理专业人员 practice questions available in Chinese and English?

Yes, AIGP:人工智能治理专业人员 practice questions are provided in both Chinese and English.

Can I try AIGP:人工智能治理专业人员 practice questions for free?

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