Certified Cloud Practitioner
Free AWS Cloud Practitioner study guide and exam blueprint. 65 questions in 90 minutes, 700% to pass. Written from Amazon's Exam Guide CLF-C02, last checked 22 July 2026. Domain weightings, glossary, and practice questions with worked explanations.
The Cloud Practitioner is not a hard exam, but it is a wide one. It does not ask you to design anything or write a line of code. It asks whether you know what several dozen AWS services do and when you would reach for each. Almost everyone who struggles with it struggles for the same reason: they studied a few services deeply instead of many services well enough to tell them apart.
The exam (code CLF-C02) has 65 questions in 90 minutes. Only 50 are scored; the other 15 are unscored questions AWS is trialing for future exams, and they are not marked, so answer everything as if it counts. Questions come in two forms: multiple choice (one right answer of four) and multiple response (two or more right answers of five or more, and you must select all of them to get credit). There is no penalty for guessing, so never leave a question blank.
Scoring is scaled from 100 to 1000, and you need 700 to pass. It is compensatory, meaning you pass on your overall score and do not need to pass each domain individually. A weak domain can be offset by strong ones, though the smart move is still to shore up weaknesses rather than rely on that.
Roughly a third of the exam, the largest domain, is simply identifying AWS services: given a need, which service meets it. Object storage means S3. A relational database means RDS. Serverless functions mean Lambda. A content delivery network means CloudFront. There is no reasoning to do once you know the mapping, and no way to reason your way to it if you do not. This is why service literacy, not cleverness, is what passes this exam.
The trap is the sheer number of similarly named services. AWS has a service for nearly everything, and many sound alike: Inspector, GuardDuty, Macie, and Detective are all security services that do different things. Cost Explorer, Budgets, and the Pricing Calculator all touch money but at different stages. Learning to tell near-neighbors apart is most of the work.
Four domains under exam guide CLF-C02. The weighting tells you exactly where to spend time: Technology and Services plus Security together are nearly two-thirds of the exam.
The two large domains, Technology and Services at 34% and Security and Compliance at 30%, make up 64% of the exam between them. Cloud Concepts at 24% is foundational and worth the time because it underpins the rest. Billing at 12% is small but consists of clean, learnable distinctions, so it is efficient points. Nobody should fail this exam on Billing.
| Domain | Weight | What it covers |
|---|---|---|
| 1. Cloud Concepts | 24% | The value of the AWS Cloud, the Well-Architected Framework and its six pillars, cloud economics (fixed vs variable cost, rightsizing), and migration including the Cloud Adoption Framework. |
| 2. Security and Compliance | 30% | The shared responsibility model, IAM and the root user, encryption, the security services (GuardDuty, Inspector, Macie, Shield, WAF), and where to find compliance information (Artifact). |
| 3. Cloud Technology and Services | 34% | Ways to access AWS, the global infrastructure (Regions, Availability Zones, edge), and the core services across compute, storage, database, networking, and more. |
| 4. Billing, Pricing, and Support | 12% | The pricing models (On-Demand, Reserved, Spot, Savings Plans), cost management tools (Cost Explorer, Budgets, Pricing Calculator), Organizations and consolidated billing, and the support plans. |
| Questions | 65 total: 50 scored, 15 unscored (not identified). |
| Time | 90 minutes. |
| Question types | Multiple choice (one of four) and multiple response (two or more of five or more; select all correct). |
| Scoring | Scaled 100 to 1000. Pass at 700. Compensatory: you pass on the overall score, not per domain. |
| Guessing | No penalty. Never leave a question blank. |
| Where | Pearson VUE test center or online proctored. |
| Cost | $100 USD. A 50% discount applies to your next exam if you already hold an AWS certification. |
| Validity | Three years. AWS certifications are recertified rather than renewed by CPE. |
The foundation. This domain establishes why organizations move to the cloud, the framework AWS uses to define good design, and the economics that make the business case. Get the vocabulary precise here and the rest of the exam reads more easily.
AWS defines good cloud design through six pillars. Expect questions that give a goal and ask which pillar it belongs to.
| Pillar | What it optimizes for |
|---|---|
| Operational excellence | Running and monitoring systems, and continually improving processes. |
| Security | Protecting data, systems, and assets. |
| Reliability | Recovering from failure and meeting demand. |
| Performance efficiency | Using resources efficiently and adapting as demand changes. |
| Cost optimization | Avoiding unnecessary cost and getting the most value. |
| Sustainability | Minimizing the environmental impact of running workloads. |
The memory hook for the six: Operational excellence, Security, Reliability, Performance efficiency, Cost optimization, Sustainability. Sustainability was added later, so older material lists only five, one more reason to use current resources.
Nearly a third of the exam. One idea dominates it, the shared responsibility model, and the rest is knowing which AWS security service does what. If you learn only one thing perfectly for this exam, make it the shared responsibility model.
This is where the exam catches people. These services all sound similar and do genuinely different things.
| Service | What it does |
|---|---|
| Amazon GuardDuty | Threat detection: continuously monitors for malicious or unauthorized activity. |
| Amazon Inspector | Automated vulnerability scanning of workloads (EC2, containers) for software flaws and exposure. |
| Amazon Macie | Discovers and protects sensitive data in S3, using machine learning to find things like personal information. |
| Amazon Detective | Investigates and analyzes the root cause of security findings. |
| AWS Shield | DDoS protection. |
| AWS WAF | Web application firewall: filters malicious web traffic (SQL injection, cross-site scripting). |
| AWS KMS | Key Management Service: creates and controls encryption keys. |
| AWS Secrets Manager | Stores, rotates, and retrieves secrets like database credentials and API keys. |
The biggest domain, and pure breadth. There is little to reason about here: you either know what a service does or you do not. The good news is that the core services follow clean categories, so learn them by category and the mapping becomes manageable.
| Service | What it is |
|---|---|
| Amazon EC2 | Virtual servers. Full control of the OS, and you choose instance types tuned for compute, memory, or storage. |
| AWS Lambda | Serverless functions: run code without managing servers, paying only for execution time. The go-to answer for "run code without provisioning servers." |
| Amazon ECS / EKS | Container orchestration (ECS is AWS's own; EKS is managed Kubernetes). |
| AWS Fargate | Serverless compute for containers: run containers without managing the underlying servers. |
| Elastic Load Balancing | Distributes incoming traffic across multiple targets for availability and scale. |
| EC2 Auto Scaling | Automatically adds or removes instances to match demand, providing elasticity. |
| Service | Type and use |
|---|---|
| Amazon S3 | Object storage. Virtually unlimited, durable, for files, backups, static content. Storage classes trade cost against access frequency; Glacier is for cheap archival. |
| Amazon EBS | Block storage. Persistent volumes attached to a single EC2 instance, like a hard drive. |
| Amazon EFS | File storage. A shared file system many instances can mount at once (Linux). |
| Amazon FSx | Managed file systems for Windows and other high-performance workloads. |
| AWS Backup | Centralized backup across AWS services. |
The exam loves the object / block / file distinction: S3 is object, EBS is block, EFS is file.
| Service | What it is |
|---|---|
| Amazon RDS | Managed relational databases (MySQL, PostgreSQL, SQL Server, and others). AWS handles patching, backups, and failover. |
| Amazon Aurora | AWS's high-performance relational database, MySQL- and PostgreSQL-compatible. |
| Amazon DynamoDB | Managed NoSQL database. Serverless, fast, for key-value and document data at any scale. |
| Amazon Redshift | Data warehouse for analytics on large data sets. |
Shorthand: relational means RDS or Aurora; NoSQL means DynamoDB; analytics warehouse means Redshift.
The smallest domain, and the most learnable. It is almost entirely clean distinctions: the pricing models for compute, the cost management tools, and the support plans. Learn these tables and you bank easy points that offset harder questions elsewhere.
| Model | When to use it |
|---|---|
| On-Demand | Pay by the second with no commitment. For short-term, spiky, or unpredictable workloads, and for testing. |
| Reserved Instances | Commit to 1 or 3 years for a large discount. For steady, predictable, always-on workloads. |
| Savings Plans | Commit to a consistent amount of compute usage (per hour) for 1 or 3 years for a discount, with more flexibility than Reserved Instances. |
| Spot Instances | Deep discounts on spare capacity that AWS can reclaim with little notice. For fault-tolerant, interruptible work (batch jobs, rendering). |
| Dedicated Hosts | A physical server dedicated to you, for licensing or compliance requirements. |
The exam pattern is a scenario ("a workload that can tolerate interruption" or "a steady 24/7 database") asking for the cheapest fitting model. Interruptible means Spot; steady and predictable means Reserved or Savings Plans; short and unpredictable means On-Demand.
| Tool | What it does |
|---|---|
| AWS Pricing Calculator | Estimates costs before you deploy, for planning and budgeting. |
| AWS Cost Explorer | Visualizes and analyzes your past and current spending and usage trends. |
| AWS Budgets | Sets custom budgets and alerts you when spending exceeds or is forecast to exceed them. |
| Cost and Usage Report | The most detailed billing data available, for deep analysis. |
| AWS Billing Conductor | Customizes billing for showback and chargeback within organizations. |
The tell: Pricing Calculator estimates the future, Cost Explorer analyzes the past, Budgets alerts on thresholds.
| Plan | Key characteristic |
|---|---|
| Basic | Free for all accounts. Documentation, whitepapers, and support forums, plus core Trusted Advisor checks. |
| Developer | Business-hours email access to support. For experimentation and early development. |
| Business | 24/7 phone, email, and chat, full Trusted Advisor, and faster response times. For production workloads. |
| Enterprise | All of Business plus a Technical Account Manager (TAM), concierge support, and the fastest response for business-critical systems. |
The distinguishing details the exam tests: only Business and Enterprise get 24/7 phone and full Trusted Advisor, and only Enterprise includes a dedicated Technical Account Manager.
The core CLF-C02 services and concepts, grouped so near-neighbors sit together. This is the map the largest domain tests: know what each does and when to reach for it.
The AWS Cloud Practitioner exam has 65 questions and lasts 90 minutes. You need 700% to pass.
The exam covers 4 domains: Cloud Concepts (24%), Security & Comp. (30%), Tech & Services (34%), Billing & Pricing (12%). These weightings come from Amazon's Exam Guide CLF-C02.
Yes. This guide was written from Amazon's own published outline, Exam Guide CLF-C02, and last checked against that document on 22 July 2026. That date is shown on every page so you can judge for yourself rather than take our word for it.
Yes. Sample questions with full worked explanations are free and need no account. The complete question bank and the full-length 65-question timed mock are paid.
The guide above is free. The question bank and the full-length timed mock are the paid part.
Open AWS CCP →Cutscores is independent and is not affiliated with, authorised by, endorsed by or sponsored by Amazon or any certification body. AWS CCP and all certification names and marks are the property of their respective owners, and are used here only to describe which exam this material prepares you for. We do not reproduce live exam content.