<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Bastab C</title>
    <description>The latest articles on DEV Community by Bastab C (@bassyc).</description>
    <link>https://dev.to/bassyc</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F161096%2F2b0ab156-82ee-495b-8aa3-c9ebbe3b2845.jpg</url>
      <title>DEV Community: Bastab C</title>
      <link>https://dev.to/bassyc</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bassyc"/>
    <language>en</language>
    <item>
      <title>Kubernetes and Cloud Native Associate (KCNA) Study Notes</title>
      <dc:creator>Bastab C</dc:creator>
      <pubDate>Sun, 21 Jun 2026 10:54:25 +0000</pubDate>
      <link>https://dev.to/bassyc/kubernetes-and-cloud-native-associate-kcna-study-notes-1ccj</link>
      <guid>https://dev.to/bassyc/kubernetes-and-cloud-native-associate-kcna-study-notes-1ccj</guid>
      <description>&lt;p&gt;I sat the Kubernetes and Cloud Native Associate (KCNA) and passed. KCNA is the entry-level CNCF certification - it covers Kubernetes fundamentals and the wider cloud native landscape at a conceptual level, and it is the natural first step before the hands-on CKA, CKAD, and CKS exams.&lt;/p&gt;

&lt;p&gt;It is a multiple-choice exam, so it rewards knowing what the pieces are and how they relate, not hands-on kubectl skill. If you already work with Kubernetes, a lot of this will be familiar, so calibrate the prep to what you already know.&lt;/p&gt;




&lt;h2&gt;
  
  
  The exam at a glance
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Questions&lt;/td&gt;
&lt;td&gt;60&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Time&lt;/td&gt;
&lt;td&gt;90 minutes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Format&lt;/td&gt;
&lt;td&gt;Multiple choice, online proctored&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Passing score&lt;/td&gt;
&lt;td&gt;75%&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;250 USD (two attempts included)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Validity&lt;/td&gt;
&lt;td&gt;2 years&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The pass mark is a flat 75%, not a scaled score, so the smaller domains still count - do not leave them to chance.&lt;/p&gt;


&lt;h2&gt;
  
  
  The four domains
&lt;/h2&gt;

&lt;p&gt;KCNA has four domains. The percentages are the share of scored content, straight from the official curriculum - the bigger the share, the more of your study time it deserves. Note the curriculum was restructured: older guides reference a five-domain version, so calibrate against the current one below.&lt;/p&gt;
&lt;h3&gt;
  
  
  Kubernetes Fundamentals (44%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;By far the largest domain, and the core of the exam. The Kubernetes architecture, the main resources, and how you interact with a cluster. If you only have time for one area, this is it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Kubernetes architecture - control plane vs node components&lt;/li&gt;
&lt;li&gt;Core resources - Pods, Deployments, ReplicaSets, Services, namespaces&lt;/li&gt;
&lt;li&gt;Configuration - ConfigMaps and Secrets&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;kubectl&lt;/code&gt; basics and the API-driven, declarative model&lt;/li&gt;
&lt;li&gt;Containers and the container runtime (CRI)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Container Orchestration (28%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The second-largest domain. Why orchestration exists and how Kubernetes does it - scheduling, networking, storage, and security at a conceptual level.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scheduling and how Pods land on nodes&lt;/li&gt;
&lt;li&gt;Networking model - Services, the CNI, Pod-to-Pod communication&lt;/li&gt;
&lt;li&gt;Storage - volumes, persistent volumes, the CSI&lt;/li&gt;
&lt;li&gt;Container security and the runtime ecosystem&lt;/li&gt;
&lt;li&gt;Service mesh and the role it plays&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Cloud Native Application Delivery (16%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;How cloud native software gets built and shipped. CI/CD, GitOps, and the packaging tools you would meet around Kubernetes.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CI/CD fundamentals in a cloud native context&lt;/li&gt;
&lt;li&gt;GitOps and declarative delivery&lt;/li&gt;
&lt;li&gt;Packaging - Helm and templating&lt;/li&gt;
&lt;li&gt;Application delivery patterns and rollout strategies&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Cloud Native Architecture (12%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The wider landscape around Kubernetes. Autoscaling, serverless, open standards, and the roles and personas in the cloud native world. Conceptual, breadth-first.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Autoscaling - horizontal vs vertical, cluster autoscaling&lt;/li&gt;
&lt;li&gt;Serverless and event-driven concepts&lt;/li&gt;
&lt;li&gt;Open standards and the role of the CNCF&lt;/li&gt;
&lt;li&gt;Observability concepts - metrics, logs, traces (Prometheus, OpenTelemetry)&lt;/li&gt;
&lt;li&gt;Community, governance, and personas&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  Concepts to know well
&lt;/h2&gt;

&lt;p&gt;For KCNA you need to recognise what each piece is and what it is for, not how to configure it:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
&lt;th&gt;Concept&lt;/th&gt;
&lt;th&gt;Know this about it&lt;/th&gt;
&lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
&lt;td&gt;Pod&lt;/td&gt;
&lt;td&gt;Smallest deployable unit; one or more containers sharing network and storage&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Deployment&lt;/td&gt;
&lt;td&gt;Declarative rollouts and scaling of stateless Pods via ReplicaSets&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Service&lt;/td&gt;
&lt;td&gt;Stable networking endpoint for a set of Pods; ClusterIP, NodePort, LoadBalancer&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;kube-apiserver&lt;/td&gt;
&lt;td&gt;The control plane front door; everything goes through the API&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;etcd&lt;/td&gt;
&lt;td&gt;The cluster's key-value store of record&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;kubelet&lt;/td&gt;
&lt;td&gt;Node agent that runs and reports on Pods&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;kube-scheduler&lt;/td&gt;
&lt;td&gt;Decides which node a Pod runs on&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;ConfigMap / Secret&lt;/td&gt;
&lt;td&gt;Non-sensitive vs sensitive configuration injected into Pods&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;CNI&lt;/td&gt;
&lt;td&gt;Pluggable networking layer for Pod connectivity&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Helm&lt;/td&gt;
&lt;td&gt;Package manager for Kubernetes applications&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Prometheus&lt;/td&gt;
&lt;td&gt;The default cloud native metrics and monitoring project&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;kubectl&lt;/td&gt;
&lt;td&gt;The CLI you use to talk to the API server&lt;/td&gt;
&lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Easy things to mix up
&lt;/h2&gt;

&lt;p&gt;These are the distinctions the exam likes to probe. Knowing the boundary between a pair is usually the whole question:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Deployment vs StatefulSet vs DaemonSet&lt;/strong&gt; - Deployments for stateless replicas, StatefulSets for stable identity and storage, DaemonSets for one Pod per node.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service types&lt;/strong&gt; - ClusterIP is internal only, NodePort exposes a port on every node, LoadBalancer provisions an external load balancer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ConfigMap vs Secret&lt;/strong&gt; - both inject configuration, but Secrets are for sensitive data and are base64-encoded (not encrypted by default).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Liveness vs readiness vs startup probes&lt;/strong&gt; - liveness restarts a stuck container, readiness gates traffic, startup protects slow-starting apps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Requests vs limits&lt;/strong&gt; - requests are what the scheduler reserves, limits are the hard ceiling the runtime enforces.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Labels vs annotations&lt;/strong&gt; - labels are for selecting and grouping objects, annotations are for non-identifying metadata.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Control plane vs node components&lt;/strong&gt; - api-server, scheduler, etcd, and controllers run the cluster; kubelet, kube-proxy, and the runtime run the workloads.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Container vs container runtime&lt;/strong&gt; - the container is the running unit, the runtime (containerd, CRI-O) is what runs it via the CRI.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;p&gt;KCNA is conceptual, so a structured course plus practice questions covers most of it. You do not need to spend much.&lt;/p&gt;

&lt;h3&gt;
  
  
  Essential
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/cncf/curriculum/blob/master/KCNA_Curriculum.pdf" rel="noopener noreferrer"&gt;KCNA Curriculum (CNCF)&lt;/a&gt; - the syllabus. The domains and their weights tell you exactly what is in scope.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LFS250: Kubernetes and Cloud Native Essentials&lt;/strong&gt; - the Linux Foundation's own course, written to the KCNA curriculum. The closest thing to an official study path.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;KodeKloud KCNA course&lt;/strong&gt; - the most recommended third-party prep, with hands-on labs and practice questions. Pick this or LFS250 if you want one guided path.&lt;/li&gt;
&lt;li&gt;A throwaway cluster to poke at - minikube, kind, or a free Killercoda sandbox - plus the &lt;a href="https://kubernetes.io/docs/reference/kubectl/quick-reference/" rel="noopener noreferrer"&gt;kubectl Quick Reference&lt;/a&gt;. Even on a conceptual exam, touching the objects makes them stick.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Useful
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;a href="https://training.linuxfoundation.org/wp-content/uploads/2024/10/KCNA_CurriculumPath.pdf" rel="noopener noreferrer"&gt;KCNA Sample Curriculum Path&lt;/a&gt; - the Linux Foundation's suggested learning order.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Skip if you are tight on time
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Community write-ups like &lt;a href="https://www.linkedin.com/pulse/how-ace-kcna-kubernetes-cloud-native-associate-exam-keratishvili-mwhwf" rel="noopener noreferrer"&gt;How to Ace the KCNA&lt;/a&gt; and &lt;a href="https://medium.com/faun/kcna-exam-prep-%EF%B8%8F-bac0495f8c4c" rel="noopener noreferrer"&gt;Pass the KCNA Exam&lt;/a&gt; - good for orientation and a second pass over the topics, but they overlap with the course and curriculum. Pick one, skim the rest.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Notes
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;ol&gt;
&lt;li&gt;Verify the curriculum version. KCNA was restructured to four domains - plenty of older guides still teach the five-domain layout, and the weightings have shifted.&lt;/li&gt;
&lt;li&gt;This is a breadth exam. Know what each piece is for and how the control plane and nodes fit together; do not go deep on any single object.&lt;/li&gt;
&lt;li&gt;Even though it is multiple choice, a few hours with &lt;code&gt;kubectl&lt;/code&gt; on a throwaway cluster makes the concepts far more concrete than reading.&lt;/li&gt;
&lt;li&gt;The cloud native landscape questions reward knowing the flagship CNCF projects by what they do - Prometheus for metrics, Helm for packaging, etcd for state.&lt;/li&gt;
&lt;li&gt;KCNA is the on-ramp to the hands-on CNCF exams. If CKA or CKAD is next, treat this as the groundwork for them.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;

</description>
      <category>kubernetes</category>
      <category>certification</category>
      <category>cncf</category>
      <category>cloudnative</category>
    </item>
    <item>
      <title>AWS Certified Cloud Practitioner (CLF-C02) Study Notes</title>
      <dc:creator>Bastab C</dc:creator>
      <pubDate>Fri, 19 Jun 2026 13:17:30 +0000</pubDate>
      <link>https://dev.to/bassyc/aws-certified-cloud-practitioner-clf-c02-study-notes-ngl</link>
      <guid>https://dev.to/bassyc/aws-certified-cloud-practitioner-clf-c02-study-notes-ngl</guid>
      <description>&lt;p&gt;I sat the AWS Certified Cloud Practitioner (CLF-C02) back in 2024 and passed. CLF-C02 is AWS's foundational certification - broad rather than deep, covering cloud concepts, security, core services, and billing at a level anyone working around AWS should recognise.&lt;/p&gt;

&lt;p&gt;It is the most accessible AWS exam, so if you already work with AWS day to day, a lot of this will be familiar. Treat it as a breadth check rather than a deep technical exam, and calibrate the prep to what you already know.&lt;/p&gt;




&lt;h2&gt;
  
  
  The exam at a glance
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Questions&lt;/td&gt;
&lt;td&gt;65 (50 scored, 15 unscored)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Time&lt;/td&gt;
&lt;td&gt;90 minutes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Format&lt;/td&gt;
&lt;td&gt;Multiple choice and multiple response&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Passing score&lt;/td&gt;
&lt;td&gt;700 out of 1000 (scaled)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;100 USD&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Validity&lt;/td&gt;
&lt;td&gt;3 years&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The score is scaled, so you do not need 70% of questions right - it is normalised across question difficulty. The exam is conceptual: it tests whether you understand what AWS services do and when they apply, not whether you can build with them.&lt;/p&gt;


&lt;h2&gt;
  
  
  The four domains
&lt;/h2&gt;

&lt;p&gt;CLF-C02 has four domains. The percentages are the share of scored content, straight from the exam guide - the bigger the share, the more of your study time it deserves.&lt;/p&gt;
&lt;h3&gt;
  
  
  Domain 1 - Cloud Concepts (24%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The "why cloud" domain. Value proposition of the cloud, the AWS global infrastructure, and the basics of how cloud economics differ from running your own hardware. Conceptual, not technical.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Benefits of cloud - elasticity, agility, pay-as-you-go, economies of scale&lt;/li&gt;
&lt;li&gt;AWS global infrastructure - Regions, Availability Zones, edge locations&lt;/li&gt;
&lt;li&gt;Cloud economics - CapEx vs OpEx, total cost of ownership&lt;/li&gt;
&lt;li&gt;The AWS Well-Architected Framework at a high level&lt;/li&gt;
&lt;li&gt;Migration and the cloud adoption basics&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Domain 2 - Security and Compliance (30%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The second-largest domain. The shared responsibility model is the spine of it - know exactly where AWS's responsibility ends and yours begins. The rest is IAM basics and where to find compliance information.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Shared responsibility model - what AWS secures vs what you secure&lt;/li&gt;
&lt;li&gt;IAM - users, groups, roles, policies, MFA, root account protection&lt;/li&gt;
&lt;li&gt;Security services - Shield, WAF, GuardDuty, Inspector, KMS at a high level&lt;/li&gt;
&lt;li&gt;Compliance - AWS Artifact, where audit reports come from&lt;/li&gt;
&lt;li&gt;Encryption in transit and at rest as concepts&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Domain 3 - Cloud Technology and Services (34%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The largest domain and the widest. You need recognition-level knowledge of a long list of services - what each one is for, not how to configure it. Breadth beats depth here.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Compute - EC2, Lambda, Elastic Beanstalk, ECS/EKS at a glance&lt;/li&gt;
&lt;li&gt;Storage - S3, EBS, EFS, Glacier and when each fits&lt;/li&gt;
&lt;li&gt;Databases - RDS, DynamoDB, Aurora, ElastiCache at a glance&lt;/li&gt;
&lt;li&gt;Networking - VPC, Route 53, CloudFront, the basics&lt;/li&gt;
&lt;li&gt;Management and monitoring - CloudWatch, CloudTrail, Organizations, Trusted Advisor&lt;/li&gt;
&lt;li&gt;Ways to access AWS - console, CLI, SDKs, infrastructure as code&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Domain 4 - Billing, Pricing, and Support (12%)
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;The smallest domain, but easy marks if you know the tools. Pricing models, the billing and cost tools, and the support plan tiers. Worth a focused hour - the distinctions are clean and frequently tested.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Focus areas:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pricing models - On-Demand, Reserved, Spot, Savings Plans&lt;/li&gt;
&lt;li&gt;Cost tools - Cost Explorer, Budgets, Cost and Usage Report, Billing Conductor&lt;/li&gt;
&lt;li&gt;Support plans - Basic, Developer, Business, Enterprise and what each includes&lt;/li&gt;
&lt;li&gt;AWS Organizations and consolidated billing&lt;/li&gt;
&lt;li&gt;Trusted Advisor cost checks&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  Services to know well
&lt;/h2&gt;

&lt;p&gt;For CLF-C02 you need recognition-level knowledge - what each service is for and when you would reach for it, not how to configure it:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
&lt;th&gt;Service&lt;/th&gt;
&lt;th&gt;Know this about it&lt;/th&gt;
&lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
&lt;td&gt;EC2&lt;/td&gt;
&lt;td&gt;Virtual servers; the pricing models attach here&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;S3&lt;/td&gt;
&lt;td&gt;Object storage, storage classes, durability&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;RDS&lt;/td&gt;
&lt;td&gt;Managed relational databases vs running your own&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Lambda&lt;/td&gt;
&lt;td&gt;Serverless compute, pay per execution&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;VPC&lt;/td&gt;
&lt;td&gt;Your private network boundary in AWS&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;IAM&lt;/td&gt;
&lt;td&gt;Users, groups, roles, policies, MFA&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;CloudWatch&lt;/td&gt;
&lt;td&gt;Monitoring, metrics, alarms, logs&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;CloudTrail&lt;/td&gt;
&lt;td&gt;API activity auditing (who did what)&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Organizations&lt;/td&gt;
&lt;td&gt;Multi-account management, consolidated billing&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Trusted Advisor&lt;/td&gt;
&lt;td&gt;Best-practice checks across cost, security, performance&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Cost Explorer / Budgets&lt;/td&gt;
&lt;td&gt;Viewing spend vs alerting on spend&lt;/td&gt;
&lt;/tr&gt;
    &lt;tr&gt;
&lt;td&gt;Well-Architected Tool&lt;/td&gt;
&lt;td&gt;Reviewing workloads against the six pillars&lt;/td&gt;
&lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Easy things to mix up
&lt;/h2&gt;

&lt;p&gt;These are the distinctions the exam likes to probe. At this level, knowing the boundary between a pair is usually the whole question:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Shared responsibility model&lt;/strong&gt; - AWS secures the cloud (hardware, global infrastructure); you secure what you put in it (data, IAM, configuration). Managed services shift more onto AWS.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Regions vs Availability Zones vs edge locations&lt;/strong&gt; - a Region is a geographic area, an AZ is one or more data centres within it, an edge location serves CloudFront content closer to users.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security groups vs network ACLs&lt;/strong&gt; - security groups are stateful and act at the instance; NACLs are stateless and act at the subnet.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;On-Demand vs Reserved vs Spot&lt;/strong&gt; - On-Demand for flexibility, Reserved/Savings Plans for steady long-term workloads at a discount, Spot for interruptible workloads at the biggest discount.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cost Explorer vs Budgets vs Cost and Usage Report&lt;/strong&gt; - Explorer visualises past spend, Budgets alerts on thresholds, the CUR is the detailed line-item export.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;IAM users vs roles&lt;/strong&gt; - users are long-lived identities, roles are assumed temporarily and avoid long-lived credentials.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support plans&lt;/strong&gt; - Basic is free, Developer adds business-hours email support, Business adds 24/7 and a fuller Trusted Advisor, Enterprise adds a TAM.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Trusted Advisor vs Well-Architected Tool&lt;/strong&gt; - Trusted Advisor runs automated best-practice checks; the Well-Architected Tool is a guided self-review against the framework.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;p&gt;CLF-C02 is well served by free, AWS-authored material. You do not need to spend much here.&lt;/p&gt;

&lt;h3&gt;
  
  
  Essential
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://d1.awsstatic.com/training-and-certification/docs-cloud-practitioner/AWS-Certified-Cloud-Practitioner_Exam-Guide.pdf" rel="noopener noreferrer"&gt;Exam Guide (CLF-C02)&lt;/a&gt; - the syllabus. The domain breakdown and in-scope service list tell you exactly what is fair game.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/16485/exam-prep-enhanced-course-aws-certified-cloud-practitioner-clf-c02-english" rel="noopener noreferrer"&gt;Exam Prep Enhanced Course (Skill Builder)&lt;/a&gt; - AWS's own guided prep, free, and enough to carry most people through on its own.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/14637/aws-certified-cloud-practitioner-official-practice-exam-clf-c02-english" rel="noopener noreferrer"&gt;Official Practice Exam (Skill Builder)&lt;/a&gt; - calibrate against AWS-authored questions before booking.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Useful
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/16434/exam-prep-standard-course-aws-certified-cloud-practitioner-clf-c02-english" rel="noopener noreferrer"&gt;Exam Prep Standard Course (Skill Builder)&lt;/a&gt; - a lighter path than the enhanced course if you only need a refresher.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://digitalcloud.training/category/aws-cheat-sheets/aws-cloud-practitioner/" rel="noopener noreferrer"&gt;DigitalCloud cheat sheets&lt;/a&gt; - good for last-week revision once the concepts are in place.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Skip if you are tight on time
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://digitalcloud.training/aws-cloud-practitioner-resources/" rel="noopener noreferrer"&gt;DigitalCloud resources page&lt;/a&gt; is handy as references, but they overlap with the official course and your practice exams. Skim, do not study cover to cover.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Notes
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;ol&gt;
&lt;li&gt;This is a breadth exam. Recognising what a service is for matters far more than any configuration detail - do not over-study any single service.&lt;/li&gt;
&lt;li&gt;The free Skill Builder enhanced course plus one set of practice exams is enough for most people. There is no need to buy multiple courses.&lt;/li&gt;
&lt;li&gt;Learn the shared responsibility model and the support plan tiers cold - they are reliable marks and the distinctions are clean.&lt;/li&gt;
&lt;li&gt;The score is scaled, so aim to clear 700 comfortably on practice exams rather than chasing a specific number.&lt;/li&gt;
&lt;/ol&gt;
&lt;/blockquote&gt;

</description>
      <category>aws</category>
      <category>certification</category>
      <category>cloud</category>
      <category>cloudpractitioner</category>
    </item>
  </channel>
</rss>
