EnglishDeutschFrançaisEspañolPortuguês

AWS · AIP-C01 · Advanced

AWS Generative AI Developer - Professional (AIP-C01) — Practice Questions and Mock Exam

Practice with realistic AIP-C01 questions aligned to the exam objectives. Alex explains every answer, and your readiness score shows what to study next.

75Questions
180minTime Limit
750/ 1000Pass Score

Checked against AWS · August 2026Current exam version

About the exam

The AWS Certified Generative AI Developer – Professional validates advanced expertise in building, deploying, and optimizing production-grade generative AI applications on AWS. It covers solution design using foundation models, implementing generative AI with Amazon Bedrock and SageMaker, retrieval-augmented generation architectures, API integration, and security and governance for AI systems.

This certification is designed for developers and architects with two or more years of experience building production-grade applications and one year of hands-on experience implementing generative AI solutions. It is distinct from the foundational AIF-C01, focusing on practical implementation of generative AI applications using AWS services.

What's on the exam

Foundation Model Integration, Data Management, and Compliance leads at 31%, the exam's single largest domain, covering solution architecture, FM selection and configuration, data validation pipelines, vector store design, retrieval mechanisms, and prompt-engineering governance end to end. Implementation and Integration follows at 26%, testing agentic AI patterns, model deployment strategies, enterprise integration architecture, API integration, and the developer tooling that ships GenAI applications into production.

AI Safety, Security, and Governance takes 20%, covering input/output safety controls, data privacy, and compliance mechanisms for foundation models. Operational Efficiency and Optimization and Testing, Validation, and Troubleshooting split the remainder at 12% and 11%, together worth almost a quarter of the exam — cost optimization, performance tuning, monitoring, and the specific failure modes of GenAI systems that don't show up in traditional ML deployments. A candidate who has only built proofs of concept, without production experience in cost control, observability, and systematic evaluation, is under-prepared for a quarter of this exam.

Exam blueprint: AIP-C01

Foundation Model Integration, Data Management, and Compliance31%

Architect a GenAI solution end to end, choosing and configuring the right foundation model, validating and formatting the data that feeds it, building the vector store and retrieval layer behind RAG, and governing the prompts that drive it at scale.

≈ 26 h
Implementation and Integration26%

Implement agentic AI solutions with tool integrations and orchestrated reasoning, and deploy foundation models using strategies suited to LLM-specific performance and resource requirements. Also covers designing enterprise integration architectures, FM API integrations, and application integration patterns and developer tooling for GenAI applications.

≈ 22 h
AI Safety, Security, and Governance20%

Filter harmful inputs and outputs before they reach or leave a foundation model, protect sensitive data throughout that interaction, build the governance trail regulators expect, and hold the whole system to responsible-AI standards like fairness and transparency.

≈ 17 h
Operational Efficiency and Optimization for GenAI Applications12%

Implement cost optimization strategies such as token efficiency and intelligent caching for GenAI workloads, optimize application performance including latency and retrieval speed, and build monitoring systems to track FM usage, quality, and cost.

≈ 10 h
Testing, Validation, and Troubleshooting11%

Implement evaluation systems to assess the quality, relevance, and business impact of foundation model outputs, and troubleshoot GenAI application issues such as context window overflows, integration errors, and retrieval or prompt degradation.

≈ 9 h

Exam format and question types

The exam draws 75 questions (65 scored, 10 unscored) from multiple-choice and multiple-response formats inside a 180-minute window. Questions are deeply scenario-based, often describing a production GenAI architecture and asking which Bedrock configuration, vector store design, or deployment strategy resolves a stated constraint. At 2.4 minutes per question, budget extra time for the longer architecture scenarios rather than pacing evenly.

Question types: AIP-C01

Multiple Choice65%

Pick the single best answer from four or five options — the exam's bread and butter.

Multiple Response35%

More than one answer is correct and you need all of them; the question tells you how many to pick.

AWS confirms these question types — a percentage split is not published; the shares reflect our exam-aligned question pool.

Try five AIP-C01 questions

Five questions straight from our AWS Certified Generative AI Developer - Professional pool. Answer one — Alex explains the why.

Foundation Model Integration, Data Management, and Compliance1 / 5

A developer is using a multilingual Amazon Bedrock foundation model to build a chatbot that should respond only in English, even when users write in another supported language. Which approach should they use?

AlexFull explanation from Alex

System prompts in the Bedrock Converse API define instructions and context for the model, so they are the right place to specify that every response must be in English. This preserves multilingual input support while controlling the output style. Guardrails can still be used for safety and privacy policies, but their documented filters are content filters, denied topics, word filters, sensitive information filters, contextual grounding checks, and automated reasoning checks, not an English-only response validator.

Sourcedocs.aws.amazon.com

Implementation and Integration2 / 5

A developer wants to accelerate their coding workflow by getting inline code suggestions, code generation, and refactoring assistance within their IDE. Which AWS service provides these developer productivity features?

AlexFull explanation from Alex

Amazon Q Developer (the option “Amazon Q Developer”) is the correct answer. Amazon Q Developer is AWS's AI-powered coding assistant that provides inline code suggestions, code generation, refactoring assistance, and security scanning directly within popular IDEs. It is the successor to AWS CodeWhisperer, which has been rebranded and integrated into Amazon Q Developer. Why each incorrect option is wrong: - A. AWS Cloud9 — AWS Cloud9 is a cloud-based integrated development environment (IDE) that lets you write, run, and debug code with just a browser. While it is an IDE, it does not itself provide AI-powered inline code suggestions, code generation, or refactoring assistance. It is the environment, not the AI assistant. - C. AWS CodeWhisperer (legacy) — While CodeWhisperer did provide AI-powered code suggestions, it has been rebranded and its capabilities have been folded into Amazon Q Developer. As a legacy/deprecated branding, it is not the current correct answer. AWS now directs users to Amazon Q Developer for these features. - D. Amazon CodeGuru Reviewer — Amazon CodeGuru Reviewer is an automated code review service that uses machine learning to detect issues in Java and Python code. According to AWS documentation, it "provides recommendations for improvements to your Java and Python code" through code reviews, but it does not provide real-time inline code suggestions, code generation, or refactoring assistance within an IDE. Additionally, as of November 7, 2025, new repository associations can no longer be created. (Source: https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/what-is.html)

Sourcedocs.aws.amazon.com

AI Safety, Security, and Governance3 / 5

A developer needs to implement model cards for their customized foundation models to document limitations, intended use cases, and evaluation results. Which AWS service supports programmatic model card creation?

AlexFull explanation from Alex

Amazon SageMaker AI is the correct answer because it natively supports Model Cards as a feature for documenting ML models. SageMaker Model Cards allow developers to programmatically create, edit, and share documentation about their models, including intended use cases, limitations, evaluation results, and business details.

As confirmed by the AWS CloudFormation documentation, the `AWS::SageMaker::ModelCard` resource type exists, which includes properties like `BusinessDetails` for documenting "information about how the model supports business goals." This demonstrates that SageMaker Model Cards are a first-class SageMaker AI feature that can be created and managed programmatically through the SageMaker SDK, API, or infrastructure-as-code tools like CloudFormation.

Why each incorrect option is wrong:

  • A) AWS CloudFormation — While CloudFormation can *provision* SageMaker Model Cards (via `AWS::SageMaker::ModelCard`), CloudFormation itself is an infrastructure-as-code service, not the service that *supports* model card creation as a feature. The model card functionality belongs to SageMaker AI; CloudFormation merely orchestrates its deployment.
  • B) Amazon Bedrock — Amazon Bedrock is a managed service for accessing foundation models via API. It does not provide a model card feature for documenting model limitations, intended use cases, or evaluation results. According to the AWS decision guide, Bedrock focuses on making FMs accessible without managing infrastructure, while SageMaker provides the full ML lifecycle tooling including governance features like model cards.
  • D) Amazon Q Business — Amazon Q Business is an AI-powered assistant for enterprise use that helps employees get answers from company data. It does not offer model card functionality for documenting ML model metadata and governance information.

(Source: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-sagemaker-modelcard-businessdetails.html)

Sourcedocs.aws.amazon.com

Operational Efficiency and Optimization for GenAI Applications4 / 5

A developer needs guaranteed model invocation capacity for their production Amazon Bedrock application that serves consistent, high-volume traffic. Which capacity option should they purchase?

AlexFull explanation from Alex

Provisioned Throughput with model units (the option “Provisioned Throughput with model units”) is the correct answer. When a production application requires guaranteed, dedicated model invocation capacity for consistent, high-volume traffic, Provisioned Throughput is the appropriate choice. According to AWS documentation, Provisioned Throughput allows you to purchase dedicated capacity measured in model units, with commitment terms (1-month or 6-month), ensuring your application has reserved throughput without being subject to throttling from shared capacity pools. As stated in the documentation: "Amazon Bedrock offers flexible capacity options to match your workload requirements and budget. Understanding the differences between on-demand tiers (Flex, Priority, Standard), reserved tier, batch processing, and cross-region inference helps you optimize both performance and cost." Provisioned Throughput falls under the reserved tier category, which provides guaranteed capacity. Why each incorrect option is wrong: - A. On-Demand Standard tier — On-Demand tiers (including Standard) provide pay-per-use access but do not guarantee dedicated capacity. They are subject to throttling during periods of high demand since capacity is shared across customers. This does not meet the requirement for "guaranteed" capacity. - B. Batch inference — Batch inference is designed for processing large volumes of requests asynchronously (not in real-time). It is optimized for cost savings on bulk workloads that don't require immediate responses, making it unsuitable for a production application serving live traffic. - C. Cross-Region Inference with Global profile — Cross-Region Inference distributes requests across multiple AWS regions to improve availability and reduce latency, but it does not provide guaranteed dedicated capacity. It still relies on on-demand capacity pools in various regions and is primarily a resilience and latency optimization strategy, not a capacity reservation mechanism. (Source: https://docs.aws.amazon.com/bedrock/latest/userguide/prov-throughput.html and https://docs.aws.amazon.com/bedrock/latest/userguide/capacity-limits-cost-optimization.html)

Sourcedocs.aws.amazon.com

Testing, Validation, and Troubleshooting5 / 5

A developer needs to validate that their Amazon Bedrock model performs consistently after updates by checking for semantic drift and hallucination rate changes. Which validation approach should the developer implement?

AlexFull explanation from Alex

The correct answer is Synthetic user workflows with AI-specific output validation for hallucination rates and semantic drift. When validating generative AI models after updates, developers need automated, repeatable validation approaches that specifically measure AI-relevant metrics like hallucination rates and semantic drift. Synthetic user workflows with golden datasets (known expected outputs) allow developers to systematically detect regressions in model quality before exposing the model to live traffic. This approach aligns with Amazon Bedrock's validation data configuration capabilities, where validation datasets are used during model customization to evaluate model performance against known benchmarks. Amazon Bedrock supports validation data configuration (validationDataConfig) as part of model customization jobs, which enables developers to assess model quality using structured validation datasets. This principle extends to post-deployment validation where synthetic workflows serve as regression tests for AI-specific quality metrics. Why the other options are wrong: - B (Load testing with Apache JMeter): Load testing measures performance characteristics like throughput, latency, and concurrency handling. It does not evaluate semantic quality, hallucination rates, or content drift — which are the specific concerns stated in the question. - C (Manual testing by team members): Manual testing is not scalable, not repeatable, and highly subjective. It cannot systematically measure hallucination rates or detect subtle semantic drift across model updates. It also introduces significant delays in the deployment pipeline. - D (A/B testing with live users immediately after deployment): A/B testing with live users exposes real users to a potentially degraded model before validation is complete. Best practices dictate that AI-specific quality checks (hallucination detection, semantic drift analysis) should occur *before* serving live traffic, not after. This approach risks negative user experiences and potential harm from hallucinated outputs. (Source: https://docs.aws.amazon.com/bedrock/latest/userguide/foundation-models-reference.html)

Sourcedocs.aws.amazon.com

373 questions, built like the exam

The AIP-C01 pool covers every exam domain and keeps growing with new questions. A mock exam asks 75 questions in one sitting, on the same 180-minute clock as the real thing.

Audit record: AIP-C01

Pass mark750 / 1,000

as published by AWS

Blueprint coverage20 official objectives

across 5 domains, from the official exam guide

Pool size373 questions

= 4 full practice exams of 75 questions each — never the same question twice

Canonically validated373 of 373

each verified against official AWS documentation — answer, options and explanation, source cited

Methodology openly documented.How questions are made →

Preparing for AIP-C01

How long you'll need depends on how much hands-on experience you bring. The rest is set by the vendor: how the exam is delivered, how soon you can retake it, and how long the credential stays valid.

The exam runs through Pearson VUE, either at a testing center or online with a remote proctor, and is offered in English, Japanese, Korean, and Simplified Chinese. Certification holds for 3 years; passing a recertification exam renews it, and because this is a professional-level credential, earning it also renews any associate-level AWS certification you hold.

Your plan: AIP-C01

Preparation

Study time50–130 h

typically around 50 h if you already work with this stack, around 130 h coming to it fresh

LevelAdvanced

Exam day & after

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

Pass a recertification exam before the 3-year expiration date. Professional-level certifications also renew all associate-level certifications

The hours are our own planning estimate — AWS publishes no preparation time for this exam. A starting point for your calendar, not a target.

Common pitfalls

This professional-level exam assumes hands-on production experience, not conceptual familiarity: Bedrock model selection, inference parameters, guardrails configuration, and knowledge base integration come up across multiple domains, and so does vector store and embedding model selection for retrieval-augmented generation. Candidates also underestimate how much weight falls on model-customization tradeoffs, choosing between prompt engineering, fine-tuning, continued pre-training, and distillation, and on the token-based cost management and governance controls that separate a working demo from a production system.

Watch list: AIP-C01

  1. 01Bedrock Configuration

    Not understanding Bedrock model selection, inference parameters, guardrails configuration, and knowledge base integration for different generative AI use cases.

  2. 02RAG Architecture

    Misunderstanding vector store selection, embedding model choices, chunking strategies, and retrieval pipeline design for retrieval-augmented generation.

  3. 03Model Customization

    Confusing when to use prompt engineering, fine-tuning, continued pre-training, or distillation for different model customization requirements.

  4. 04Cost Management

    Not understanding token-based pricing, provisioned throughput, model selection trade-offs, and caching strategies for optimizing generative AI costs.

  5. 05AI Governance

    Overlooking guardrails, content filtering, PII handling, and audit logging requirements for production generative AI applications.

Pass-IT trains you on exactly these weak spots — adaptive & spaced →

Frequently asked questions

How long is the AWS Certified Generative AI Developer - Professional exam?

The AIP-C01 exam has 75 questions and a 180-minute time limit.

What is the passing score for AWS Certified Generative AI Developer - Professional?

You need 750 / 1000 to pass the AIP-C01 exam.

What are common mistakes on the AWS Certified Generative AI Developer - Professional exam?

Common pitfalls include: Bedrock Configuration, RAG Architecture, Model Customization, Cost Management, AI Governance. Focus study time on these areas to avoid losing points.

Which AIP-C01 domains carry the most weight?

Foundation model integration, data management and compliance is the largest block at 31%, followed by implementation and integration at 26% and AI safety, security and governance at 20%. Operational efficiency and testing share the remaining 23%. Two thirds of the exam therefore sits in the first three domains.

How long does AIP-C01 stay valid?

Three years from the day you pass. AWS renews it by having you sit the recertification exam before that date. A professional-level pass also renews every associate-level AWS certification you hold, so one sitting can reset more than one clock.

Do you need another AWS certification before AIP-C01?

No. AWS states no formal prerequisite, so you can book AIP-C01 without holding AIF-C01 or an associate exam first. The catalog budget is around 85 hours, and it assumes you already build with foundation models rather than read about them.

What is the difference between AIP-C01 and AIF-C01?

AIF-C01 is the foundational AI Practitioner exam: vocabulary, use cases and responsible-AI concepts, written for people who talk about AI systems. AIP-C01 is professional level and assumes you build them, covering retrieval pipelines, guardrails, evaluation and cost control on live workloads. If you cannot yet describe how you would test a generative application, AIF-C01 is the honest starting point.

What happens if you fail AIP-C01?

You wait 14 days before booking again. AWS sets no cap on the total number of attempts, so the constraint is the two-week gap rather than a limit on tries.

Pass-IT is an independent study tool, not affiliated with or endorsed by AWS; AWS and exam names are trademarks of their respective owners.

One certification. One payment.

Full AIP-C01 access

Get the full question pool for this certification. Alex explains every answer, and your readiness score shows what to work on next.

Buy AIP-C01 access for $29.99One payment. Lifetime access to this certification.
Take the free readiness check20 questions. No card. See what to study before you buy.

Reach 80% readiness and pass — or your money back.

How the score works →