SaveMyCert
Log in
5 of 5 free questions left today·for unlimited practice
AIF-C01 practice

Free AIF-C01 practice questions

Drill exam-realistic AWS Certified AI Practitioner questions by domain, with an explanation on every option — not just the right one. 5 fully worked examples are further down this page, answers included.

Question bank
280
across 5 domains
Free, no account
5/day
sign up free to remove the cap
Real exam
65 Qs
90 min · pass 700
Explanations
Every option
right and wrong

Build a practice session

Domains

How many?

Mode

Ready when you are

10 fresh questions drawn across all domains, in Learn mode.

Focused review

Every question you answer incorrectly, and every question you flag while practising, is saved here automatically. Finish a session and you can come back to re-drill just those.

5 sample AIF-C01 questions, fully explained

Real questions from the AIF-C01 bank, with the answer key and the reasoning behind every option. Read them, then go back up the page and try the rest.

Question 1Fundamentals of AI and ML

Which statement correctly describes the relationship between artificial intelligence (AI), machine learning (ML), and deep learning?

Choose one.

  • a
    Deep learning is a subset of machine learning, and machine learning is a subset of AI. Correct

    AI is the broadest field, ML is a subset that learns from data, and deep learning is a subset of ML that uses multi-layer neural networks.

  • b
    AI is a subset of machine learning, which is a subset of deep learning.

    This reverses the hierarchy; AI is the widest circle, not the narrowest.

  • c
    Machine learning and AI are unrelated fields that only occasionally overlap.

    Machine learning is a part of AI, so they are nested rather than separate fields.

  • d
    Deep learning contains machine learning, which contains AI.

    This inverts the nesting; deep learning is the innermost, most specialized subset, not the container.

The concept

AI, ML, and deep learning form a nested hierarchy from broadest to most specialized.

Why that’s the answer

AI is any technique that makes a machine mimic human intelligence, ML is the subset that learns patterns from data, and deep learning is the subset of ML built on multi-layer neural networks, so option A orders them correctly. The other options reverse or break this nesting, which the exam treats as a clear error.

How to reason it out
  1. Start with the widest term: AI covers all machine intelligence, including rule-based systems.
  2. Place ML inside AI as the data-learning subset, and deep learning inside ML as the neural-network subset.
  3. Confirm the order runs AI, then ML, then deep learning from outside to inside.

Exam tip: AI contains ML, and ML contains deep learning.

AI vs ML vs Deep Learning: Core AIF-C01 Concepts and Terminology — the lesson that teaches this.

Question 2Fundamentals of GenAI

In generative AI, what is a token?

Choose one.

  • a
    A small unit of text, such as a word or part of a word, that a language model reads and generates. Correct

    This is the definition of a token; models process text as sequences of these small units.

  • b
    A numerical representation of the meaning of a piece of content.

    That describes an embedding, not a token.

  • c
    A security credential used to authenticate calls to a model service.

    An access or API token is a security concept, not the text unit used in generative AI.

  • d
    A large document split into smaller pieces before it is sent to a model.

    Splitting a large document into pieces is chunking, not a token.

The concept

A token is the small unit of text, often a word or part of a word, that a language model reads and produces.

Why that’s the answer

Language models do not process letters or whole documents directly; they process sequences of tokens, so option A is correct. An embedding is a numerical representation of meaning, an access token is a security credential, and splitting a document is chunking, which is why the other options are wrong.

How to reason it out
  1. Recall that models work on sequences of small text units.
  2. Match the definition of that unit to the term token.
  3. Rule out embedding, credential, and chunking as different concepts.

Exam tip: A token is the small unit of text a model reads and generates.

Generative AI Concepts: Tokens, Embeddings, and Foundation Models (AIF-C01) — the lesson that teaches this.

Question 3Applications of Foundation Models

What does Retrieval Augmented Generation (RAG) do?

Choose one.

  • a
    Retrieves relevant information from an external knowledge source and adds it to the prompt so the model answers from current or private data. Correct

    This is the definition of RAG: it grounds the model's answer in retrieved passages added to the prompt, without changing the model.

  • b
    Retrains the foundation model on your private documents so the knowledge becomes part of the model's weights.

    Retraining on your data describes fine-tuning or continuous pre-training, not RAG, which adds no training.

  • c
    Compresses a large model into a smaller one that runs faster and costs less.

    Creating a smaller model from a larger one is model distillation, not RAG.

  • d
    Increases the temperature parameter so the model generates more varied responses.

    Adjusting temperature controls randomness of output; it has nothing to do with retrieving external knowledge.

The concept

RAG grounds a foundation model's answer in information retrieved from an external source at query time.

Why that’s the answer

RAG searches a knowledge source for relevant passages and inserts them into the prompt as context, so the model answers from current or proprietary data instead of only its training. Option A captures this. The distractors describe fine-tuning (B), distillation (C), and an inference parameter (D), none of which retrieve external data.

How to reason it out
  1. Recall that RAG adds retrieved context to the prompt rather than changing the model.
  2. Match the phrase 'answer from current or private data' to RAG.
  3. Eliminate options that describe training or unrelated settings.

Exam tip: RAG retrieves relevant information and adds it to the prompt so the model answers from current or private data without retraining.

Foundation Model Design: Selection, RAG, and Customization (AIF-C01) — the lesson that teaches this.

Question 4Guidelines for Responsible AI

A responsible-AI review flags that a chatbot sometimes states false information as if it were fact. Which feature of responsible AI is most directly concerned with outputs being accurate and factually grounded?

Choose one.

  • a
    Veracity Correct

    Veracity, or truthfulness, is the responsible-AI feature about outputs being accurate and factually grounded rather than fabricated.

  • b
    Robustness

    Robustness is about performing reliably on noisy or unexpected inputs, not about factual accuracy.

  • c
    Inclusivity

    Inclusivity is about serving a wide range of people well, not about truthfulness of outputs.

  • d
    Fairness

    Fairness is about equitable treatment of individuals and groups, not about whether a statement is factually true.

The concept

Veracity (truthfulness) is the responsible-AI feature about factual accuracy of outputs.

Why that’s the answer

A model stating false information describes a truthfulness failure, which maps to veracity. Robustness (reliability under bad inputs), inclusivity (serving diverse people), and fairness (equitable treatment) are separate features that do not describe factual accuracy.

How to reason it out
  1. Identify the symptom: the model produces false statements presented as fact.
  2. Match the symptom to the feature about accurate, factually grounded output.
  3. That feature is veracity, also called truthfulness.

Exam tip: Veracity, or truthfulness, is the responsible-AI feature about outputs being factually accurate.

Responsible AI: Bias, Fairness, and Amazon Bedrock Guardrails — the lesson that teaches this.

Question 5Security, Compliance, and Governance for AI Solutions

Under the AWS shared responsibility model, which of the following is the customer responsible for when running a generative AI application on a managed AWS service?

Choose one.

  • a
    Securing the data, access controls, and configuration of the workload Correct

    The customer always owns security in the cloud: their data, who can access it, and how services are configured.

  • b
    Patching the physical servers that host the foundation model

    AWS secures the underlying infrastructure and hardware, not the customer.

  • c
    Maintaining the physical security of the AWS data centers

    Physical data center security is AWS's responsibility for security of the cloud.

  • d
    Managing the managed service's underlying operating system and hypervisor

    For managed services AWS operates the underlying compute layers, including the operating system and hypervisor.

The concept

The shared responsibility model splits security into AWS's part (security of the cloud) and the customer's part (security in the cloud).

Why that’s the answer

The customer secures their data, access, and configuration. Patching hardware, physical data center security, and the managed operating system all fall to AWS as security of the cloud, so those options are wrong.

How to reason it out
  1. Recall the split: AWS secures the cloud, you secure in the cloud.
  2. Place each option on the correct side of the line.
  3. Data, access, and configuration are the customer's half.

Exam tip: For AI workloads, you secure your data, access, and configuration while AWS secures the infrastructure.

Securing AI Systems on AWS: IAM, Encryption, Guardrails, and Grounding — the lesson that teaches this.

The AIF-C01 question bank, by domain

The bank is built to the exam's own weighting, so the practice you get reflects the marks that are actually on offer — not whichever domain was easiest to write questions for.

Published AIF-C01 practice questions per exam domain
DomainExam weightTopicsQuestions
Fundamentals of AI and ML20%360
Fundamentals of GenAI24%360
Applications of Foundation Models28%480
Guidelines for Responsible AI14%240
Security, Compliance, and Governance for AI Solutions14%240
Total100%14280

How AIF-C01 questions are worded

Most AIF-C01 questions are not asking whether you can recall a definition. They describe a situation and ask which option satisfies it — so the skill being tested is reading the requirement precisely and eliminating options that fail it.

Single-response vs multiple-response

A single-response question has exactly one right answer. A multiple-response question tells you how many to pick ("Choose TWO") and there is no partial credit — getting one of the two right scores nothing. Read that instruction before you read the options.

Read the last line first

The final sentence is the actual question; everything before it is scenario. Read it first, then read the scenario knowing what you are looking for. It stops you from building an answer in your head that the question never asked for.

Hunt for the qualifier

Most scenarios turn on one word — MOST cost-effective, LEAST operational overhead, with the LEAST latency, without changing application code. Two options are frequently both technically correct, and the qualifier is the only thing separating them.

Eliminate, then choose

Distractors are almost always real AWS services doing a real job — just not this job. Rule out the ones that break a stated constraint before you compare what's left. On a question you truly don't know, eliminating two options turns a guess into a coin flip.

Beyond AIF-C01 practice

AIF-C01 practice questions: your questions

Yes. You can answer 5 questions a day with no account at all, and creating a free account removes the daily limit entirely — the full 280-question AIF-C01 bank, with an explanation on every option.