AWSJuly 7, 202611 min read

AWS AI Practitioner (AIF-C01) Practice Questions (2026): 10 Free Questions with Answers

Ten exam-style questions across all five AIF-C01 domains — each with the correct answer and a plain-English explanation on click. Score yourself at the end to see if you are exam-ready.

65Questions
90 minDuration
700/1000To pass
5Domains
$100USD fee

The AWS Certified AI Practitioner (AIF-C01) is AWS's foundational badge for anyone who needs to speak fluently about AI, machine learning, and generative AI on AWS — product managers, analysts, sales engineers, and developers new to the field. It does not require you to build models, but it does expect you to know when to reach for Amazon Bedrock, Amazon SageMaker, Amazon Q, and the responsible-AI guardrails around them.

Below are 10 free AIF-C01 practice questions written in the same style as the real exam, spread across all five domains of the 2026 blueprint and weighted toward generative AI and foundation models — the two heaviest areas. Read each one, pick your answer, then hit Show answer & explanation. Keep score — there is a readiness check at the bottom.

How to use this: answer honestly before revealing. The explanation matters more than the letter — if you got it right for the wrong reason, treat it as wrong and revisit that concept.

10 AIF-C01 practice questions

Q1EasyFundamentals of AI & ML

A retail team has thousands of historical transactions, each labelled “fraud” or “not fraud”, and wants to predict whether new transactions are fraudulent. Which type of machine learning does this describe?

  1. Unsupervised learning
  2. Supervised learning
  3. Reinforcement learning
  4. Unsupervised clustering
Show answer & explanation
Correct: B

Labelled examples (fraud / not fraud) used to predict a known target is the definition of supervised learning — here, binary classification. Unsupervised learning and clustering (A, D) have no labels and instead find hidden structure. Reinforcement learning (C) learns from reward signals through trial and error, not from a labelled dataset.

Q2MediumFundamentals of AI & ML

During training a model reaches 99% accuracy on the training data but only 62% on new, unseen data. What problem is this, and what is a reasonable fix?

  1. Underfitting; train for far fewer epochs
  2. Overfitting; add more or more varied training data, or apply regularization
  3. Data drift; raise the learning rate
  4. High bias; remove most of the features
Show answer & explanation
Correct: B

High training accuracy with poor performance on unseen data is classic overfitting — the model memorised noise instead of learning to generalise. Sensible fixes are more or more varied data, regularization, dropout, or a simpler model. Underfitting (A, D) shows low accuracy on both training and test data. Data drift (C) is a production issue where new data diverges over time, and raising the learning rate does not address generalization.

Q3EasyFundamentals of GenAI

Which statement best describes a foundation model?

  1. A small model trained for one narrow task, such as spam detection
  2. A large model pre-trained on broad, unlabelled data that can be adapted to many downstream tasks
  3. A rules engine that maps inputs to outputs with if-then statements
  4. A search index that speeds up database queries
Show answer & explanation
Correct: B

A foundation model is trained on massive, broad datasets and can be adapted to many tasks through prompting, retrieval-augmented generation, or fine-tuning. Option A describes a traditional task-specific model. Option C is a symbolic rules engine, not machine learning at all. Option D is unrelated infrastructure.

Q4MediumFundamentals of GenAI

An application must find documents that are semantically similar to a user's question, even when they share no exact keywords. Which representation of the text makes this possible?

  1. One-hot encoded keywords
  2. Vector embeddings
  3. Base64-encoded text
  4. A relational primary key
Show answer & explanation
Correct: B

Embeddings map text into a vector space where semantically similar items sit close together, so a similarity search can match meaning rather than exact words. One-hot encoding (A) is sparse and captures no semantic relationship. Base64 (C) is just an encoding with no meaning. A primary key (D) is an identifier, not a semantic representation.

Q5MediumFundamentals of GenAI

A team wants to build a generative AI application using foundation models from several providers, such as Anthropic and Amazon, through a single serverless API and without managing any infrastructure. Which AWS service fits best?

  1. Amazon EC2 with GPU instances
  2. Amazon Bedrock
  3. Amazon SageMaker training jobs
  4. Amazon Comprehend
Show answer & explanation
Correct: B

Amazon Bedrock is a fully managed, serverless service that offers foundation models from multiple providers — Anthropic, Amazon (Titan and Nova), Meta, Cohere, and others — behind one API. EC2 GPU instances (A) mean you manage the infrastructure yourself. SageMaker training jobs (C) are for building and training custom models. Amazon Comprehend (D) is a prebuilt NLP service, not a multi-provider foundation-model platform.

Q6EasyApplications of foundation models

A summarization feature must return consistent, near-deterministic output for the same input every time. Which inference-parameter change best supports this?

  1. Raise the temperature toward 1.0
  2. Lower the temperature toward 0
  3. Increase the maximum token limit
  4. Add several extra stop sequences
Show answer & explanation
Correct: B

Lowering temperature reduces randomness, pushing the model toward the highest-probability tokens and more consistent, repeatable output. Raising temperature (A) increases variety and creativity — the opposite of what is needed. The max token limit (C) controls length, not determinism. Stop sequences (D) control where generation ends, not the consistency of the wording.

Q7HardApplications of foundation models

A company wants a chatbot built on a foundation model to answer questions using its current internal policy documents, and to cite them, without retraining the model every time a document changes. Which approach is most appropriate?

  1. Fine-tune the model on the entire public internet
  2. Retrieval-Augmented Generation (RAG) with a knowledge base
  3. Raise the model's temperature so it is more creative
  4. Add “be accurate” to every prompt
Show answer & explanation
Correct: B

Retrieval-Augmented Generation retrieves relevant passages from your up-to-date documents at query time and supplies them to the model as context, so answers stay grounded and current — with citations — and no retraining is needed when documents change. Broad fine-tuning (A) is costly, quickly stale, and does not cleanly add private, changing data. Higher temperature (C) increases hallucination. Telling the model to “be accurate” (D) gives it no actual source facts.

Q8MediumApplications of foundation models

A model must consistently adopt a company's specialised writing style and tone across many different prompts. Retrieval-augmented generation alone has not achieved this. Which technique directly changes the model's default behaviour?

  1. Fine-tuning the foundation model on curated in-house examples
  2. Adding more documents to the vector store
  3. Lowering the maximum token limit
  4. Switching the output format from JSON to XML
Show answer & explanation
Correct: A

Fine-tuning adjusts the model on curated examples so it durably changes default behaviour such as tone and style; both Amazon Bedrock and SageMaker JumpStart support model customization. RAG (B) supplies facts as context but does not reshape style. The token limit (C) affects length only. Output format (D) is unrelated to writing style.

Q9MediumGuidelines for responsible AI

A generative AI customer-service assistant must block harmful content and stop the model from responding on certain restricted topics. Which Amazon Bedrock capability is designed for this?

  1. Amazon Bedrock Guardrails
  2. Amazon SageMaker Clarify
  3. Amazon Macie
  4. AWS CloudTrail
Show answer & explanation
Correct: A

Amazon Bedrock Guardrails let you define denied topics, content filters, and word and PII filters to block harmful or restricted output from a generative AI application. SageMaker Clarify (B) detects bias and helps explain model predictions, but it is not the runtime content filter for GenAI apps. Amazon Macie (C) discovers sensitive data in Amazon S3. CloudTrail (D) logs API activity for auditing.

Q10HardSecurity, compliance & governance

An organisation using Amazon Bedrock must ensure that data is encrypted and that only specific roles can invoke certain models. Which combination of AWS features best addresses these requirements?

  1. Public S3 buckets and shared root credentials
  2. AWS KMS encryption plus IAM identity-based policies
  3. Disabling CloudTrail to reduce log volume
  4. Hard-coding model API keys in the application source
Show answer & explanation
Correct: B

AWS KMS handles encryption of data at rest (and TLS protects data in transit), while IAM identity-based policies enforce least-privilege access so only chosen roles can invoke specific models or actions. Public buckets and shared root credentials (A) break basic security hygiene. Disabling CloudTrail (C) removes the audit trail governance depends on. Hard-coding keys in source (D) is a serious, avoidable security risk.

What these questions cover

The 10 questions are weighted to mirror the real AIF-C01 blueprint, so your score here is a rough proxy for the live exam. These are the five domains and their exact 2026 exam weights:

Applications of foundation models28%
Fundamentals of generative AI24%
Fundamentals of AI and ML20%
Guidelines for responsible AI14%
Security, compliance & governance for AI14%

Score yourself

Count how many of the 10 you got right before revealing the answer. Then read the band you land in honestly — the goal is a real pass, not a good feeling.

0–5Not ready yet. You are guessing on core concepts. Rebuild the fundamentals of AI, ML, and generative AI, and get comfortable with Amazon Bedrock and SageMaker before booking.
6–8Close. You know the concepts but slip on details like RAG versus fine-tuning, Guardrails, or governance. Drill a full timed bank and target your weak domains.
9–10Exam-ready signal. Confirm with a couple of full-length timed mocks under exam conditions, then book with confidence.

Want the full AIF-C01 question bank?

These 10 are a taster. The ExamCert AWS AI Practitioner app runs hundreds of exam-style questions with explanations, timed mocks, and weak-domain tracking — the real exam interface, on your phone.

AWS AI Practitioner exam FAQ

How many questions are on the AWS AI Practitioner (AIF-C01) exam?

65 questions in 90 minutes. Only 50 are scored; the other 15 are unscored pretest items AWS mixes in and they do not affect your result. Formats include multiple choice, multiple response, and newer ordering and matching questions. It is a foundational-level exam with no case studies.

What score do I need to pass AIF-C01?

A scaled 700 on a 100 to 1000 scale. The exam uses compensatory scoring, so you only need to pass overall, not each domain. Because the score is scaled, 700 is not the same as answering 70% correctly.

How much does the AIF-C01 exam cost and how long is it?

The exam costs 100 USD — the foundational-tier price — and runs for 90 minutes. You can sit it at a Pearson VUE test center or take it online with a proctor from home.

Are practice questions enough to pass AIF-C01?

They are essential but not sufficient. Use practice questions to find and close weak domains, and pair them with the AWS exam guide and a little hands-on time in Amazon Bedrock and SageMaker so the service names attach to real actions, not just definitions.

ExamCert Team — we build exam-style practice banks and prep apps for 90+ IT certifications. Questions here are original, written to match the AIF-C01 objectives; they are not real exam items.

Related: AIF-C01 exam guide · AIF-C01 complete study guide · Free practice tests