00:20:00

AWS Certified AI Practitioner Practice Test (AIF-C01)

Use the form below to configure your AWS Certified AI Practitioner Practice Test (AIF-C01). The practice test can be configured to only include certain exam objectives and domains. You can choose between 5-100 questions and set a time limit.

Logo for AWS Certified AI Practitioner AIF-C01
Questions
Number of questions in the practice test
Free users are limited to 20 questions, upgrade to unlimited
Seconds Per Question
Determines how long you have to finish the practice test
Exam Objectives
Which exam objectives should be included in the practice test

AWS Certified AI Practitioner AIF-C01 Information

The AWS Certified AI Practitioner (AIF-C01) certification verifies that you have a strong foundational understanding of artificial intelligence, machine learning, and generative AI, along with exposure to how these are implemented via AWS services. It’s aimed at those who may not be developers or ML engineers but who need to understand and contribute to AI/ML-related decisions and initiatives in their organizations. The exam tests your knowledge of AI/ML concepts, use cases, and how AWS’s AI/ML services map to various business problems.

Topics include basics of supervised/unsupervised learning, generative AI fundamentals, prompt engineering, evaluation metrics, responsible AI practices, and how AWS tools like Amazon SageMaker, Amazon Bedrock, Amazon Comprehend, Amazon Rekognition, and others support AI workflows. Questions are scenario-based and focused on choosing the right service or strategy, rather than hands-on coding or architecture design. After passing, you’ll be able to identify the proper AI/ML tool for a given business challenge, articulate trade-offs, and guide responsible deployment of AI solutions within AWS environments.

Having this certification shows stakeholders that you have a solid conceptual grasp of AI and AWS’s AI/ML ecosystem. It’s well suited for technical leads, solution architects, product managers, or anyone who interacts with AI/ML teams and wants credibility in AI strategy discussions. It also helps bridge the gap between technical teams and business stakeholders around what AI/ML can — and cannot — do in real scenarios.

AWS Certified AI Practitioner AIF-C01 Logo
  • Free AWS Certified AI Practitioner AIF-C01 Practice Test

  • 20 Questions
  • Unlimited
  • Fundamentals of AI and ML
    Fundamentals of Generative AI
    Applications of Foundation Models
    Guidelines for Responsible AI
    Security, Compliance, and Governance for AI Solutions
Question 1 of 20

A developer is building a Bedrock-powered assistant that must gather a customer's address, call an internal shipping API, and then return a confirmation-all triggered by a single user request. Within Amazon Bedrock, what is the primary function of an agent in this workflow?

  • Hosting the foundation model inside a dedicated VPC subnet to minimize latency.

  • Fine-tuning the foundation model on shipping-related data for higher response accuracy.

  • Reducing prompt size by automatically compressing user input and model output.

  • Creating and executing a step-by-step plan that calls external APIs and returns the results to the user.

Question 2 of 20

A data scientist trains a binary classifier in Amazon SageMaker. After several runs, training accuracy and validation accuracy both hover around 55%, well below the desired 90%. The team concludes the model shows high bias (underfitting). Which action is MOST likely to reduce this problem?

  • Replace the current model with a more complex algorithm, such as a deeper neural network.

  • Collect additional training examples and retrain using the same model configuration.

  • Increase the dropout rate to further limit model capacity.

  • Enable early stopping so that training ends sooner.

Question 3 of 20

A startup is refining an open-source large language model so it better follows natural-language directives like "generate an email response" or "explain this code" across many tasks, without retraining on domain-specific content. Which fine-tuning method addresses this requirement?

  • Continuous pre-training with additional domain-specific text

  • Training a brand-new model from scratch on a proprietary corpus

  • Adding parameter-efficient adapters trained on one specialized dataset

  • Instruction tuning on a multi-task set of instruction-response examples

Question 4 of 20

A startup is building an AI inference API on AWS and needs to assure customers that its information security controls align with a globally recognized ISO standard. Which ISO publication should the startup cite to prove compliance with information security management requirements?

  • ISO 31000

  • ISO/IEC 27001

  • ISO 9001

  • ISO 14001

Question 5 of 20

An application running on AWS makes real-time text classification predictions. The team wants any prediction with a confidence score below 60% automatically routed to a pool of human reviewers so they can approve or correct the result. Which AWS service should they use to add this human review step with minimal custom code?

  • Amazon SageMaker Clarify

  • Amazon Augmented AI (Amazon A2I)

  • Guardrails for Amazon Bedrock

  • Amazon SageMaker Model Monitor

Question 6 of 20

A company builds a chatbot that uses retrieval-augmented generation (RAG). For each document, the team creates an embedding vector and stores it in a vector database. At runtime, the user query is also embedded, then a vector search is performed. What is the main purpose of this vector search step?

  • Identify documents whose embeddings are nearest to the query vector so semantically relevant content can be retrieved even when exact words differ.

  • Encrypt all stored embeddings with AES-256 to meet compliance requirements.

  • Convert the document embeddings back into text tokens before they are sent to the language model.

  • Fine-tune the language model by adjusting its weights using the retrieved vectors.

Question 7 of 20

A developer wants a foundation model to gather product data from an internal database, summarize the findings, and then draft an email to a vendor-all from a single prompt. Which Amazon Bedrock capability is designed to plan and execute these multi-step actions?

  • Knowledge Bases for Amazon Bedrock

  • Agents for Amazon Bedrock

  • Guardrails for Amazon Bedrock

  • Amazon Bedrock model evaluation workflow

Question 8 of 20

A retailer deploys a generative-AI résumé screener that consistently lowers the ranking of applicants over 50 years old. According to responsible AI practices, what specific legal risk does this biased behavior create for the company?

  • Exposure to discrimination lawsuits and regulatory penalties for biased hiring practices

  • Increased operational expenses from running an oversized model in the cloud

  • Claims that the model's training data infringes third-party copyrights

  • Customer confusion stemming from hallucinated product descriptions without legal consequences

Question 9 of 20

During evaluation, a sentiment analysis model scores 98% accuracy on training data but drops to 62% on new reviews. What does this gap indicate, and which simple mitigation is appropriate?

  • Data leakage is the issue; remove regularization so the model can learn the hidden signal.

  • The model has high bias (underfitting); increase model complexity to capture more patterns.

  • The model has high variance (overfitting); apply regularization or collect additional diverse training data.

  • No real issue exists; simply running more training epochs will close the accuracy gap.

Question 10 of 20

A support team replaced a manual triage script with a foundation model-powered agent. Which measurement would give the clearest indication that the new solution has improved task-engineering efficiency for the business?

  • Average time required to classify a support ticket

  • Total number of parameters in the deployed model

  • Count of languages that the model can understand

  • Size of the vector database storing ticket embeddings

Question 11 of 20

A marketing team has a dataset of customer purchasing histories with no labels. They want a model to automatically identify naturally occurring customer segments for targeted campaigns. Which learning method is most appropriate for this task?

  • Transfer learning

  • Supervised learning

  • Reinforcement learning

  • Unsupervised learning

Question 12 of 20

A data scientist starts an Amazon SageMaker training job that downloads input files from an Amazon S3 bucket. Which measure will ensure the files are encrypted in transit while being transferred from Amazon S3 to SageMaker?

  • Enable server-side encryption with AWS KMS on the S3 bucket.

  • Turn on versioning for the S3 bucket.

  • Add a bucket policy that denies requests when the aws:SecureTransport condition is false, forcing HTTPS.

  • Attach an IAM role with AmazonS3ReadOnlyAccess to the SageMaker training job.

Question 13 of 20

In the context of foundation models on AWS, which feature best distinguishes a multimodal generative AI model from a text-only large language model (LLM)?

  • It is limited to producing vector embeddings instead of human-readable outputs.

  • It requires human-generated labels for every training example.

  • It relies exclusively on tokenizing character sequences for every input.

  • It can both interpret and generate content across multiple data types, such as text and images.

Question 14 of 20

A startup needs to adapt a large language model to its highly specialized vocabulary. They are comparing full fine-tuning, parameter-efficient fine-tuning (PEFT), and a retrieval-augmented generation (RAG) approach. Which statement BEST describes the cost profile of full fine-tuning?

  • It usually has the highest overall cost because every model parameter must be updated and a full new set of weights must be stored.

  • Its cost is comparable to PEFT because both methods adjust only a small subset of parameters.

  • Its storage cost is negligible because only lightweight weight deltas are saved.

  • It is cheaper than RAG because it removes the need for an external vector database.

Question 15 of 20

After training a model in Amazon SageMaker, a team must capture its purpose, training-data lineage, evaluation results, and potential risks in a standardized document that auditors can review. Which SageMaker capability fulfills this need?

  • Amazon SageMaker Feature Store

  • Amazon SageMaker Model Registry

  • Amazon SageMaker Model Monitor

  • Amazon SageMaker Model Cards

Question 16 of 20

To maintain data integrity of training data stored in a single Amazon S3 bucket, a team wants every overwrite or deletion to retain the previous copy so it can be recovered later if corruption occurs. Which S3 feature should they activate?

  • Enable S3 Object Lock in Compliance mode

  • Configure an S3 Lifecycle rule to move data to Amazon S3 Glacier Flexible Retrieval

  • Enable S3 Versioning on the bucket

  • Enable S3 Transfer Acceleration

Question 17 of 20

Which Amazon SageMaker capability provides a standardized report that records a model's training data sources, intended use, evaluation metrics, and limitations to support governance and compliance requirements?

  • Amazon SageMaker Pipelines

  • Amazon SageMaker Feature Store

  • Amazon SageMaker Model Cards

  • Amazon SageMaker Clarify

Question 18 of 20

A developer is building a chatbot using Amazon Bedrock. What is the primary purpose of enabling Guardrails for Amazon Bedrock for this application?

  • To monitor compute resource usage and automatically scale Bedrock inference endpoints.

  • To automatically encrypt all data stored in Amazon Bedrock with customer-managed keys.

  • To enforce safety and responsible-AI policies that filter or block harmful, biased, or unwanted content in model inputs and outputs.

  • To provide a catalog of foundation models optimized for low-latency inference.

Question 19 of 20

Which Amazon SageMaker capability is designed to simplify data preparation and exploratory analysis before model training by allowing users to import, transform, and visualize data with minimal coding effort?

  • Amazon SageMaker Ground Truth

  • Amazon SageMaker Data Wrangler

  • Amazon SageMaker Feature Store

  • Amazon SageMaker Model Monitor

Question 20 of 20

A startup releases a generative-AI image service without any content safeguards. Soon, hateful images are produced and shared publicly, causing users to delete their accounts and post negative reviews. According to responsible-AI guidance, which legal risk does this scenario most clearly illustrate for the company?

  • Violation of data residency requirements

  • Intellectual property infringement

  • Loss of customer trust

  • Unexpected compute cost overruns