EnglishDeutschFrançaisEspañolPortuguês

AWS · AIF-C01 · Beginner

AWS AI Practitioner (AIF-C01) — Practice Questions and Mock Exam

Prepare for AIF-C01 with original practice questions and clear answer explanations. Ask Alex, your AI tutor, when you need more detail, use your results to identify topics to review, and practice your pacing with timed mock exams.

65Mock exam questions
90minTime limit
700/ 1000Passing score

Checked against AWS · August 2026 · Current exam version

Editorial update:

About the exam

The AWS Certified AI Practitioner is AWS's foundational AI credential, validating a broad understanding of artificial intelligence, machine learning, and generative AI concepts on AWS. It covers AI/ML fundamentals, generative AI and foundation model concepts, practical applications of AI services, responsible AI guidelines, and security considerations for AI solutions.

This certification is ideal for business professionals, analysts, and early-career technologists who work with AI solutions but do not necessarily build them. It demonstrates foundational literacy in AI concepts and the ability to identify appropriate AWS AI services for common business use cases.

Try five AIF-C01 questions

Try five practice questions from the app’s current AWS Certified AI Practitioner question bank, with answers and explanations.

Security, Compliance, and Governance for AI Solutions1 / 5

A company needs to ensure their AI application meets regulatory compliance requirements. They need to access AWS compliance reports and certifications (such as SOC and ISO reports) on demand. Which AWS service provides this capability?

AlexFull explanation from Alex

AWS Artifact is the correct answer. According to AWS documentation, AWS Artifact allows you to "download AWS security and compliance reports and other AWS published documents, and to manage agreements with AWS." This includes SOC reports, ISO certifications, PCI DSS attestations, and other compliance documents available on demand through a self-service portal.

For AI applications in regulated industries, being able to access these compliance reports is essential to demonstrate that the underlying AWS infrastructure meets the required compliance standards.

Why each incorrect option is wrong:

  • A. AWS Config — AWS Config is a service that monitors and records AWS resource configurations and evaluates them against desired configurations. It tracks *your* resource compliance over time but does not provide access to AWS's own compliance reports or certifications.
  • B. AWS Audit Manager — AWS Audit Manager helps you continuously audit your AWS usage to simplify how you assess risk and compliance with regulations and industry standards. It automates evidence collection for *your workloads*, but it does not provide downloadable AWS compliance reports like SOC or ISO certifications.
  • D. Amazon Inspector — Amazon Inspector is an automated vulnerability management service that scans AWS workloads (such as EC2 instances and container images) for software vulnerabilities and unintended network exposure. It has no role in providing AWS compliance documentation.

Key exam tip: When the question asks about accessing *AWS's own* compliance reports and certifications → AWS Artifact. When the question asks about assessing *your workload's* compliance → AWS Audit Manager. When the question asks about tracking *resource configurations* → AWS Config.

(Source: https://docs.aws.amazon.com/artifact/latest/ug/what-is-aws-artifact.html)

Sourcedocs.aws.amazon.com

Fundamentals of AI and ML2 / 5

A data science team wants to perform distributed model training across a cluster of machines using Apache Spark. They need a managed service that handles cluster provisioning and scaling. Which AWS service should they use to run Spark MLlib workloads for distributed ML training?

AlexFull explanation from Alex

Amazon EMR (Elastic MapReduce) is the correct answer because it is AWS's managed big data platform specifically designed to run distributed processing frameworks like Apache Spark. As stated in the documentation, Amazon EMR provides features and functionality for "processing and analyzing big data on AWS." EMR natively supports Apache Spark and its MLlib library, handling cluster provisioning, configuration, and scaling so that data science teams can focus on building and training distributed ML models.

Why each incorrect option is wrong:

  • A. AWS Glue — While AWS Glue does use Apache Spark under the hood for ETL (Extract, Transform, Load) jobs, it is primarily designed for data integration and ETL workloads, not for running full Spark MLlib distributed training workflows. It does not expose the same level of cluster control and Spark configuration flexibility that EMR provides for ML training.
  • C. Amazon ECS — Amazon Elastic Container Service (ECS) is a container orchestration service for running Docker containers. While you could theoretically containerize Spark, ECS does not provide native managed Spark cluster provisioning or built-in support for Spark MLlib. It is not designed for distributed Spark workloads.
  • D. AWS Batch — AWS Batch is designed for running batch computing jobs at scale, typically for HPC or simple parallel workloads. It does not natively support Apache Spark frameworks or provide managed Spark cluster provisioning needed for Spark MLlib distributed training.

(Source: https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-what-is-emr.html)

Sourcedocs.aws.amazon.com

Guidelines for Responsible AI3 / 5

A company wants to use Amazon Bedrock Guardrails to prevent their customer-facing chatbot from generating responses that contain personally identifiable information (PII) such as Social Security numbers, credit card numbers, and email addresses. Which guardrail filter type should they configure?

AlexFull explanation from Alex

Sensitive information filters is the correct answer. Amazon Bedrock Guardrails provides sensitive information filters that can detect and redact personally identifiable information (PII) such as Social Security numbers, credit card numbers, and email addresses from both user inputs and model responses. This capability is essential for compliance with privacy regulations when building customer-facing generative AI applications.

According to AWS documentation, Amazon Bedrock Guardrails allows you to "detect and filter harmful content" and one of the key filter types is sensitive information filters, which specifically targets PII detection and redaction to protect end-users from exposure to sensitive data.

Why each incorrect option is wrong:

  • A. Content filters — Content filters are designed to detect and block harmful content across categories such as hate speech, insults, sexual content, violence, and misconduct. They do not specifically target PII like Social Security numbers or credit card numbers.
  • B. Denied topics — Denied topics allow you to define specific topics that the model should not engage with (e.g., investment advice, competitor discussions). This is a topic-level restriction, not a mechanism for detecting or redacting specific PII data patterns.
  • D. Contextual grounding checks — Contextual grounding checks are used to detect hallucinations by verifying whether model responses are grounded in the provided source material and are relevant to the user's query. They have nothing to do with PII detection or redaction.

(Source: https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails.html)

Sourcedocs.aws.amazon.com

Fundamentals of GenAI4 / 5

An ML team notices their image classification model performs poorly on rare edge cases. They have limited additional training data. Which technique involves creating modified versions of existing training images — such as rotations, flips, color adjustments, and crops — to increase the effective size and diversity of the training dataset?

AlexFull explanation from Alex

Data augmentation is the correct answer. Data augmentation is a technique that creates modified versions of existing training images — such as rotations, flips, color adjustments, and crops — to artificially increase the effective size and diversity of the training dataset. This is particularly valuable when limited additional training data is available, as it helps the model generalize better by exposing it to realistic variations of existing samples. A rotated or flipped image of a cat is still a cat, so the model learns to recognize objects regardless of orientation, scale, or lighting conditions.

Why the other options are incorrect:

  • A. Regularization — Regularization is a technique used to prevent overfitting by adding a penalty term to the model's loss function (e.g., L1/L2 regularization) or by using methods like dropout. It does not involve creating modified versions of training images; rather, it constrains the model's complexity.
  • C. Feature engineering — Feature engineering involves selecting, transforming, or creating input features to improve model performance. While it manipulates the representation of data, it does not involve creating modified copies of training images through geometric or color transformations.
  • D. Transfer learning — Transfer learning involves taking a model pre-trained on a large dataset (e.g., ImageNet) and fine-tuning it on a smaller, task-specific dataset. While it is useful when training data is limited, it does not involve creating modified versions of existing training images.

Data augmentation is a standard and widely-used technique in computer vision that directly addresses the problem of limited training data by generating realistic variations of existing samples.

(Source: https://docs.aws.amazon.com/prescriptive-guidance/latest/image-classification/examples.html)

Sourcedocs.aws.amazon.com

Applications of Foundation Models5 / 5

A team is using prompt engineering to improve the quality of responses from a foundation model. They want the model to reason through complex problems step by step before giving a final answer. Which prompt engineering technique should they use?

AlexFull explanation from Alex

Chain-of-thought (CoT) prompting is the correct technique for instructing a model to reason through complex problems step by step before arriving at a final answer. As AWS documentation states, chain of thought reasoning is used to 'break down complex tasks into simpler steps' and 'improve foundation model accuracy and transparency.' This technique involves either explicitly instructing the model to 'think step by step' or providing examples that demonstrate intermediate reasoning steps, which significantly improves performance on tasks requiring multi-step reasoning such as math, logic, and analysis.

Why each incorrect option is wrong:

  • A. Negative prompting — Negative prompting is a technique where you tell the model what NOT to do or generate (e.g., 'Do not include personal opinions'). It constrains outputs but does not encourage step-by-step reasoning.
  • B. Zero-shot prompting — Zero-shot prompting provides a task instruction without any examples, relying entirely on the model's pre-trained knowledge. While it can be combined with CoT (zero-shot CoT), on its own it does not specifically encourage the model to show intermediate reasoning steps.
  • D. Prompt caching — Prompt caching is an infrastructure optimization technique that stores and reuses prompt prefixes to reduce latency and cost. It has no effect on the quality or reasoning depth of model responses.

(Source: https://docs.aws.amazon.com/bedrock/latest/userguide/inference-reasoning.html)

Sourcedocs.aws.amazon.com

430 practice questions

The Pass-IT question pool gives you material to practice for AIF-C01. A Pass-IT mock exam uses 65 questions and a 90-minute time limit; these are practice settings.

Pool details: AIF-C01

Passing score700 / 1,000

as published by AWS

Objectives in the guide14 objectives listed in the official guide

across 5 domains in the official exam guide

Pool size430 questions

= The pool size is equivalent to 6 sets of 65 questions; this does not mean that each mock exam uses a separate set.

Blueprint domains5 domains in the exam blueprint

Fundamentals of AI and ML 82 · Fundamentals of GenAI 100 · Applications of Foundation Models 119 · Guidelines for Responsible AI 59 · Security, Compliance, and Governance for AI Solutions 70

Recorded as checked against sources430 of 430

questions recorded as having their answer, options, and explanation checked against official AWS documentation

What's on the exam

Applications of Foundation Models carries the most weight at 28%, testing FM selection criteria, retrieval-augmented generation, prompt-engineering technique, and how models get fine-tuned and evaluated. Fundamentals of GenAI follows at 24%, covering core concepts like tokens, embeddings, and the foundation-model lifecycle, alongside the AWS services that turn them into working applications: Bedrock, SageMaker, and Strands Agents among them. Fundamentals of AI and ML rounds out the conceptual core at 20%, the vocabulary and learning types every other domain assumes you already know.

Responsible AI and Security, Compliance, and Governance for AI Solutions split the remaining weight evenly at 14% apiece, together accounting for more than a quarter of the exam. These domains test bias detection, model transparency, data protection, and governance frameworks rather than model-building mechanics, and candidates who spend their study time only on Bedrock and SageMaker features underestimate a meaningful share of what gets tested.

Exam blueprint: AIF-C01

Fundamentals of AI and ML20%

Get fluent in core AI and ML terms and the different learning types behind them, judge when a machine-learning approach actually fits a problem, and walk through the AWS services and evaluation metrics involved at each stage of the ML lifecycle.

≈ 5 h
Fundamentals of GenAI24%

Learn the building blocks behind generative models - tokens, embeddings, foundation models - where GenAI genuinely helps or falls short in business use, and which AWS services and infrastructure choices turn that theory into a running application.

≈ 6 h
Applications of Foundation Models28%

Weigh the tradeoffs behind picking a foundation model, tuning its inference parameters, and grounding it with retrieval-augmented generation, then apply prompt-engineering techniques and know their risks, understand how models get trained and fine-tuned, and judge whether the result actually meets the business goal.

≈ 7 h
Guidelines for Responsible AI14%

Explain practices for developing responsible AI systems, including bias, fairness, and dataset characteristics, and describe the importance of model transparency and explainability along with tools to assess them.

≈ 4 h
Security, Compliance, and Governance for AI Solutions14%

Explain methods and AWS services used to secure AI systems, including data protection and hallucination mitigation, and describe governance and compliance practices such as data lifecycle management and regulatory frameworks for AI.

≈ 4 h

Exam format and question types

The exam draws 65 questions (50 scored, 15 unscored) from a mix of multiple-choice, multiple-response, ordering, and matching formats inside a 90-minute window. Most items test conceptual recognition rather than deep configuration: matching a described business scenario to the right AWS AI service, distinguishing AI/ML terminology, or reasoning through a responsible-AI tradeoff. At under 1.4 minutes per question, pacing is rarely the constraint — precision is.

Question types: AIF-C01

Multiple Choice50%

Select the single answer that best meets the question’s requirements.

Multiple Response25%

Select multiple answers. Follow the question’s instructions on how many to choose.

Ordering15%

Arrange the steps in the sequence needed to complete the process.

Matching10%

Match each item with its corresponding item, following the question’s instructions.

See AWS for official question-format information. The shares shown describe the Pass-IT practice pool; they do not establish the proportions on the official exam.

Preparing for AIF-C01

AIF-C01 preparation, exam arrangements, and certification validity and renewal.

Preparation and logistics: AIF-C01

Preparation

Illustrative study time15–40 h

illustrative planning range: 15 h with relevant experience to 40 h when starting out; your needs may fall outside this range

LevelBeginner

Taking and maintaining the certification

Exam languages

AWS is retiring the German and Italian versions of AIF-C01 after October 15, 2026. The certification continues in other languages. Check the language available for your appointment. AWS announcement

DeliveryPearson VUE testing center or online proctored exam
Retake policy14-day waiting period between exam attempts, no limit on total number of attempts
Certification validity3 years

While AIF-C01 is active, renew by passing the latest AIF-C01 exam, MLA-C01, or AIP-C01 before expiry.

Source: AWS

Common pitfalls

Potential mix-ups between AI concepts and AWS service uses.

Topics to review: AIF-C01

  1. 01AI vs ML vs GenAI

    Explain how AI, machine learning, deep learning, and generative AI relate. Use a task example to distinguish predicting a category from generating content.

  2. 02Service Selection

    Compare Bedrock, SageMaker, and pre-built AI services against the required output and customization needs. Explain which requirement supports your choice.

  3. 03Responsible AI

    Identify who could be affected by an output, how you would assess unfair outcomes, and where a person should review or challenge a decision.

  4. 04Foundation Models

    Separate changing a prompt, retrieving reference material, and fine-tuning a model. State what each changes and how you would evaluate the result.

  5. 05AI Security

    Trace sensitive information through input, retrieval, and output. Check access permissions at each relevant step instead of assuming retrieval enforces them.

Frequently asked questions

How long is the AWS Certified AI Practitioner exam?

The AIF-C01 exam has 65 questions and a 90-minute time limit.

What is the passing score for AWS Certified AI Practitioner?

The passing score for the AIF-C01 exam is 700 / 1000.

Which pitfalls should I review when preparing for AWS Certified AI Practitioner?

Topics to review include AI vs ML vs GenAI, Service Selection, Responsible AI, Foundation Models, AI Security. Work through examples to check that you understand the distinctions and can explain your answer.

What experience do you need for AWS AI Practitioner?

There are no formal prerequisites. To assess your starting point, try explaining an AI use case, the data it needs, and a reason to reject an unsuitable approach. Use gaps in that explanation to choose your first review topics.

How long is AWS AI Practitioner valid?

The certification is valid for three years. While your certification is active, you can renew it before expiry by passing the latest version of AIF-C01, MLA-C01 or AIP-C01.

Which AIF-C01 domains carry the most weight?

Applications of Foundation Models has the largest weighting at 28%, followed by Fundamentals of Generative AI at 24%. Give these topics substantial attention, then adjust your review priorities according to the concepts you cannot yet explain or apply.

How should you prepare for AWS AI Practitioner?

Start with practice questions and explain the reasoning behind each choice. For application selection, test a fictional policy paragraph with an answerable question and one requiring an insufficient-information response. Change the policy, repeat the check, and identify the evidence supporting each expected answer.

What could you study after AWS AI Practitioner?

Consider Machine Learning Engineer Associate, MLA-C01, if your next goal is machine learning engineering, or Generative AI Developer Professional, AIP-C01, if it is generative AI development. Compare the current objectives with the work you want to do before choosing your next certification.

One certification, 12 months

Practice for AIF-C01

Focus your practice on one certification, or choose Pro to practice across all certifications.

Start a free practice sessionTry the first 20 questions without a card to see whether the practice suits you.

For eligible purchases: money-back guarantee if you fail your exam.

View guarantee terms →