AWS Cloud Practitioner Core Services Practice Questions 2026

AWS Core Services form the backbone of the AWS Certified Cloud Practitioner (CLF-C02) exam, dominating Domain 2 (Technology) which accounts for 34% of your total score — the single largest domain. Understanding what each core service does, when to use it, and how services integrate with each other is essential for passing the exam. This practice guide covers the critical services and question patterns you'll encounter.

Exam Weight: Domain 2 — Technology (34% of CLF-C02)

What Are AWS Core Services?

AWS core services are the foundational building blocks that power the vast majority of cloud architectures on the AWS platform. While AWS offers over 200 services, the Cloud Practitioner exam focuses on a core set of approximately 30-40 services that every cloud professional should understand. These services span compute, storage, database, networking, security, management, and application integration categories.

The core services represent the most commonly used AWS offerings that you'll encounter in virtually every production environment. EC2 provides scalable virtual servers, S3 offers virtually unlimited object storage, RDS manages relational databases, Lambda enables serverless computing, and VPC defines network boundaries. Together, these services and their supporting tools form the infrastructure layer that millions of applications run on worldwide.

For the Cloud Practitioner exam, you need to understand each service at a conceptual level: what problem it solves, what category it belongs to, how it compares to alternatives within AWS, and when you would choose it over similar services. You don't need deep configuration knowledge — that's reserved for Associate and Professional certifications — but you must be able to match business requirements to the right AWS service.

Why Core Services Knowledge Matters

Domain 2 (Technology) carries the heaviest weight on the CLF-C02 exam at 34%. This means approximately 22 of your 65 scored questions will test your understanding of AWS services, their use cases, and how they work together. Getting comfortable with core services is the single most impactful thing you can do to improve your exam score.

Beyond the exam, core services knowledge is the foundation for every AWS certification path. Whether you pursue Solutions Architect, Developer, SysOps Administrator, or any specialty certification, you'll build on the service understanding established at the Cloud Practitioner level. Investing time here pays dividends across your entire AWS certification journey.

In the workplace, understanding core services enables meaningful conversations with technical teams, better project scoping and estimation, and informed decision-making about cloud architecture. Even non-technical roles benefit from knowing that "S3 provides durable object storage" or "Lambda eliminates server management for event-driven workloads."

Key Core Services to Master

Amazon EC2 (Compute)

Elastic Compute Cloud provides resizable virtual servers in the cloud. Know instance types (general purpose, compute optimized, memory optimized), purchasing options (on-demand, reserved, spot, savings plans), and auto-scaling concepts. EC2 is the most fundamental compute service.

Amazon S3 (Storage)

Simple Storage Service offers object storage with 99.999999999% durability. Understand storage classes (Standard, IA, Glacier, Deep Archive), bucket policies, versioning, lifecycle rules, and static website hosting. S3 is the most versatile storage service.

Amazon RDS & DynamoDB (Database)

RDS provides managed relational databases (MySQL, PostgreSQL, Oracle, SQL Server, Aurora). DynamoDB is a fully managed NoSQL database. Know when to use relational vs. NoSQL, and understand Aurora's MySQL/PostgreSQL compatibility with enhanced performance.

AWS Lambda (Serverless)

Lambda runs code without provisioning servers, charging only for execution time. Understand event-driven architecture, integration with S3/API Gateway/DynamoDB triggers, 15-minute execution limits, and how Lambda differs from EC2 in management responsibility.

Amazon VPC (Networking)

Virtual Private Cloud creates isolated network environments within AWS. Know subnets (public vs. private), internet gateways, NAT gateways, security groups, NACLs, and VPC peering. VPC is the networking foundation for most AWS resources.

AWS IAM (Security)

Identity and Access Management controls who can access AWS resources. Understand users, groups, roles, policies, the principle of least privilege, MFA, and the difference between IAM roles and IAM users. IAM is free and used in every AWS account.

Sample Core Services Question Types

  1. Service Identification: Given a use case (e.g., "store and retrieve any amount of data at any time"), identify the correct AWS service (S3).
  2. Service Comparison: Compare two services and determine which is more appropriate for a scenario (EC2 vs. Lambda, RDS vs. DynamoDB, S3 vs. EBS).
  3. Architecture Patterns: Identify which combination of services would create a scalable, highly available application (EC2 + ALB + RDS Multi-AZ).
  4. Pricing Model Selection: Recommend the best EC2 purchasing option based on workload characteristics (steady-state = reserved, variable = on-demand, fault-tolerant = spot).
  5. Category Classification: Determine which AWS service category (compute, storage, database, networking, security) a given service belongs to.
  6. Global Infrastructure: Explain how Regions, Availability Zones, and Edge Locations relate to core service deployment and availability.

Common Mistakes to Avoid

Study Checklist for Core Services

Core Services Exam Strategies

The most effective strategy for core services questions is to build a mental service catalog organized by category. When a question describes a need ("we need to run code in response to S3 uploads"), immediately map it to the right category (serverless compute → Lambda). Most core services questions follow this pattern: describe a requirement, present four service options, and test whether you know which service matches.

For comparison questions (EC2 vs. Lambda, S3 vs. EBS), focus on the key differentiators. EC2 gives you full control but requires management; Lambda is hands-off but has execution limits. S3 is for objects accessed via API; EBS is for disk volumes attached to instances. RDS handles relational data with SQL; DynamoDB handles NoSQL with key-value access. These binary distinctions eliminate wrong answers quickly.

Pay attention to questions about the global infrastructure. Services are either global (IAM, Route 53, CloudFront) or regional (EC2, S3, RDS). Some services offer cross-region features (S3 Cross-Region Replication, RDS Read Replicas) that appear in architecture questions. Understanding which services are regional vs. global helps you answer availability and disaster recovery questions correctly.

Frequently Asked Questions

How many core services questions are on the Cloud Practitioner exam?

Domain 2 (Technology) represents 34% of the CLF-C02 exam — the largest domain. This translates to approximately 22 questions out of 65 scored questions. Core services like EC2, S3, RDS, Lambda, and VPC are heavily tested within this domain, as they form the foundation of most AWS architectures.

Which AWS services should I focus on most for the exam?

Focus on the core services that appear most frequently: EC2 (compute), S3 (storage), RDS and DynamoDB (databases), Lambda (serverless), VPC (networking), IAM (security), CloudWatch (monitoring), and CloudFormation (infrastructure as code). Also study support services like Route 53 (DNS), CloudFront (CDN), SNS/SQS (messaging), and Elastic Load Balancing.

Do I need to know how to configure AWS services for the exam?

No. The Cloud Practitioner exam tests conceptual understanding, not hands-on configuration. You need to know what each service does, when to use it, and how services work together — but you won't be asked to write code, configure security groups, or set up specific resources. That level of detail is reserved for Associate and Professional level exams.

What is the difference between EC2 and Lambda?

EC2 provides virtual servers that you manage (patching, scaling, availability), while Lambda is serverless — you upload code and AWS handles all infrastructure. EC2 is better for long-running applications and full OS control; Lambda is ideal for event-driven, short-duration tasks. The exam frequently tests when to choose one over the other based on scenario requirements.

How are storage services tested on the exam?

Storage questions focus on choosing the right service: S3 for object storage (files, backups, static websites), EBS for block storage (EC2 volumes), EFS for shared file storage (NFS), and S3 Glacier for archival. You should understand storage classes (S3 Standard, Infrequent Access, Glacier), lifecycle policies, and basic durability/availability guarantees like S3's 99.999999999% durability.

Are database service questions difficult on the Cloud Practitioner exam?

Database questions are moderate difficulty. You need to know the differences between relational databases (RDS, Aurora) and NoSQL databases (DynamoDB), when to use each type, and managed vs. self-managed databases on EC2. Also understand that RDS supports multiple engines (MySQL, PostgreSQL, Oracle, SQL Server) and that Aurora offers MySQL/PostgreSQL compatibility with better performance.

Practice Core Services Questions Now

Our Smart Practice practice tests generate unlimited core services questions tailored to the AWS Certified Cloud Practitioner CLF-C02 exam objectives. Get instant feedback with detailed explanations.

Start Free Practice Test →