AWS Cloud Practitioner Practice Test (CLF-C02)
Use the form below to configure your AWS Cloud Practitioner Practice Test (CLF-C02). The practice test can be configured to only include certain exam objectives and domains. You can choose between 5-100 questions and set a time limit.

AWS Cloud Practitioner CLF-C02 Information
The AWS Certified Cloud Practitioner (CLF-C02) is an entry-level certification for individuals looking to understand the fundamentals of Amazon Web Services (AWS). This exam is designed for both technical and non-technical professionals who need a general understanding of cloud computing and AWS services. It does not require prior cloud experience, making it an ideal starting point for those new to the field.
Exam Overview
The CLF-C02 exam consists of multiple-choice and multiple-response questions. It is a 90-minute test that costs $100 USD. AWS does not publicly disclose the passing score, but candidates should aim for at least 70% to pass. The exam is available in multiple languages, including English, Japanese, Korean, and Simplified Chinese.
Exam Objectives
This exam covers four key areas: cloud concepts, security and compliance, technology, and billing and pricing. Cloud concepts include the benefits of cloud computing, the AWS global infrastructure, and the shared responsibility model. Security and compliance focus on AWS Identity and Access Management (IAM), compliance programs, and best security practices. The technology section tests knowledge of AWS compute, storage, networking, and databases, as well as the AWS Well-Architected Framework and serverless computing. Finally, billing and pricing cover AWS pricing models, total cost of ownership, and AWS support plans.
Who Should Take This Exam?
The AWS Certified Cloud Practitioner certification is suitable for individuals who want to learn about cloud computing and its business applications. It is beneficial for professionals in sales, finance, project management, and other roles that interact with cloud technology. It is also useful for those planning to pursue advanced AWS certifications.
How to Prepare
To prepare for the CLF-C02 exam, candidates should review the AWS Certified Cloud Practitioner Exam Guide and take advantage of AWS’s Free Tier for hands-on experience. AWS also offers training through its Skill Builder platform, which includes practice questions and study materials. Additionally, taking practice exams can help candidates identify areas where they need improvement.
Summary
The AWS Certified Cloud Practitioner (CLF-C02) is a foundational certification that validates a broad understanding of AWS services and cloud concepts. It is an excellent starting point for professionals who want to build cloud expertise or advance in cloud-related careers.
Scroll down to see your responses and detailed results
Free AWS Cloud Practitioner CLF-C02 Practice Test
Press start when you are ready, or press Change to modify any settings for the practice test.
- Questions: 15
- Time: Unlimited
- Included Topics:Cloud ConceptsSecurity and ComplianceCloud Technology and ServicesBilling, Pricing, and Support
Which deployment method enables repeatable and predictable provisioning by defining resources through code and templates?
- You selected this option
Using a web-based service management dashboard
- You selected this option
Scripting via command-line tools
- You selected this option
Infrastructure as code
- You selected this option
Programming with service-specific libraries
Answer Description
Infrastructure as code (IaC) is the method that involves managing and provisioning computing infrastructure through machine-readable definition files, rather than physical hardware configuration or interactive configuration tools. IaC supports automating the setup of infrastructure, thereby making the process repeatable, less error-prone, and adaptable to version control practices. The Management Console is a web interface for managing services and doesn't inherently offer the same level of automation or version control. Using CLI tools or SDKs allows for scripting and automation but does not provide infrastructure definition via code and templates as IaC does.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What is Infrastructure as Code (IaC)?
What are the benefits of using IaC?
What are some popular tools for implementing IaC?
A company needs to run a steady-state workload for a duration of 3 years and is seeking cost savings while maintaining flexibility to change instance families and regions when opportunities arise. Which compute purchasing option should they consider?
- You selected this option
Savings Plans
- You selected this option
On-Demand Instances
- You selected this option
Spot Instances
- You selected this option
Dedicated Hosts
Answer Description
AWS Savings Plans offer significant cost savings compared to On-Demand pricing for a commitment of 1 or 3 years, while providing flexibility to switch instance families, sizes, regions, and OS, unlike Reserved Instances which are more restrictive. This makes Savings Plans ideal for long-term steady-state workloads where some level of resource flexibility is needed.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are AWS Savings Plans?
How do Savings Plans differ from Reserved Instances?
What are the benefits of using Spot Instances compared to Savings Plans?
When utilizing Amazon RDS, AWS manages the underlying infrastructure, including the database instance's operating system, allowing the user to focus solely on managing the data and database settings.
- You selected this option
This statement is correct.
- You selected this option
This statement is incorrect.
Answer Description
The statement is correct because when using Amazon RDS, a managed database service, AWS is responsible for managing the infrastructure layers including the operating system, the physical hardware, and the database software installation. AWS also takes care of patching the database software and the operating system. However, the user retains responsibility for managing the data, setting up the correct database parameters, and ensuring application-level security.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What does RDS stand for, and what are its primary benefits?
What is the difference between managed and unmanaged database services?
What does it mean for AWS to handle patching and updates?
A company seeks an automated service to periodically analyze their virtual servers for unintended network accessibility and deviation from security best practices. Which service should they use to carry out these evaluations in an ongoing manner, ensuring that their server instances are not exposed to potential exploitation?
- You selected this option
AWS CloudTrail
- You selected this option
AWS Shield
- You selected this option
Amazon Inspector
- You selected this option
Amazon GuardDuty
Answer Description
The service in question enables automated security assessments which help to detect and report on possible vulnerabilities or deviations from best practices, such as unintended network accessibility. Among the available options, the service specifically designed for this purpose is Amazon Inspector. It facilitates these assessments by checking for various vulnerabilities, including exposure of the servers to the internet or other security issues.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are the key features of Amazon Inspector?
How does Amazon Inspector differ from AWS GuardDuty?
What types of vulnerabilities does Amazon Inspector check for?
A rapidly evolving startup is preparing to deploy an application that will undergo frequent iterations with multiple deployments expected each week. The application requires complex configuration, which includes coordinated updates across compute, database, and networking services. To ensure the most efficient deployment process for this scenario, which of the following methods should the startup employ?
- You selected this option
Develop a series of manual scripts for configuring each service and run them sequentially for every update.
- You selected this option
Implement regular deployments using a container orchestration service like Amazon ECS without applying broader IaC strategies.
- You selected this option
Leverage an Infrastructure as Code service such as AWS CloudFormation to codify and automate the complete deployment process.
- You selected this option
Repeatedly use the individual service consoles to configure and manage each service manually for every deployment.
Answer Description
Given the frequency of the deployments and the complexity involved in the application's infrastructure setup, the startup should employ an Infrastructure as Code (IaC) solution such as AWS CloudFormation. This method enables them to automate and replicate complex deployments reliably, which is especially beneficial when deployments occur several times a week. It also helps maintain consistency and reduces the risk of manual errors. Using individual service consoles would not be sustainable, and although a container orchestration service like Amazon ECS could be part of the infrastructure, it alone does not address the full setup. Manual scripts, while they can be automated, typically do not provide the extensive benefits and safeguards of a complete IaC approach.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What is Infrastructure as Code (IaC) and how does it benefit deployment processes?
What is AWS CloudFormation and how does it facilitate Infrastructure as Code?
How does the use of container orchestration services like Amazon ECS compare with IaC for complex deployments?
A Cloud Practitioner has identified a website utilizing cloud infrastructure to conduct fraudulent activities. In order to notify the appropriate team within the cloud provider's organization about this malicious activity, which team should they reach out to and through which method should the concern be raised?
- You selected this option
Email the legal department with information and evidence concerning the malicious operations.
- You selected this option
Inform the generic Helpdesk to seek immediate action against the reported incident.
- You selected this option
Reach out to the general support team with detailed documentation regarding the fraudulent site.
- You selected this option
Submit an abuse report through the designated form handled by the team oversees Trust & Safety concerns.
Answer Description
The responsibility for handling reports of abuse in the cloud service provider's environment lies with the Trust & Safety team. Reporting such misuses should be done by submitting an abuse report through the correct form specifically designed for such instances, which is accessible on the provider's official website. General support focuses on technical and billing topics, legal departments address legal issues, and no specific 'Helpdesk' team is mentioned in the context of abuse reporting.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What does the Trust & Safety team do within a cloud provider?
What information should I include in an abuse report?
How does submitting an abuse report differ from contacting general support?
The AWS Cloud Adoption Framework primarily focuses on technical aspects of cloud migration, ignoring business and people aspects that contribute to operational efficiency.
- You selected this option
True
- You selected this option
False
Answer Description
This statement is false because the AWS Cloud Adoption Framework provides guidance that spans beyond just the technical aspects of cloud migration; it encompasses the business, people, governance, platform, security, and operations perspectives. The AWS CAF has a multi-dimensional approach that addresses both the human and business aspects of cloud adoption, helping organizations to improve their operational efficiency by realigning skills, processes, and resources. By considering factors such as organizational change management and optimizing business processes, AWS CAF ensures a comprehensive adoption strategy that contributes to enhanced operational efficiency.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are the key components of the AWS Cloud Adoption Framework (CAF)?
How does the AWS CAF address organizational change management?
What is the importance of aligning IT strategy with business goals in cloud adoption?
Using edge locations can reduce latency by caching content closer to end users.
- You selected this option
False
- You selected this option
True
Answer Description
Edge locations play a crucial role in AWS’s content delivery network. Services like Amazon CloudFront cache content in edge locations around the world. When a user requests content that is cached in an edge location, the response comes from the nearest cache rather than the origin server, reducing latency – the time it takes for data to travel from the source to the destination. This is why the statement is true. Content that isn’t cached will still be served from the origin, but those requests are optimized by AWS’s network, often resulting in better performance compared to direct internet routing.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What exactly are edge locations in AWS?
What is Amazon CloudFront and how does it work?
What is latency and why does it matter in cloud computing?
You are a project manager at a company that is migrating its on-premises database to Amazon RDS. What is your company's responsibility regarding database security in this setup?
- You selected this option
Implementing encryption, managing database credentials, and setting up security groups.
- You selected this option
Ensuring the global network is protected from Distributed Denial of Service (DDoS) attacks.
- You selected this option
Securing the physical data center where the database is hosted.
- You selected this option
Keeping the underlying hardware and software infrastructure up to date.
Answer Description
In the shared responsibility model, AWS manages the infrastructure and underlying hardware, including the security of the physical data center and networking infrastructure. The customer is responsible for managing and securing the data, including implementing encryption, managing user access, and setting up appropriate security groups. This ensures that while AWS provides a secure environment, customers take necessary steps to protect their data.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What does the shared responsibility model mean in cloud computing?
What are security groups in Amazon RDS, and why are they important?
How does encryption work in Amazon RDS, and what types are available?
AWS Cloud enables customers to trade capital expense for variable expense.
- You selected this option
True
- You selected this option
False
Answer Description
One of the key value propositions of AWS Cloud is the ability to convert capital expenses, such as data centers and physical servers, into variable expenses. This means that instead of investing heavily in hardware, organizations can pay for computing resources on-demand and as needed, which aligns with the pay-as-you-go pricing model of AWS. Variable expenses are also heavily tied to actual usage, so costs reflect the scale of business operations without unnecessary overprovisioning.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are capital expenses versus variable expenses in the context of AWS?
How does the pay-as-you-go pricing model work in AWS?
What are the benefits of converting capital expenses to variable expenses?
Your company has deployed a web application on Amazon EC2 instances. As part of your security compliance checks, you want to ensure that the operating system patches are up to date. Whose responsibility is it to maintain the operating system in this scenario?
- You selected this option
It is the customer's responsibility to maintain the operating system.
- You selected this option
The responsibility varies and must be specified in a service level agreement (SLA).
- You selected this option
It is AWS's responsibility to maintain the operating system.
- You selected this option
Both AWS and the customer are responsible for maintaining the operating system.
Answer Description
When using Amazon EC2, AWS is responsible for the infrastructure that runs all of the services offered in the AWS Cloud. This includes the hardware, the software that runs the virtualization environment, and the physical security of the data centers. However, the customer is responsible for the security in the cloud, which includes the operating system, applications, and data on the EC2 instances. Therefore, it falls to the customer to ensure that the operating system patches are kept up to date.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What does it mean for the customer to maintain the operating system on EC2?
What specific actions can customers take to ensure their EC2 instance OS is up to date?
What are the implications of not maintaining the operating system on EC2 instances?
Your company requires a service to monitor the state of its cloud resources and flag any deviations from established compliance guidelines. Which service should you deploy to automate this process of configuration tracking and compliance assessment?
- You selected this option
Amazon GuardDuty
- You selected this option
AWS Config
- You selected this option
Amazon CloudWatch
- You selected this option
Amazon Inspector
Answer Description
The best solution for the given requirements is AWS Config. This service provides the functionality for tracking configurations and assessing compliance against guidelines, making it ideal for the continuous monitoring necessary for governance and compliance tasks. Incorrect options, such as Amazon CloudWatch, are more focused on performance monitoring, not compliance. Amazon GuardDuty, while a security service, is focused on threat detection and does not track compliance per se. Amazon Inspector evaluates the application's security and compliance but not in the continuous configuration monitoring sense that AWS Config offers.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What exactly can AWS Config track about my cloud resources?
How does AWS Config assess compliance against guidelines?
How does AWS Config differ from services like Amazon GuardDuty and Amazon Inspector?
A startup is looking to itemize expenditures associated with their various development initiatives to optimize resource allocation and financial reporting. Which approach should they adopt to enhance their capability to sort and filter expenditure data by specific projects?
- You selected this option
Establish a combined budget tracking system for all projects within their cost management dashboard.
- You selected this option
Rely on the initial price estimation tools to determine ongoing project expenses retroactively.
- You selected this option
Consolidate their billing accounts under a central management account to break down costs by department.
- You selected this option
Enable detailed billing features to categorize expenses using metadata tags pertaining to each project.
Answer Description
By activating cost allocation tags and tagging resources, the startup can categorize and track their spending in finer detail. This practice enables the organization to attribute costs to specific projects or teams, facilitating precise analysis and budgetary control. The ability to accurately assign and report expenses is crucial for companies to make informed decisions about resource utilization and cost-saving opportunities.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are cost allocation tags in AWS?
How does tagging help in financial reporting?
What are some best practices for using cost allocation tags?
A company seeks a scalable method to configure and manage their computing resources that allows for consistency and automation in their environment. Which option should they pursue that BEST fits these requirements?
- You selected this option
Adopt Infrastructure as Code practices using templating services and dedicated configuration management systems
- You selected this option
Direct utilization of programming interfaces for resource creation and management
- You selected this option
Depend on an integrated development environment to handle deployment tasks
- You selected this option
Manual configuration via a web-based console for each setup instance
Answer Description
Infrastructure as Code (IaC) allows for the management and provisioning of computing infrastructure through machine-readable definition files, promoting consistency, automation, and scalability in resource deployment. Manual setups through a web interface, while sometimes necessary for one-off tasks or exploration, lack the automation and repeatability required for scalable operations. Programmatic interfaces like SDKs and APIs are used to interact with services, but they do not inherently provide infrastructure automation and standardization. An integrated development environment (IDE) primarily serves as a space for coding and does not directly relate to deploying or managing infrastructure repeatedly at a larger scale.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What are Infrastructure as Code (IaC) practices?
What are templating services in the context of IaC?
How does the automation aspect of IaC benefit a company’s operations?
A developer is seeking a resource that offers comprehensive guidance, including architectural patterns and practices, to expedite building robust, efficient, and secure applications in the cloud. Which resource should they consult?
- You selected this option
Knowledge Center
- You selected this option
Prescriptive Guidance
- You selected this option
Online Tech Talks
- You selected this option
re:Post
Answer Description
The best fit for a developer looking for architectural best practices and comprehensive guidance on building applications in the cloud is the AWS Prescriptive Guidance. This resource is specifically tailored to provide a detailed collection of blueprints, patterns, and advice necessary for effective cloud architecture. Although options like the Knowledge Center and re:Post do provide assistance and community-driven insights, they do not deliver the same depth of prescriptive architectural guidance available in the Prescriptive Guidance.
Ask Bash
Bash is our AI bot, trained to help you pass your exam. AI Generated Content may display inaccurate information, always double-check anything important.
What is AWS Prescriptive Guidance and how can it help developers?
What are some key topics covered in AWS Prescriptive Guidance?
How does AWS Prescriptive Guidance compare to other AWS resources like the Knowledge Center?
Gnarly!
Looks like that's it! You can go back and review your answers or click the button below to grade your test.