CLF-C02 Practice Exam — CLF-C02:Cloud Practitioner

1. The cloud-based question bank updates automatically, no need to retrieve it again.

2. Activate the question bank to access both Chinese and English versions.

3. Features include online exercises, mock exams, PDF downloads and video courses.

4. Study via mini-program or computer web page, valid for one year.

5. Activation codes can be bought directly or from Tmall official flagship store.

6. Contact customer service via WeChat, WhatsApp and Line for any issues.

Exam information

Cloud Practitioner – Foundational Exam Code: CLF-C02


·Registration Link: https://aws.amazon.com/cn/certification/certification-prep/testing/

·Exam Fee: 100 USD. Exam vouchers are available for purchase at approximately 370 RMB (For voucher inquiries, https://item.taobao.com/item.htm?id=991899961156 ).

·Exam Languages: Simplified Chinese, English, Japanese, etc. Certificates issued in different languages carry equal recognition. You may take the exam in Chinese and still download an English‑language certificate.

·Exam Location: Offline Pearson VUE test centers in designated cities, or online proctored exam on your personal computer (webcam monitoring throughout the exam; cheating is strictly prohibited).

·Exam Environment: For online exams, a plain background and noise‑free surroundings are required. A company meeting room is recommended if available, with a backup internet connection (VPN is not mandatory).

·Exam Format: 65 multiple‑choice questions. Total score is 1000 points; a score of 700 or higher is required to pass.

·Exam Duration: 90 minutes. Score reports will be sent via email within one business day after completion.

Sample questions

CLF-C02 · Q1
Topic 1 Question #1 A company plans to use an Amazon Snowball Edge device to transfer files to the AWS Cloud.Which activities related to a Snowball Edge device are available to the company at no cost?
  • A.
    Use of the Snowball Edge appliance for a 10-day period
  • B.
    The transfer of data out of Amazon S3 and to the Snowball Edge appliance
  • C.
    The transfer of data from the Snowball Edge appliance into Amazon S3
  • D.
    Daily use of the Snowball Edge appliance after 10 days

Answer: C

Option Analysis: A. Option A is incorrect because the 10-day free use period only applies to standard Amazon Snowball (not Snowball Edge) devices, and Snowball Edge does not include 10 days of free appliance use. B. Option B is incorrect because data transfer out from Amazon S3 to a Snowball Edge device is billed at standard AWS data transfer rates, so this activity is not free. C. Option C is correct because AWS does not charge for data transfer in from a Snowball Edge device into Amazon S3, so this activity is available at no cost. D. Option D is incorrect because daily use of a Snowball Edge appliance after the initial period (and for all days of Snowball Edge use generally) incurs usage fees, so this is not free. Key Concept: AWS Snowball Edge pricing follows a model where inbound data transfer into AWS from the device is free, while device usage and outbound data transfer from AWS to the device incur standard charges. References: AWS Snowball Pricing, https://aws.amazon.com/snowball/pricing/ What is AWS Snowball Edge?, https://docs.aws.amazon.com/snowball/latest/developer-guide/what-is-snowball-edge.html
CLF-C02 · Q2
Topic 1 Question #2 A company has deployed applications on Amazon EC2 instances. The company needs to assess application vulnerabilities and must identify infrastructure deployments that do not meet best practices.Which AWS service can the company use to meet these requirements?
  • A.
    AWS Trusted Advisor
  • B.
    Amazon Inspector
  • C.
    AWS Config
  • D.
    Amazon GuardDuty

Answer: B

Option Analysis: A. Option A is incorrect because AWS Trusted Advisor provides cost optimization, performance, security, and fault tolerance best practice checks for AWS accounts and infrastructure, but it does not perform application vulnerability assessment on EC2 instances. B. Option B is correct because Amazon Inspector is a vulnerability assessment service that automatically scans EC2 instances and container workloads for application vulnerabilities and deviations from infrastructure best practices. C. Option C is incorrect because AWS Config is used to track, audit, and evaluate configuration changes to AWS resources, it does not assess application vulnerabilities. D. Option D is incorrect because Amazon GuardDuty is a threat detection service that monitors for malicious activity and unauthorized behavior on AWS accounts and resources, it does not scan for application vulnerabilities. Key Concept: Amazon Inspector is AWS' dedicated vulnerability management service used to assess EC2 workloads for software vulnerabilities and non-compliant infrastructure configurations. References: Amazon Inspector Documentation, https://docs.aws.amazon.com/inspector/latest/user/what-is-inspector.html What is Amazon Inspector?, https://aws.amazon.com/inspector/
CLF-C02 · Q3
Topic 1 Question #3 A company has a centralized group of users with large file storage requirements that have exceeded the space available on premises. The company wants to extend its file storage capabilities for this group while retaining the performance benefit of sharing content locally.What is the MOST operationally efficient AWS solution for this scenario?
  • A.
    Create an Amazon S3 bucket for each user. Mount each bucket by using an S3 file system mounting utility.
  • B.
    Configure and deploy an AWS Storage Gateway file gateway. Connect each user’s workstation to the file gateway.
  • C.
    Move each user’s working environment to Amazon WorkSpaces. Set up an Amazon WorkDocs account for each user.
  • D.
    Deploy an Amazon EC2 instance and attach an Amazon Elastic Block Store (Amazon EBS) Provisioned IOPS volume. Share the EBS volume directly with the users.

Answer: B

Option Analysis: A. Option A is incorrect because mounting S3 buckets with third-party utilities is not operationally efficient, does not natively provide consistent local file sharing performance, and requires manual management of individual buckets per user. B. Option B is correct because AWS Storage Gateway file gateway enables on-premises users to mount and access AWS cloud storage as a local file share, extending on-premises storage capacity while retaining local shared file performance, and is operationally efficient for this use case. C. Option C is incorrect because moving all users to Amazon WorkSpaces and WorkDocs is not operationally efficient, as it requires migrating entire working environments rather than just extending existing on-premises file storage. D. Option D is incorrect because an Amazon EBS volume cannot be directly shared simultaneously to multiple on-premises users, and managing shared storage via an EC2 instance is far more operationally intensive than a managed AWS service purpose-built for this use case. Key Concept: AWS Storage Gateway is a hybrid cloud storage service that enables on-premises applications to seamlessly access AWS cloud storage, extending on-premises storage capacity while retaining local file share access and performance. References: What is AWS Storage Gateway?, https://docs.aws.amazon.com/storagegateway/latest/userguide/what-is-storage-gateway.html File Gateway Concepts, https://docs.aws.amazon.com/storagegateway/latest/userguide/file-gateway-concepts.html
CLF-C02 · Q4
Topic 1 Question #4 According to security best practices, how should an Amazon EC2 instance be given access to an Amazon S3 bucket?
  • A.
    Hard code an IAM user’s secret key and access key directly in the application, and upload the file.
  • B.
    Store the IAM user’s secret key and access key in a text file on the EC2 instance, read the keys, then upload the file.
  • C.
    Have the EC2 instance assume a role to obtain the privileges to upload the file.
  • D.
    Modify the S3 bucket policy so that any service can upload to it at any time.

Answer: C

Option Analysis: A. This option is incorrect because hardcoding IAM user access keys in application code is a critical security risk that exposes credentials to unauthorized access. B. This option is incorrect because storing IAM access keys in a text file on an EC2 instance is insecure and violates AWS security best practices for credential management. C. This option is correct because using an IAM role assigned to an EC2 instance provides temporary, least-privilege access to S3 without requiring long-term stored credentials, which aligns with AWS security best practices. D. This option is incorrect because allowing any service to upload to the S3 bucket at any time opens the bucket to unauthorized access and data compromise, violating basic security best practices. Key Concept: AWS security best practices for granting EC2 instances access to S3 recommend using IAM roles instead of long-term access credentials to eliminate credential exposure risks. References: IAM roles for Amazon EC2, https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html Security best practices in IAM, https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html
CLF-C02 · Q5
Topic 1 Question #5 Which option is a customer responsibility when using Amazon DynamoDB under the AWS Shared Responsibility Model?
  • A.
    Physical security of DynamoDB
  • B.
    Patching of DynamoDB
  • C.
    Access to DynamoDB tables
  • D.
    Encryption of data at rest in DynamoDB

Answer: C

Option Analysis: A. Option A is incorrect because physical security of all AWS managed services, including DynamoDB, is an AWS responsibility under the Shared Responsibility Model. B. Option B is incorrect because infrastructure and service patching for managed DynamoDB is handled by AWS, not the customer. C. Option C is correct because managing user access permissions to your own DynamoDB tables is a clear customer responsibility under the AWS Shared Responsibility Model. D. Option D is incorrect because AWS handles encryption of data at rest in DynamoDB by default (AWS owned KMS keys), so this is not a required customer responsibility. Key Concept: Under the AWS Shared Responsibility Model, AWS is responsible for security *of* the cloud, while customers are responsible for security *in* the cloud, including managing access to their own resources. References: AWS Shared Responsibility Model, https://aws.amazon.com/compliance/shared-responsibility-model/ Amazon DynamoDB Security, https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Security.html

FAQ

Is CLF-C02 good for beginners?

Yes, it is AWS's foundational entry-level certification.

What is the passing score for CLF-C02?

You need 700 out of 1000 to pass.

How many practice questions are available for CLF-C02?

This question bank includes 719 CLF-C02 practice questions covering single and multiple choice, each with answers and explanations.

Are CLF-C02 practice questions available in Chinese and English?

Yes, CLF-C02 practice questions are provided in both Chinese and English.

Can I try CLF-C02 practice questions for free?

Yes. Free sample questions are available on this page, and the full question bank is available after signing up on Zhangxuetu.