Welcome to Part 7 of our dedicated preparation series for the AWS Certified Cloud Practitioner (CLF-C02) certification. Storing and protecting data efficiently in the cloud is a core competency heavily tested under Domain 3 (Cloud Technology and Services). While reading theoretical documentation gives you a baseline, solving realistic, scenario-based questions is the fastest and most reliable way to master AWS Storage Services, object vs. block storage, shared file systems, hybrid gateways, and large-scale data transfer before your test day.
| AWS Storage Services CLF-C02 Practice Exam – S3, EBS, EFS, Snow Family |
In this aws cloud practitioner practice test free study guide (Part 7), we break down 20 high-yield exam questions (Questions 1 through 20) focused specifically on AWS Storage Services. You will test and validate your knowledge of Amazon S3 storage classes (S3 Standard, Intelligent-Tiering, Glacier Flexible & Deep Archive), Amazon Elastic Block Store (Amazon EBS) volume types, Amazon Elastic File System (Amazon EFS), AWS Storage Gateway hybrid solutions, centralized protection with AWS Backup, and petabyte-scale offline data migrations using the AWS Snow Family (Snowcone, Snowball, and Snowmobile). Every question includes a simple, clear explanation explaining why the correct answer is right and why the other options fail AWS architectural best practices.
AWS Cloud Practitioner (CLF-C02) Practice Questions
Q1: Hybrid Cloud Tape Backup & Virtual Tape Library
A company wants to replace its on-premises physical tape backup infrastructure with a cloud-based solution. The company must connect its existing backup application to virtual tapes over an iSCSI connection without changing current backup workflows.
Which AWS service should the company use to meet these requirements?
• Why AWS Storage Gateway is correct: AWS Storage Gateway (specifically Tape Gateway) presents an iSCSI-based Virtual Tape Library (VTL) to your existing backup software. This allows organizations to eliminate physical tape media and tape automation hardware by writing backups to virtual tapes backed by cost-effective Amazon S3, S3 Glacier Flexible Retrieval, and S3 Glacier Deep Archive without changing existing workflows.
Why are the other options incorrect?
• Amazon Elastic Block Store (Amazon EBS): Amazon EBS provides persistent, raw block-level storage volumes designed to attach directly to Amazon EC2 instances in the cloud, not as an on-premises virtual tape replacement.
• Amazon Elastic File System (Amazon EFS): Amazon EFS is a managed, serverless Network File System (NFS) designed for Linux-based workloads to share files, not an iSCSI-based tape library.
• AWS Transfer Family: AWS Transfer Family manages secure file transfers into Amazon S3 or Amazon EFS using protocols such as SFTP, FTPS, and FTP, rather than emulating tape backup systems.
Q2: Accidental Overwrite & Deletion Protection in Amazon S3
A company wants to protect critical documents stored in Amazon S3 against accidental overwrites and unintended deletions. The company needs a solution that retains prior iterations of objects so users can easily restore earlier copies if needed.
Which Amazon S3 feature should the company enable to meet this requirement?
• Why Amazon S3 Versioning is correct: Amazon S3 Versioning preserves multiple variants of an object in the same bucket. When enabled, overwriting a file adds a new version while keeping the previous version intact. Additionally, deleting a file applies a delete marker instead of permanently purging it, allowing administrators to restore previous versions easily.
Why are the other options incorrect?
• Amazon S3 Lifecycle management: Amazon S3 Lifecycle management automates object transitions between different storage tiers (such as moving older files to S3 Glacier) or deletes objects based on predefined expiration schedules. It does not manage file history or version recovery.
• Amazon S3 Server-Side Encryption (SSE): Amazon S3 Server-Side Encryption (SSE) protects data at rest by encrypting object content on disk. While vital for compliance and data protection, it does not prevent users from overwriting or deleting objects.
• Amazon S3 Storage Lens: Amazon S3 Storage Lens is an analytics tool that gives organization-wide visibility into object storage usage, activity trends, and cost-optimization recommendations; it does not preserve or restore historical versions of files.
Q3: Amazon EBS Availability Zone Boundaries (True/False)
An engineer is planning high-availability disk configurations for compute workloads deployed across multiple data centers within the same AWS Region.
True or False: A standard Amazon Elastic Block Store (Amazon EBS) volume can be attached directly to an Amazon EC2 instance that is running in a different Availability Zone within the same AWS Region.
• Why False is correct: Amazon EBS volumes are strictly Availability Zone-bound resources. An EBS volume can only be attached directly to an Amazon EC2 instance residing in the exact same Availability Zone. To move or use EBS data in a different Availability Zone, you must first create an EBS snapshot of the volume and then restore that snapshot as a new EBS volume inside the target Availability Zone.
• Why True is incorrect: EBS volumes do not have cross-Availability Zone attachment capabilities; network latency and underlying physical architecture restrict EBS volume attachments to instances in the same AZ.
Q4: Cost-Effective Durable Log File Storage
A company generates large volumes of application and web server access logs daily. The company needs to retain these log files durably for historical analytics while keeping storage costs to a minimum.
Which AWS service provides the MOST cost-effective solution for storing these log files?
• Why Amazon S3 is correct: Amazon Simple Storage Service (Amazon S3) is an object storage service designed to deliver 99.999999999% (11 9s) of data durability at extremely low cost per gigabyte. It is the industry standard for storing unstructured log data and data lake architectures, allowing companies to store vast amounts of logs economically and query them in place using analytics tools like Amazon Athena.
Why are the other options incorrect?
• Amazon Aurora: Amazon Aurora is a managed relational database engine built for transactional workloads (OLTP). Using a database engine to store raw log files is impractical and significantly more expensive than object storage.
• Amazon Elastic Block Store (Amazon EBS): Amazon EBS provides block storage volumes directly attached to Amazon EC2 instances. EBS volumes have a substantially higher cost per gigabyte compared to Amazon S3 and are not designed for bulk, long-term log retention.
• Amazon Elastic File System (Amazon EFS): Amazon EFS provides a managed, concurrent Network File System (NFS) for shared access. Although scalable, its cost per gigabyte is considerably higher than Amazon S3 object tiers.
Q5: Amazon S3 Cumulative Bucket Storage Limits
A company is designing a centralized data lake on AWS to store vast amounts of business data. As part of capacity planning, the cloud architecture team needs to determine the storage capacity limits of an Amazon S3 bucket.
What is the maximum total volume of data that can be stored in a single Amazon S3 bucket?
• Why Virtually unlimited is correct: Amazon S3 provides virtually unlimited total storage capacity and can store an unlimited number of objects within a single bucket. There is no need to pre-allocate storage or configure capacity thresholds; S3 automatically scales to support any volume of data.
Why are the other options incorrect?
• 5 TB: 5 TB is the maximum size allowed for a single individual object stored in Amazon S3, not the storage limit for the entire bucket.
• 100 PB: 100 PB is an arbitrary number. Amazon S3 imposes no such ceiling on bucket capacity.
• 1 Exabyte: 1 Exabyte is also an arbitrary limit. Amazon S3 does not enforce an upper bound on cumulative bucket storage.
Q6: S3 Global Upload Acceleration (Fill in the Blanks)
A global digital media application allows users worldwide to upload large 4K video files to a centralized Amazon S3 bucket located in the us-east-1 (N. Virginia) Region. Because users are distributed globally, public internet latency causes uploads to be slow and inconsistent.
Choose the correct options from the dropdown menus to complete the architectural solution:
Select Dropdown 1:
Select Dropdown 2:
• Why Dropdown 1 is Amazon S3 Transfer Acceleration: Amazon S3 Transfer Acceleration is specifically designed to enable fast, easy, and secure transfers of files over long distances between client devices and an S3 bucket. It takes advantage of the globally distributed AWS Edge Locations instead of relying solely on the public internet.
• Why Dropdown 1 (Multipart Upload & Object Lambda) are incorrect: S3 Multipart Upload breaks files into chunks to parallelize uploads, but it still traverses the public internet and does not use edge routing on its own. S3 Object Lambda is used to transform data retrieved from S3 on the fly with custom code, having nothing to do with accelerating file ingress.
• Why Dropdown 2 is AWS Edge Locations: Amazon CloudFront's globally distributed Edge Locations serve as the entry points for S3 Transfer Acceleration. Data reaches the nearest Edge Location over the public internet and is then routed over the private, optimized AWS global backbone directly to the target S3 bucket.
• Why Dropdown 2 (Direct Connect & Local Zones) are incorrect: AWS Direct Connect locations are dedicated colocation facilities establishing private fiber connections to AWS, not automated upload caching endpoints. AWS Local Zones place compute and storage closer to specific metropolitan centers for single-digit millisecond latency, rather than acting as CloudFront edge ingest points.
Q7: 11 9s Durability & Scalable Object Storage
A company needs a highly scalable cloud storage solution to store backups, multimedia files, and static web assets. The solution must deliver 99.999999999% (11 9s) of data durability and provide object-level storage accessible over the internet.
Which AWS service meets these requirements?
• Why Amazon S3 is correct: Amazon Simple Storage Service (Amazon S3) is an industry-standard object storage service built to store and retrieve any amount of data from anywhere. It replicates objects redundantly across multiple Availability Zones within an AWS Region to deliver 99.999999999% (11 9s) of data durability, making it ideal for media files, data lakes, backups, and static website hosting.
Why are the other options incorrect?
• Amazon Elastic Block Store (Amazon EBS): Amazon EBS delivers persistent block-level storage volumes designed to be attached to individual Amazon EC2 instances, not internet-accessible object storage.
• Amazon Elastic File System (Amazon EFS): Amazon EFS is a serverless, managed network file system (NFS) for shared file storage across Linux instances, not an object store.
• Amazon FSx: Amazon FSx is a suite of managed third-party file systems (such as FSx for Windows File Server, FSx for Lustre, and FSx for NetApp ONTAP), providing file storage rather than scalable object storage.
Q8: Lowest-Cost Long-Term Archival Storage
A healthcare company must comply with industry regulations by retaining patient records for 10 years. The records are accessed rarely, typically only once or twice a year, and the company can tolerate a retrieval timeframe of up to 12 hours.
Which Amazon S3 storage class provides the LOWEST storage cost per gigabyte for these requirements?
• Why Amazon S3 Glacier Deep Archive is correct: Amazon S3 Glacier Deep Archive is the lowest-cost storage tier in AWS. It is engineered specifically for long-term digital preservation and regulatory compliance archives where objects are accessed rarely (once or twice a year) and retrieval timeframes of 12 to 48 hours are acceptable.
Why are the other options incorrect?
• Amazon S3 Standard: Amazon S3 Standard is designed for active, frequently accessed data and has the highest storage cost per gigabyte, making it cost-prohibitive for 10-year archival records.
• Amazon S3 Standard-Infrequent Access (S3 Standard-IA): Amazon S3 Standard-Infrequent Access (S3 Standard-IA) is meant for data that is accessed less often but requires rapid, millisecond-level retrieval, carrying much higher monthly storage rates than Glacier tiers.
• Amazon S3 One Zone-Infrequent Access (S3 One Zone-IA): Amazon S3 One Zone-Infrequent Access (S3 One Zone-IA) is intended for infrequently accessed, reproducible data stored within a single Availability Zone. Its per-gigabyte price is significantly higher than S3 Glacier Deep Archive, and it does not provide the multi-AZ resilience typically needed for compliance-bound medical records.
Q9: Amazon S3 Security & Compliance Controls (Yes/No)
A cloud architect is reviewing the built-in security, governance, and compliance controls for data stored in Amazon S3.
Determine whether each of the following statements regarding Amazon S3 security and compliance is Yes (True) or No (False):
1. Amazon S3 automatically applies server-side encryption (SSE-S3) by default to all newly uploaded objects at no additional charge.
2. Amazon S3 Object Lock allows organizations to enforce a Write Once, Read Many (WORM) model to prevent files from being deleted or overwritten during a specified retention period.
3. By default, Amazon S3 Block Public Access is disabled when creating a new bucket, requiring administrators to manually configure it to block public internet traffic.
• Statement 1 is Yes: AWS enforces default 256-bit AES server-side encryption (SSE-S3) on all new buckets and objects uploaded to Amazon S3 at no additional cost. Users do not need to configure custom bucket policies just to enable baseline encryption at rest.
• Statement 2 is Yes: Amazon S3 Object Lock provides Write Once, Read Many (WORM) storage. It allows organizations to prevent objects from being deleted or overwritten for a fixed retention period or indefinitely via legal hold, making it ideal for regulatory compliance (such as SEC Rule 17a-4).
• Statement 3 is No: By default, Amazon S3 Block Public Access is enabled for all newly created S3 buckets. AWS applies this guardrail automatically to prevent public read/write exposure unless an administrator explicitly turns it off.
Q10: Shared Cloud File Storage (Amazon EFS & Amazon FSx)
A cloud practitioner is categorizing AWS storage services based on how data is organized, stored, and accessed.
Which type of storage architecture is provided by both Amazon Elastic File System (Amazon EFS) and Amazon FSx?
• Why File storage is correct: Both Amazon EFS and Amazon FSx belong to the File storage category. They present data in a hierarchical file-and-folder directory structure and support concurrent multi-instance access using standard network protocols, such as Network File System (NFS) for Amazon EFS and Server Message Block (SMB) or Lustre for Amazon FSx.
Why are the other options incorrect?
• Block storage: Block storage manages data as raw, unformatted, fixed-size chunks (blocks) without a native file system hierarchy until formatted by an operating system. Examples include Amazon Elastic Block Store (Amazon EBS) and EC2 Instance Store.
• Object storage: Object storage stores data as discrete units (objects) containing data, metadata, and globally unique identifiers, accessed over the internet via HTTP/HTTPS REST APIs, as exemplified by Amazon Simple Storage Service (Amazon S3).
• Ephemeral instance store: Ephemeral instance store is a specific form of temporary, host-attached block storage designed for scratchpad data and temporary caching, not a shared multi-instance file system architecture.
Q11: Multi-AZ Resilient Shared File Storage (Amazon EFS)
A media company uses Amazon Elastic File System (Amazon EFS) to store shared media files. The company requires multi-Availability Zone resilience across the AWS Region. The files are accessed infrequently but must be immediately accessible when requested.
Which Amazon EFS storage class provides the MOST cost-effective solution to meet these requirements?
• Why Amazon EFS Standard-IA is correct: Amazon EFS Standard-Infrequent Access (EFS Standard-IA) is cost-optimized for files that are accessed infrequently or not needed every day. It retains multi-Availability Zone availability and durability across the entire AWS Region while providing immediate, low-latency access whenever files are requested.
Why are the other options incorrect?
• Amazon EFS One Zone-Infrequent Access (EFS One Zone-IA): Amazon EFS One Zone-IA stores data redundantly within a single Availability Zone, failing the architectural requirement for multi-AZ regional resilience.
• Amazon EFS Standard: Amazon EFS Standard is engineered for active, frequently accessed workloads and carries a much higher baseline per-gigabyte monthly storage cost compared to the Standard-IA tier.
• Amazon EFS One Zone: Amazon EFS One Zone stores data within only one Availability Zone without multi-AZ protection and has a higher storage price per gigabyte than the One Zone-IA tier.
Q12: Offline Data Transport & Edge Migration (Select 2)
A geological survey team operates in a remote desert facility with limited and unreliable internet connectivity. The team generates 50 TB of raw sensor data that must be securely transported and migrated to Amazon S3 for cloud-based processing.
Which TWO AWS Snow Family devices can the team use to collect and physically transport this data offline to AWS? (Select TWO)
• Why AWS Snowball Edge is correct: AWS Snowball Edge is a ruggedized physical hardware device designed for edge compute and large-scale data migration. It provides high-capacity storage (up to petabyte scale across multiple devices) and local compute capabilities, allowing users to ship physical appliances directly back to AWS data centers for ingestion into Amazon S3 without using the internet.
• Why AWS Snowcone is correct: AWS Snowcone is the smallest, highly portable member of the AWS Snow Family (weighing only about 4.5 lbs). It provides ruggedized edge compute and local storage (up to 8 TB usable storage) and can be physically shipped back to AWS or synced to S3 when network connectivity becomes available.
Why are the other options incorrect?
• AWS Storage Gateway: AWS Storage Gateway is a hybrid storage service that requires an ongoing network/internet connection between the local environment and AWS to sync data; it does not offer physical hardware shipping for disconnected environments.
• AWS Transfer Family: AWS Transfer Family manages file transfers over protocols like SFTP, FTPS, and FTP over an active internet or private network connection.
• AWS Direct Connect: AWS Direct Connect is a dedicated physical fiber-optic network link from an on-premises data center to AWS; it does not solve offline data transfer in remote locations without network infrastructure.
Q13: Hybrid Cloud Protocols & Local Caching
An enterprise operates an on-premises data center and needs a hybrid cloud storage solution. The solution must allow local applications to access virtually unlimited cloud storage seamlessly by using standard storage protocols, such as NFS, SMB, and iSCSI.
Which AWS service should the enterprise use to meet these requirements?
• Why AWS Storage Gateway is correct: AWS Storage Gateway is a hybrid cloud storage service that bridges on-premises environments with AWS cloud storage. It allows local servers and applications to connect to cloud storage using standard file, block, and tape protocols (such as NFS, SMB, iSCSI, and iSCSI-VTL) while maintaining a local cache for low-latency access.
Why are the other options incorrect?
• Amazon FSx: Amazon FSx is a fully managed service for running third-party file systems (such as FSx for Windows File Server and FSx for Lustre) within the AWS Cloud; it is not primarily an on-premises hybrid storage appliance.
• AWS Fargate: AWS Fargate is a serverless compute engine for containerized applications running on Amazon ECS or Amazon EKS, not a hybrid storage service.
• Amazon Simple Storage Service (Amazon S3): Amazon Simple Storage Service (Amazon S3) is an object storage service accessed through REST APIs over HTTPS. It does not natively provide file shares or block storage using traditional protocols like NFS, SMB, or iSCSI directly to local data centers without an integration service such as AWS Storage Gateway.
Q14: AWS Storage Services & Workload Capabilities (Matching)
An enterprise is selecting storage solutions for diverse cloud workloads, including high-performance scientific simulations, Windows file shares, point-in-time database storage, and long-term regulatory archives.
Match each AWS Storage Service to its primary workload or architectural capability:
• 1. Amazon FSx for Windows File Server
• 2. Amazon FSx for Lustre
• 3. Amazon EBS Provisioned IOPS SSD (io2)
• 4. Amazon S3 Glacier Flexible Retrieval
Primary Workloads & Capabilities:
• W. A high-performance, POSIX-compliant shared file system optimized for compute-heavy workloads like machine learning, HPC, and video rendering.
• X. A fully managed file storage service built on Windows Server, offering native SMB protocol support and Microsoft Active Directory integration.
• Y. A low-cost archival storage class that provides free bulk data retrieval within 5 to 12 hours or expedited retrieval within minutes.
• Z. A high-performance block storage volume designed for mission-critical, I/O-intensive databases with support for attaching to multiple EC2 instances (Multi-Attach).
• 1 matches X (Amazon FSx for Windows File Server): Provides fully managed shared file storage built natively on Windows Server, featuring native SMB protocol support, NTFS permissions, and integration with Microsoft Active Directory.
• 2 matches W (Amazon FSx for Lustre): Designed for high-performance computing (HPC), big data analytics, and machine learning, delivering sub-millisecond latencies and hundreds of gigabytes per second of throughput.
• 3 matches Z (Amazon EBS Provisioned IOPS SSD io2): High-performance block storage designed for latency-sensitive, high-throughput database workloads (like Oracle and SAP HANA) and supports EBS Multi-Attach.
• 4 matches Y (Amazon S3 Glacier Flexible Retrieval): Provides low-cost archival storage with flexible access tiers, offering free bulk retrievals (5–12 hours), standard retrievals (3–5 hours), and expedited retrievals (1–5 minutes).
Q15: Cross-AZ EBS Volume Migration Sequence (Ordering)
A solutions architect is automating disaster recovery and backup procedures for an Amazon EC2 instance. The instance utilizes an Amazon Elastic Block Store (Amazon EBS) volume as its root drive. The architect needs to copy this volume to another Availability Zone to launch a duplicate workload.
Place the following steps in the CORRECT chronological order to accomplish this task:
• Step A: Attach the newly provisioned Amazon EBS volume to a target EC2 instance.
• Step B: Create a point-in-time snapshot of the active Amazon EBS volume.
• Step C: Create a new Amazon EBS volume referencing the snapshot and select the destination Availability Zone.
• Step D: Wait for the snapshot data to finish asynchronously copying and persisting redundantly in Amazon S3.
• Why Step B comes 1st: EBS snapshots capture a point-in-time state of the block volume. The process must begin by initiating this snapshot request.
• Why Step D comes 2nd: EBS snapshots are stored under the hood in Amazon S3. Before you can reliably restore a volume from a new snapshot, the initial snapshot state must finish writing and transitioning to the completed state.
• Why Step C comes 3rd: Because Amazon EBS volumes are Availability Zone-bound, you cannot simply attach a volume across AZ boundaries. You must first create a new EBS volume from the snapshot and assign it directly to the target Availability Zone.
• Why Step A comes 4th: Once the volume is provisioned in the target Availability Zone, it is attached as a virtual block device to the target EC2 instance in that same AZ.
Q16: Unpredictable Access Patterns & S3 Intelligent-Tiering
A media company stores millions of multimedia files in Amazon S3. The access patterns for these files are unpredictable and continuously fluctuate, with some files accessed frequently and others rarely viewed.
Which Amazon S3 storage class should the company use to automatically optimize storage costs without operational overhead or data retrieval fees?
• Why Amazon S3 Intelligent-Tiering is correct: Amazon S3 Intelligent-Tiering is specifically designed to optimize storage costs automatically for datasets with unknown, changing, or unpredictable access patterns. It monitors access activity and moves objects among low-latency access tiers (Frequent, Infrequent, and Archive Instant Access) without performance impact or data retrieval fees.
Why are the other options incorrect?
• Amazon S3 Standard-Infrequent Access (S3 Standard-IA): Amazon S3 Standard-IA is intended for data that is accessed infrequently but requires rapid millisecond retrieval. It incurs a per-gigabyte retrieval fee, which can make it costly if files are accessed frequently.
• Amazon S3 One Zone-Infrequent Access (S3 One Zone-IA): Amazon S3 One Zone-IA stores data in a single Availability Zone for non-critical, rarely accessed files. It charges retrieval fees and does not provide multi-AZ resilience or automated tier transitions.
• Amazon S3 Standard: Amazon S3 Standard is optimized for active, frequently accessed data. It carries the highest baseline storage cost per gigabyte, making it uneconomical for files that become dormant over time.
Q17: Amazon EBS Snapshot Architecture & Lifecycle (Select 2)
An infrastructure engineer is designing a data protection strategy for Amazon EC2 workloads using Amazon Elastic Block Store (Amazon EBS) snapshots.
Which TWO statements correctly describe the characteristics and operational behavior of Amazon EBS snapshots? (Select TWO)
• Why incremental snapshots is correct: Amazon EBS snapshots are incremental backups. The first snapshot of a volume copies all data blocks; each subsequent snapshot saves only the blocks that were added or modified since the previous snapshot, minimizing storage costs and backup time.
• Why S3 persistence is correct: AWS manages snapshot storage automatically by persisting snapshot data across multiple Availability Zones in Amazon Simple Storage Service (Amazon S3), providing 99.999999999% (11 9s) of durability without requiring users to maintain an S3 bucket.
Why are the other options incorrect?
• Option A: You can take a snapshot while an EBS volume is attached and actively running. While pausing disk writes or unmounting can ensure file system consistency for critical databases, shutting down the instance completely is not mandatory.
• Option B: AWS EBS snapshot management ensures that deleting a snapshot only removes data unique to that snapshot; any data blocks referenced by subsequent snapshots are automatically retained.
• Option D: While an EBS volume itself is tied to a single Availability Zone, its snapshots can be used to restore new EBS volumes in any Availability Zone within that AWS Region, or copied to other Regions entirely.
Q18: S3 Cross-Region Replication Prerequisites (True/False)
A security team is configuring automated disaster recovery by replicating object data between an Amazon S3 bucket in Europe and another bucket in North America.
True or False: To enable Amazon S3 Cross-Region Replication (CRR), Amazon S3 Versioning must be explicitly enabled on both the source bucket and the destination bucket.
• Why True is correct: Amazon S3 Cross-Region Replication (CRR) strictly requires that Amazon S3 Versioning is enabled on both the source bucket and the destination bucket. Versioning ensures that unique object versions and delete markers can be tracked and replicated accurately between Regions.
• Why False is incorrect: You cannot configure or initiate S3 replication rules if either bucket has Versioning disabled or suspended.
Q19: High-Speed Ephemeral Block Storage (EC2 Instance Store)
An application running on an Amazon EC2 instance requires high-speed, low-latency block storage for scratch space, temporary caches, and buffers. The data does not need to persist if the EC2 instance is stopped or terminated.
Which AWS storage option best meets these requirements?
• Why EC2 Instance Store is correct: An EC2 Instance Store provides temporary (ephemeral) block-level storage located on disks physically attached to the underlying host server. It offers very low latency and high random I/O performance, making it ideal for temporary buffers, caches, and scratchpad data. However, data is lost when the instance is stopped, hibernated, or terminated.
Why are the other options incorrect?
• Amazon Elastic Block Store (Amazon EBS): Amazon EBS provides durable, network-attached persistent block storage volumes that retain data independently of the EC2 instance lifecycle and survive instance stops and starts.
• Amazon Elastic File System (Amazon EFS): Amazon EFS is a managed, persistent, multi-AZ network file system (NFS) for shared file access across multiple instances, not host-attached ephemeral block storage.
• AWS Storage Gateway: AWS Storage Gateway is a hybrid cloud service that connects on-premises environments to cloud storage services like Amazon S3, rather than providing local instance disks.
Q20: Centralized Multi-Service Backup Management (AWS Backup)
An enterprise needs a centralized, policy-driven service to automate and manage backup scheduling, retention rules, and compliance across various AWS services—including Amazon EBS volumes, Amazon EFS file systems, Amazon S3 buckets, and Amazon RDS databases.
Which AWS service should the enterprise use to manage these backups from a single console?
• Why AWS Backup is correct: AWS Backup is a fully managed, policy-based service that centralizes and automates data protection across AWS services (such as Amazon EBS, Amazon EFS, Amazon S3, Amazon RDS, Amazon DynamoDB, and AWS Storage Gateway). It allows organizations to configure backup policies, automate retention schedules, monitor backup compliance, and restore data from a single unified management console.
Why are the other options incorrect?
• Amazon Data Lifecycle Manager (Amazon DLM): Amazon Data Lifecycle Manager (Amazon DLM) automates the creation, retention, and deletion of Amazon EBS snapshots and EBS-backed AMIs only; it does not provide centralized multi-service backup across EFS, S3, or RDS.
• AWS Storage Gateway: AWS Storage Gateway connects on-premises environments with AWS cloud storage via hybrid protocols; it is not a centralized cloud backup management engine.
• AWS Config: AWS Config assesses, audits, and evaluates the configurations of AWS resources against desired compliance rules, but it does not create or manage data backups itself.
AWS Storage Services Cheat Sheet: Quick Comparison
Use this quick-reference comparison table to review the core differences between object, block, and file storage models on AWS before taking the CLF-C02 exam:
| Service | Storage Type | Access Protocol | Persistence & Scope | Ideal Exam Scenario |
|---|---|---|---|---|
| Amazon S3 | Object Storage | REST API (HTTP/HTTPS) | Regional (Multi-AZ), 11 9s Durability | Static websites, multimedia files, backups, data lakes, virtually unlimited capacity. |
| Amazon EBS | Block Storage | Direct virtual drive attachment | AZ-bound, persistent across instance stops | EC2 root boot volumes, transactional databases (Oracle, PostgreSQL), low-latency I/O. |
| Amazon EFS | File Storage (NFS) | NFSv4 (Linux workloads) | Regional (Multi-AZ), concurrent shared access | Shared file directories, content management systems (WordPress), parallel computing. |
| Amazon FSx | File Storage (SMB/Lustre) | SMB, Lustre, NetApp ONTAP | AZ or Multi-AZ managed clusters | Native Windows file shares (Active Directory), sub-millisecond HPC and machine learning. |
| EC2 Instance Store | Block Storage | Host-attached physical NVMe/SSD | Ephemeral (lost on instance stop/termination) | Ultra-fast temporary scratch space, cache buffers, transient processing data. |
| AWS Storage Gateway | Hybrid Storage | NFS, SMB, iSCSI, iSCSI-VTL | On-premises appliance synced to AWS S3 | Hybrid cloud integration, local caching, replacing physical tape backups seamlessly. |
Key Takeaways for AWS Storage Services (Part 7 Summary)
• Amazon S3 Storage Classes & Lifecycle: S3 Standard is built for active, frequent access. S3 Intelligent-Tiering automatically saves costs on unpredictable access patterns without retrieval fees. S3 Standard-IA and One Zone-IA provide lower storage rates for infrequent access. S3 Glacier Flexible Retrieval and S3 Glacier Deep Archive offer the lowest-cost archival tiers for compliance records (12–48 hour retrieval).
• Block Storage (Amazon EBS vs. Instance Store): Amazon EBS provides persistent, network-attached block volumes tied to a single Availability Zone that survive instance termination. EC2 Instance Store provides temporary (ephemeral) host-attached disks for high-speed scratch space, but all data is lost when the instance is stopped or terminated.
• Shared File Storage (Amazon EFS vs. Amazon FSx): Amazon EFS is a serverless, scalable Network File System (NFS) designed for Linux-based workloads across multiple AZs. Amazon FSx provides fully managed third-party file systems, including FSx for Windows File Server (SMB and Active Directory) and FSx for Lustre (High-Performance Computing and ML).
• Hybrid Cloud Storage (AWS Storage Gateway): Bridges on-premises data centers to virtually unlimited cloud storage using standard protocols. Includes File Gateway (NFS/SMB for S3), Volume Gateway (iSCSI block storage backed by EBS snapshots), and Tape Gateway (iSCSI-VTL to replace physical tape backups).
• Offline Data Migration (AWS Snow Family) & Centralized Protection: Use AWS Snowcone (up to 8 TB) and AWS Snowball Edge (petabyte-scale) to physically migrate data from edge locations without internet access. Use AWS Backup to centralize, schedule, and automate policy-driven backups across S3, EBS, EFS, RDS, and DynamoDB from a single console.
Frequently Asked Questions (AWS CLF-C02 FAQ)
1. What are the Amazon S3 storage classes and when should each be used?
Amazon S3 provides multiple storage tiers engineered for different data access profiles: S3 Standard is best for frequently accessed, active data. S3 Intelligent-Tiering is ideal when access patterns are unpredictable or fluctuating, moving files automatically across tiers to reduce costs with no retrieval fees. S3 Standard-IA is suited for data accessed less often but requiring millisecond retrieval. S3 Glacier Flexible Retrieval (formerly Glacier) handles regular archives with retrieval times from minutes to hours. S3 Glacier Deep Archive provides the lowest-cost cloud storage for long-term compliance retention where 12-hour retrieval is acceptable.
2. What is the fundamental difference between Amazon EBS and Amazon EFS?
Amazon Elastic Block Store (Amazon EBS) delivers block-level storage volumes designed to attach to a single Amazon EC2 instance within the same Availability Zone (acting like a virtual hard drive). In contrast, Amazon Elastic File System (Amazon EFS) provides a managed, serverless file system (NFS) that can be mounted concurrently by thousands of EC2 instances across multiple Availability Zones simultaneously, automatically growing and shrinking as files are added or removed.
3. When should you choose AWS Snowball Edge vs. Snowcone vs. Snowmobile?
The AWS Snow Family provides physical, ruggedized hardware appliances for offline data migration when network bandwidth is limited: AWS Snowcone is ultra-portable (4.5 lbs) and holds up to 8 TB of usable data. AWS Snowball Edge is designed for mid-to-large migrations, providing up to 80 TB of storage per device with onboard compute capabilities. AWS Snowmobile is a 45-foot ruggedized shipping container pulled by a semi-trailer truck designed to transfer massive, exabyte-scale datasets (up to 100 PB per Snowmobile) securely to AWS.
4. What is AWS Storage Gateway used for in a hybrid cloud setup?
AWS Storage Gateway is a hybrid cloud storage service that connects on-premises enterprise environments to AWS cloud storage. It allows local virtual machines and physical servers to seamlessly read and write data to Amazon S3, EBS snapshots, and Glacier using standard storage protocols (NFS, SMB, iSCSI, and iSCSI-VTL). Storage Gateway maintains a local high-speed cache on-premises for low-latency data access while offloading durable storage and backups to the AWS Cloud.
Ready to See Your Results?
Congratulations on completing all 20 questions of this aws cloud practitioner practice test free module! Mastering object, block, and file storage architectures, along with S3 lifecycle tiering and hybrid gateways, is essential for scoring high on Domain 3 of the AWS Certified Cloud Practitioner (CLF-C02) exam.
Review any questions you answered incorrectly, make sure you understand the differences in the cheat sheet table above, and continue your preparation with our next practice module on AWS Database Services.