AI Fundamentals Practice Exam — AI Fundamentals

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.

Sample questions

AI Fundamentals · Q1
Question #1 Which of the following methods scales poorly with large data sets?
  • A.
    Fuzzy
  • B.
    Density-based
  • C.
    Hierarchical

Answer: C

This question evaluates core understanding of the scalability characteristics of common unsupervised clustering algorithms, a required competency for AI Fundamentals certification. The question asks to identify the method that performs poorly as dataset size grows. Hierarchical clustering is the correct answer because its time and memory requirements grow at a far faster rate relative to the number of input samples than the other listed methods, making it infeasible for use with large datasets. Standard implementations require full pairwise distance calculations across all samples, which imposes prohibitive computational and storage costs as sample counts rise to tens of thousands or more. Option Analysis: A. Fuzzy: Fuzzy clustering methods, most commonly Fuzzy C-Means, have a time complexity of O(n * k * t), where n is the number of samples, k is the number of clusters, and t is the number of iterations until convergence. This complexity scales linearly with the number of samples, so fuzzy clustering performs efficiently on large datasets. This option is incorrect. B. Density-based: Density-based clustering methods such as DBSCAN, when optimized with spatial indexing structures like k-d trees, have a time complexity of O(n log n), which scales effectively for most large dataset use cases. Even unoptimized implementations have O(n²) complexity that is more practically manageable for large n than hierarchical clustering. This option is incorrect. C. Hierarchical: Hierarchical clustering (both agglomerative and divisive variants) has a minimum time complexity of O(n²) for required pairwise distance calculations, with naive agglomerative implementations reaching O(n³) time complexity. It also requires O(n²) memory to store the pairwise distance matrix, which becomes infeasible even for moderately large datasets (for example, 100,000 samples would require storage for 10 billion distance entries). This makes hierarchical clustering scale very poorly with large datasets, so this option is correct. Key Concepts: 1. Clustering Algorithm Scalability: This is the measure of an algorithm's ability to process increasing volumes of data without excessive increases in computational time or memory usage, a core criterion for selecting appropriate unsupervised learning methods for real-world AI use cases. 2. Hierarchical Clustering Computational Complexity: Standard hierarchical clustering relies on pairwise distance calculations between all samples, resulting in quadratic or cubic time complexity that prevents its use with large datasets, a key distinguishing characteristic of this method relative to other clustering approaches. 3. Unsupervised Learning Algorithm Selection: A core AI Fundamentals competency is matching algorithm capabilities to use case constraints, including dataset size, to ensure efficient and effective model performance. References: Clustering Algorithms - Azure Machine Learning, Clustering - AWS Machine Learning Developer Guide, https://docs.aws.amazon.com/machine-learning/latest/dg/clustering.html
AI Fundamentals · Q2
Question #2 Which of the following trains a predictive model from input data?
  • A.
    Expert system
  • B.
    Artificial intelligence
  • C.
    Machine learning

Answer: C

The question assesses core competency in differentiating AI subdomains, a key requirement for All AI Fundamentals Questions certification. The described task of building predictive models by learning patterns directly from input data is a unique, defining function of a specific AI subdomain rather than the broader AI field or rule-based systems. The correct answer aligns with standardized foundational AI definitions covered in all entry-level AI certification curricula. Option Analysis: A. Expert system is incorrect. Expert systems are rule-based AI tools that operate exclusively on pre-encoded if-then logic sourced from human domain experts. They have no capability to autonomously learn from raw input data or train predictive models, and all decision-making logic is hardcoded by humans rather than derived from data patterns. B. Artificial intelligence is incorrect. Artificial intelligence is the broad overarching field focused on building systems that simulate human intelligence capabilities, encompassing subdomains including expert systems, machine learning, computer vision, and robotics. It is not a specific process for training predictive models, so it is too general to match the question's specific request. C. Machine learning is correct. Machine learning is a dedicated subdomain of AI designed to use statistical algorithms to identify hidden patterns in input training data, build predictive or descriptive models from those patterns, and improve performance on target tasks without explicit hardcoded programming. This exactly matches the activity described in the question. Key Concepts: 1. Machine Learning Core Definition: A subset of AI that enables systems to automatically learn patterns from input data and build predictive or classification models without explicit rule-based programming, a foundational definition required for AI Fundamentals certification. 2. AI Subdomain Classification: The framework that categorizes AI as the overarching field, with rule-based systems (like expert systems) and data-driven learning systems (like machine learning) as distinct subdomains, a core differentiation tested in AI fundamentals exams. 3. Predictive Model Training: The process of feeding labeled or unlabeled input data to a machine learning algorithm to generate a model that produces accurate outputs for unseen data, the primary functional workflow of machine learning implementations. References: Microsoft Learn: AI Fundamentals - Introduction to Machine Learning, https://learn.microsoft.com/en-us/training/modules/introduction-to-machine-learning/1-introduction Google Cloud: What is Machine Learning?, https://cloud.google.com/learn/what-is-machine-learning
AI Fundamentals · Q3
Question #3 What is PowerShell?
  • A.
    Malware detection software
  • B.
    A team of sophisticated hackers
  • C.
    An advanced hacking tool

Answer: C

Within the All AI Fundamentals Questions certification domain, a core focus area is understanding common tools and techniques relevant to cybersecurity AI use cases, as AI systems are widely deployed for threat detection, incident response, and cyber defense applications. While PowerShell is officially a Microsoft-developed legitimate task automation and configuration management framework for system administrators, it is extensively repurposed by threat actors as an advanced living-off-the-land hacking tool for post-exploitation activity including privilege escalation, lateral movement, and data exfiltration. The suggested answer C aligns with this practical classification of PowerShell as a high-impact adversarial tool, which is critical knowledge for building AI models that can detect malicious PowerShell usage, a pervasive modern threat vector. Option Analysis: A. Incorrect. Malware detection software refers to specialized tools designed to identify, quarantine, and remove malicious software, such as Windows Defender or CrowdStrike Falcon. PowerShell has no native malware detection capabilities as a core function, so this option is factually incorrect. B. Incorrect. PowerShell is a software framework, not a group of individuals. There is no recognized sophisticated hacking team operating under the name PowerShell, so this option is entirely incorrect. C. Correct. As outlined in the answer analysis, PowerShell is classified as an advanced hacking tool in cybersecurity contexts due to its widespread abuse by threat actors for malicious activity, even when it also supports legitimate administrative use cases. This classification is a standard part of AI Fundamentals training focused on cybersecurity AI applications, which require understanding common adversarial tools to build effective detection models. Key Concepts: 1. Living-off-the-Land (LotL) Adversarial Tools: These are pre-installed, legitimate system utilities that adversaries repurpose for malicious activity to avoid detection by traditional signature-based security tools. PowerShell is one of the most common LotL tools, and knowledge of such tools is required to build effective AI-powered threat detection systems that can identify anomalous usage of otherwise benign software. 2. MITRE ATT&CK Execution Tactics: The MITRE ATT&CK framework is a core reference for AI fundamentals focused on cybersecurity use cases, and PowerShell is listed as a common execution technique (T1059.001) used by threat actors to run arbitrary code on compromised systems. 3. AI-Powered Endpoint Anomaly Detection: AI systems for endpoint security rely on baseline profiling of normal user and system activity, including standard PowerShell usage patterns, to flag suspicious activity. Understanding the malicious use cases of PowerShell is critical to training accurate, high-performing endpoint detection AI models. References: Microsoft Learn: PowerShell Overview, https://learn.microsoft.com/en-us/powershell/scripting/overview?view=powershell-7.4 MITRE ATT&CK: Technique T1059.001 - PowerShell, https://attack.mitre.org/techniques/T1059/001/
AI Fundamentals · Q4
Question #4 Which of the following ethical challenges is the use of AI MOST likely to present?
  • A.
    Bias in content output
  • B.
    Unauthorized alteration of data
  • C.
    Data misuse

Answer: A

The question asks for the most prevalent ethical challenge specifically tied to the use of AI, aligned with core AI fundamentals certification knowledge domains. AI systems operate by learning patterns from large training datasets, which almost always carry unaddressed historical, societal, or sampling biases that are replicated and often amplified in model outputs. This risk is inherent to core AI functionality, rather than being tied to secondary factors like malicious behavior or poor data governance, making it the most likely ethical challenge across all standard AI use cases, from predictive analytics to generative AI deployments. Option Analysis: A. Bias in content output is correct. This is an AI-specific, ubiquitous ethical risk documented across all categories of AI systems. It arises from unrepresentative training data, biased data labeling, or untested model performance across diverse user groups, and is consistently identified as the most common ethical challenge of AI use in all standard AI fundamentals curricula. B. Unauthorized alteration of data is incorrect. This is a general cybersecurity risk that applies to all digital systems, not an inherent challenge of legitimate AI use. While AI tools can be abused to facilitate data tampering, this is a malicious edge case, not a common ethical outcome of standard AI deployment. C. Data misuse is incorrect. Data misuse is a cross-cutting data governance risk that applies to non-AI systems such as traditional database platforms as well as AI systems. It stems from poor access controls or non-compliant data handling practices, not core AI functionality, and is less prevalent as a direct ethical challenge of AI use compared to inherent output bias. Key Concepts: 1. Algorithmic Bias: The systematic tendency of AI models to produce outputs that discriminate against or stereotype specific groups, driven by biases in training data or model design. This is a core AI-specific ethical risk that is a central topic in all AI fundamentals certification frameworks. 2. Responsible AI Prioritization: A core AI fundamentals competency that distinguishes inherent AI-specific ethical risks from general technology risks, ranking output bias as a higher-probability risk than cross-cutting risks like data misuse or cybersecurity breaches. 3. Algorithmic Fairness: The practice of designing, testing, and deploying AI systems to minimize biased outputs and deliver equitable outcomes for all user groups, a key requirement for ethical AI deployment covered in all AI fundamentals curricula. References: Microsoft Learn: Understand Responsible AI Principles (AI Fundamentals Learning Path), https://learn.microsoft.com/en-us/training/modules/responsible-ai-principles/ OECD Principles on Artificial Intelligence
AI Fundamentals · Q5
Question #5 Which of the following is the MOST significant outcome from flawed program code that is likely to lead to ethical concerns?
  • A.
    Additional training requirements for developers
  • B.
    Increased costs of writing new code
  • C.
    Greater unpredictability of results

Answer: C

The question assesses understanding of the link between technical AI system flaws and ethical risks, a core domain of AI fundamentals certification knowledge. Ethical concerns in AI relate to impacts that harm end users, violate principles of fairness, or compromise stakeholder rights, rather than just operational or financial impacts on the developing organization. Flawed program code that produces greater unpredictability of results creates the highest ethical risk, as unplanned, inconsistent outputs can lead to unintended harm such as discriminatory decision-making in high-stakes use cases (hiring, healthcare, criminal justice), safety failures in autonomous systems, or breaches of user trust, all of which fall under ethical risk categories. The other options describe internal organizational impacts that do not carry direct ethical implications for affected parties. Option Analysis: A. Additional training requirements for developers are an operational mitigation step taken in response to flawed code, not an outcome that creates ethical risk. This is an internal business process adjustment with no direct impact on the rights, safety, or fair treatment of end users, so this option is incorrect. B. Increased costs of writing new code are a purely financial business impact of flawed code. Financial costs for an organization do not constitute an ethical concern, as they do not harm external stakeholders or violate responsible AI principles, so this option is incorrect. C. Greater unpredictability of results is the only outcome that carries direct, significant ethical risk. Unpredictable outputs from AI systems can lead to unmitigated harm, unfair treatment of marginalized groups, gaps in accountability for harmful outcomes, and violations of global responsible AI frameworks, making this the correct answer. Key Concepts: 1. Responsible AI Core Principles: These globally recognized principles include non-maleficence (avoiding harm) and fairness, which require AI systems to produce consistent, predictable outputs to prevent unintended harm and discriminatory treatment of individuals affected by system decisions. Unpredictable results from flawed code directly violate these core ethical requirements. 2. AI Failure Impact Classification: AI system failures are categorized into operational, financial, and ethical impact groups. Ethical failures are defined as impacts that affect the rights, safety, or equitable treatment of individuals, which is the category that unpredictable results fall into, unlike the other listed options which are operational or financial. 3. Code Integrity for Ethical AI Deployment: Reliable, properly tested code is a foundational requirement for ethical AI. Flawed code that introduces unpredictable behavior erodes accountability, as it becomes impossible to trace system outputs to intended design choices, creating gaps in responsibility for any harm that occurs. References: OECD Principles on Artificial Intelligence, Microsoft Learn: Understand responsible AI principles, https://learn.microsoft.com/en-us/training/modules/responsible-ai-principles/

FAQ

How many practice questions are available for AI Fundamentals?

This question bank includes 60 AI Fundamentals practice questions covering single and multiple choice, each with answers and explanations.

Are AI Fundamentals practice questions available in Chinese and English?

Yes, AI Fundamentals practice questions are provided in both Chinese and English.

Can I try AI Fundamentals 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.