Free AIP-C01 Practice Test Questions and Answers (2026)

View Mode
Q: 1

Scenario: An AI developer needs a scalable, secure way to collect telemetry data (temperature, pressure) from devices in remote locations with unstable connectivity, store it in Amazon S3, and minimize infrastructure management. Question- Which solution meets the given requirements?. Options:

Options
48 comments in the community discussion
3
A . Device sends MQTT to IoT Core, and the direct Firehose rule means no Lambda or extra compute to manage. Keeps it super minimal on infra, just what they’re asking for. Kinesis/Lambda would be overkill unless there’s a need for extra processing steps. Pretty sure A is what AWS recommends for this scenario, but happy
1
Yeah, A here. Firehose with IoT Core needs basically zero management and is built for this type of ingestion.
Q: 2

Scenario: During SageMaker AMT tuning, many jobs continue running despite poor early performance, wasting GPU usage. The company needs a tuning strategy that automatically stops underperforming trials and reallocates resources. Question- Which tuning strategy should be employed to enhance optimization efficiency and expedite hyperparameter search?. Options:

Options
42 comments in the community discussion
2
B . Hyperband is what actually provides the automatic early stopping, C is tempting but doesn't do the auto-stopping part.
1
B tbh, Hyperband is what I've seen recommended in the official guide and practice exams for auto-stopping poor jobs. Not 100 percent sure, but pretty confident compared to the other options.
Q: 3

Scenario: A document classification model detects fraud. It performs well on the majority ("legitimate claim") documents but frequently misclassifies the minority ("fraudulent claim") samples. SageMaker Clarify pretraining bias analysis reveals a significant skew in the dataset. Question- What issue is most likely causing the model's poor performance on fraudulent claim detection? Options:

Options
39 comments in the community discussion
5
Option D, encountered exactly similar question in my exam. Kendra is built for semantic search and processes unstructured data from S3 directly. The other services don't handle semantic queries natively.
4
Option B If the dataset skew was actually about features and not the targets, then C could be a possible trap answer.
Q: 4

Scenario: A data scientist needs to develop a fraud detection model on SageMaker with a severely imbalanced dataset (fraudulent transactions are rare). They must minimize operational overhead and ensure the model is fair and unbiased. Question- Which approach will fulfill the given requirements?. Options:

Options
40 comments in the community discussion
6
Option D I don't think A is right since Lex is more for voice bots, not ASR tuning. D matches the AWS Transcribe workflow from what I remember on similar practice questions.
3
Option D. because Clarify is the AWS tool for bias checks and Pipelines automate the workflow (helps with keeping ops overhead down). A looks tempting but Reinforcement Learning isn't really typical for fraud detection classification. Pretty sure D is right here, but happy to hear counterpoints if folks disagree.
Q: 5

Scenario: A forecasting pipeline needs retraining on a larger dataset with a different distribution. Budget is limited, so the new tuning job must leverage previously saved high-performing hyperparameters, and must automatically stop if validation loss does not improve. Question- Which hyperparameter tuning job configuration should be used?. Options:

Options
47 comments in the community discussion
6
Makes sense to pick A here.
5
A. not D. TRANSFER_LEARNING is specifically for cases where the data distribution changes, which is what the scenario says. D's IDENTICAL_DATA_AND_ALGORITHM only works if the dataset hasn't changed, so that's a trap here.
Q: 6

Scenario: A multinational company needs an efficient solution to process audio/video content, translate it from Spanish (and other languages) into English, and summarize it quickly using an LLM, minimizing deployment time and maximizing scalability. Question- Which option will best fulfill these requirements in the shortest time possible? Options:

Options
44 comments in the community discussion
1
A is quickest since it’s all managed services for each step, so no need to build or train anything custom. B would take longer because of model training time. Anyone see a scenario where D would actually be faster?
1
A , had a similar question on a practice exam and it was definitely A for fastest setup.
Q: 7

Scenario: A CNN model training job (using an EC2 On-Demand Instance) experiences significantly long training times due to slow data reads from S3, as it currently uses File mode (sequential download). The engineer must improve I/O performance without modifying the model architecture or scripts. Question- Which action should the engineer take to optimize training performance most efficiently? Options:

Options
40 comments in the community discussion
4
Option D
1
Yep, I’d say D too. Pipe mode streams data straight from S3 as you train, so it’s way better for I/O than File or FastFile modes. Saw a similar question in practice dumps. Not 100% since AWS docs change sometimes, but from what I’ve seen D is what the exam wants.
Q: 8

Scenario: A retail team needs an automated way (minimal manual effort) to build a model to predict customer churn and identify the most relevant features contributing to the prediction (explainability). Question- Which of the following solutions will best fulfill these requirements while minimizing manual effort?. Options:

Options
45 comments in the community discussion
3
Option A
2
D
Q: 9

Scenario: A claims automation system uses SageMaker AI, predicting claim approval based on vehicle damage severity and other features (age, mileage). The model must be continuously monitored for feature attribution drift in production (i.e., if the model starts prioritizing less relevant features like vehicle age over damage severity). Question- Which solution should be implemented? Options:

Options
43 comments in the community discussion
2
Probably A here. Only ModelExplainabilityMonitor with SHAP directly catches attribution drift in production, which is exactly what the scenario describes. Options like D are more for training time and B focuses on quality metrics, not feature importance. Seen this wording trip people up before, but pretty sure A is the
2
Option D makes more sense here. ModelExplainabilityMonitor with SHAP is designed to track feature attribution drift specifically, not just input or output distribution shifts (like C does). C is a common trap but doesn't really capture changes in how the model weighs features. Agree?
Q: 10

Scenario: SageMaker notebook instances are deployed inside an isolated VPC with interface endpoints, yet unauthorized external users can still access them through the internet. Question- How can the team limit access to the SageMaker notebook instances, ensuring only authorized VPC users can connect?. Options:

Options
32 comments in the community discussion
2
C. The IAM policy option is what actually blocks presigned notebook access from outside the VPC interface endpoint. Seen this approach recommended in AWS docs, since security groups alone (D) can't stop URL creation elsewhere. Pretty confident that's what they want here, but let me know if you think otherwise.
2
Yeah, C makes the most sense here.
Q: 11

Scenario: A Bedrock chatbot uses Amazon Titan Text but provides generic answers because it lacks access to proprietary order management and product documentation data (S3, internal DB). The team needs to enhance responses using this private data without retraining the model. Question- Which option satisfies this requirement?.. Options:

Options
46 comments in the community discussion
6
Makes sense to go with D here. Integrating a Bedrock knowledge base hooks up private company info without retraining, which is exactly what the scenario calls for.
2
D is the way to go. Bedrock knowledge base lets you connect private S3 or database sources so the model can pull in that extra context, no retraining needed. Pretty sure that's what AWS designed it for, unless I missed a new feature.
Q: 12

Scenario: A team needs to fine-tune an LLM for text summarization using a low- code/no-code (LCNC) solution to automate model training and minimize manual intervention. Question- Which solution will best meet the team’s requirements?. Options:

Options
44 comments in the community discussion
6
Option A, This lines up with what the exam guide and official practice emphasize for LCNC questions.
5
A . SageMaker Autopilot with JumpStart matches the low-code/no-code focus, hands down. No way the others beat A for LCNC here.
Q: 13

Scenario: An AI developer needs to systematically determine how varying PySpark feature transformation parameters and sample sizes affects overall model accuracy and inference performance. Question- Which solution will meet this requirement most effectively?. Options:

Options
37 comments in the community discussion
1
I don’t think it’s D, B is better for systematic tracking and comparison of parameters and metrics. D’s more about automation, not about organizing detailed experiment runs. Option A is a common distractor but misses the experiment tracking part. Anyone disagree?
1
Its B
Q: 14

Scenario: An administrator must ensure that each AI developer can access only their assigned SageMaker notebook instance while maintaining shared access to Amazon Rekognition APIs and training data stored in Amazon S3. Question- Which solution will meet this requirement?. Options:

Options
28 comments in the community discussion
6
Option A
3
A. since IAM policies can lock down SageMaker permissions by notebook ARN for each user. B is a trap here, because JupyterLab roles don't cover AWS-level access controls. Pretty sure A is best, but open to counterpoints.
Q: 15

Scenario: An image classifier misclassifies images, and analysis shows the model is highly sensitive to image orientation (e.g., upside-down pandas). The team needs to enhance the model's ability to identify the objects regardless of orientation without collecting a new dataset. Question- Which approach most effectively enhances the model’s accuracy in addressing this specific misclassification issue?. Options:

Options
38 comments in the community discussion
4
Makes sense to go with A here. Flipping and rotation using augmentation are exactly what fix the orientation sensitivity, so no need for more data collection. Pretty straightforward in this case I think-A.
2
Option D
Question 1 of 20

What's covered in this practice questions set

2: Application Development · 9 questions

📖 About this Domain

This domain covers the end-to-end development of generative AI applications on AWS. It emphasizes integrating foundation models (FMs) with services like AWS Lambda and implementing architectures like Retrieval Augmented Generation (RAG).

🎓 What You Will Learn

  • Implement Retrieval Augmented Generation (RAG) by integrating vector databases like Amazon Kendra or Amazon OpenSearch Service.
  • Build and orchestrate multi-step tasks using agents for Amazon Bedrock or frameworks like LangChain.
  • Integrate generative AI workloads with AWS services such as AWS Lambda, Amazon API Gateway, and AWS Step Functions for serverless application backends.
  • Apply security controls, including data encryption, input validation for prompt injection, and IAM policies for least-privilege access.

🛠️ Skills You Will Build

  • Develop serverless application backends using AWS Lambda and Amazon API Gateway to invoke foundation models.
  • Construct and deploy RAG pipelines using Amazon Kendra or vector stores for context-aware responses.
  • Implement autonomous agents with Amazon Bedrock Agents to orchestrate complex, multi-step workflows.
  • Secure generative AI applications by implementing guardrails and validating user inputs to mitigate prompt injection attacks.

💡 Top Tips to Prepare

  • Master the architecture of RAG, including vector embedding generation, storage in services like Amazon OpenSearch Service, and retrieval mechanisms.
  • Understand how to use AWS Lambda to create serverless inference endpoints and integrate them with other services like Amazon S3 or Amazon DynamoDB.
  • Practice building agents with Amazon Bedrock, focusing on defining action groups, knowledge bases, and orchestration logic.
  • Review security best practices for LLMs, specifically prompt injection and how to use services like Amazon Comprehend for PII redaction.

3: Operations and Governance · 3 questions

📖 About this Domain

This domain focuses on the operationalization of generative AI applications using MLOps principles on AWS. It covers the entire lifecycle management, from deployment and monitoring to governance and security. You will address how to maintain, scale, and secure generative AI solutions in production environments.

🎓 What You Will Learn

  • You will learn to implement CI/CD pipelines for generative AI models using services like Amazon SageMaker Pipelines and AWS CodePipeline.
  • You will learn to set up comprehensive logging and monitoring for foundation models using Amazon CloudWatch and SageMaker Model Monitor to track performance and drift.
  • You will learn to apply governance controls, manage data lineage, and enforce security policies using AWS IAM, AWS KMS, and VPCs.
  • You will learn to manage model versions, deploy models using strategies like A/B testing, and optimize inference costs with SageMaker endpoints.

🛠️ Skills You Will Build

  • Skill in automating the deployment and retraining of large language models (LLMs) and other generative AI solutions.
  • Ability to establish monitoring systems to track key metrics like inference latency, throughput, and model quality for production workloads.
  • Competency in implementing security guardrails and compliance frameworks for generative AI applications to ensure responsible AI usage.
  • Proficiency in managing the operational lifecycle of generative AI models, including versioning, rollback procedures, and cost management.

💡 Top Tips to Prepare

  • Master the features of Amazon SageMaker MLOps, including SageMaker Pipelines, Model Registry, and Projects for end-to-end automation.
  • Focus on monitoring techniques specific to generative AI, such as tracking token usage, response quality, and detecting data drift with SageMaker Model Monitor.
  • Understand how to implement responsible AI principles using tools like Amazon SageMaker Clarify and AWS AI Service Cards for model governance.
  • Review AWS security and governance services like AWS IAM, AWS KMS, and Amazon VPC to secure data and model access in generative AI workflows.

1: Foundation Model Engineering · 3 questions

📖 About this Domain

This domain covers the core technical skills for working with foundation models (FMs). It focuses on selecting the appropriate FM and then modifying its behavior for a specific use case. Key modification techniques include prompt engineering, fine-tuning, and Retrieval Augmented Generation (RAG).

🎓 What You Will Learn

  • How to select an appropriate foundation model based on task requirements, cost, and performance metrics.
  • Techniques for prompt engineering to elicit desired responses and control model output.
  • Methods to modify an FM using fine-tuning techniques like PEFT or full fine-tuning on custom datasets.
  • How to augment an FM with external knowledge using Retrieval Augmented Generation (RAG) and vector databases.

🛠️ Skills You Will Build

  • Evaluating FMs on Amazon Bedrock and Amazon SageMaker JumpStart for specific business problems.
  • Constructing effective prompts using few-shot, zero-shot, and chain-of-thought prompting strategies.
  • Applying fine-tuning jobs on Amazon SageMaker to adapt FMs for domain-specific terminology and tasks.
  • Architecting RAG solutions by integrating FMs with knowledge bases using services like Amazon Kendra or Amazon OpenSearch Service.

💡 Top Tips to Prepare

  • Memorize the key characteristics and ideal use cases for popular FMs available through AWS services.
  • Practice prompt engineering to mitigate common issues like hallucinations and prompt injection.
  • Understand the trade-offs between RAG and fine-tuning regarding cost, data requirements, and model drift.
  • Gain hands-on experience with vector embeddings and the process of chunking, embedding, and storing data for RAG.

Premium Access Includes

  • Quiz Simulator
  • Exam Mode
  • Progress Tracking
  • Question Saving
  • Flash Cards
  • Drag & Drops
  • 3 Months Access
  • PDF Downloads
Get Premium Access
Scroll to Top

FLASH OFFER

Days
Hours
Minutes
Seconds

avail 10% DISCOUNT on YOUR PURCHASE