Bird
Raised Fist0
GCPcloud~10 mins

Why Cloud Storage matters for object data in GCP - Test Your Understanding

Choose your learning style10 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Cloud Storage bucket named 'my-bucket'.

GCP
from google.cloud import storage
client = storage.Client()
bucket = client.create_bucket('[1]')
Drag options to blanks, or click blank then click option'
A'data-bucket'
B'bucket123'
C'storage-bucket'
D'my-bucket'
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting quotes around the bucket name
Using an incorrect bucket name
2fill in blank
medium

Complete the code to upload a file 'photo.jpg' to the bucket.

GCP
bucket = client.get_bucket('my-bucket')
blob = bucket.blob('[1]')
blob.upload_from_filename('photo.jpg')
Drag options to blanks, or click blank then click option'
A'photo.jpg'
B'image.png'
C'document.txt'
D'video.mp4'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a different file name than the one uploaded
Missing quotes around the blob name
3fill in blank
hard

Fix the error in the code to download 'photo.jpg' from the bucket to local file 'downloaded.jpg'.

GCP
bucket = client.get_bucket('my-bucket')
blob = bucket.blob('photo.jpg')
blob.[1]('downloaded.jpg')
Drag options to blanks, or click blank then click option'
Aupload_from_filename
Bdownload_to_filename
Cdownload_from_filename
Dupload_to_filename
Attempts:
3 left
💡 Hint
Common Mistakes
Using upload methods instead of download
Mixing method names
4fill in blank
hard

Fill both blanks to list all blobs in 'my-bucket' and print their names.

GCP
bucket = client.get_bucket('my-bucket')
blobs = bucket.[1]()
for blob in blobs:
    print(blob.[2])
Drag options to blanks, or click blank then click option'
Alist_blobs
Bname
Cblob_name
Dget_blobs
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect method names
Using wrong attribute for blob name
5fill in blank
hard

Fill all three blanks to delete a blob named 'old_file.txt' from 'my-bucket'.

GCP
bucket = client.get_bucket('[1]')
blob = bucket.blob('[2]')
blob.[3]()
Drag options to blanks, or click blank then click option'
Amy-bucket
Bold_file.txt
Cdelete
Dremove
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong method name like 'remove'
Mixing bucket or blob names

Practice

(1/5)
1. Why is Cloud Storage important for storing object data in the cloud?
easy
A. It only stores data temporarily for a few hours.
B. It limits the size of each object to 1 KB.
C. It requires manual hardware setup for each object.
D. It provides scalable and durable storage for large amounts of data.

Solution

  1. Step 1: Understand Cloud Storage purpose

    Cloud Storage is designed to hold large amounts of data safely and reliably.
  2. Step 2: Compare options

    Options A, C, and D describe limitations or incorrect features, while B correctly states scalability and durability.
  3. Final Answer:

    It provides scalable and durable storage for large amounts of data. -> Option D
  4. Quick Check:

    Cloud Storage = scalable and durable storage [OK]
Hint: Cloud Storage is for big, safe, and lasting data storage [OK]
Common Mistakes:
  • Thinking Cloud Storage is temporary
  • Assuming manual hardware setup is needed
  • Believing object size is very limited
2. Which of the following is the correct way to create a new bucket in Google Cloud Storage using the gcloud CLI?
easy
A. gcloud storage buckets create my-bucket
B. gcloud create bucket my-bucket
C. gcloud storage create my-bucket
D. gcloud bucket create --name my-bucket

Solution

  1. Step 1: Recall gcloud storage bucket creation syntax

    The correct command uses 'gcloud storage buckets create' followed by the bucket name.
  2. Step 2: Check each option

    Only gcloud storage buckets create my-bucket matches the correct syntax; others have wrong command order or missing keywords.
  3. Final Answer:

    gcloud storage buckets create my-bucket -> Option A
  4. Quick Check:

    Bucket creation command = 'gcloud storage buckets create' [OK]
Hint: Use 'gcloud storage buckets create' to make buckets [OK]
Common Mistakes:
  • Omitting 'buckets' keyword
  • Using 'create' before 'storage'
  • Wrong flag or command order
3. Given this Python code snippet using Google Cloud Storage client library:
from google.cloud import storage
client = storage.Client()
bucket = client.bucket('my-bucket')
blob = bucket.blob('file.txt')
blob.upload_from_string('Hello World')
print(blob.public_url)

What will the printed output represent?
medium
A. The public URL to access the uploaded file if permissions allow.
B. An error because 'upload_from_string' is not a valid method.
C. The local file path of 'file.txt' on the user's machine.
D. The content of the file 'Hello World' printed directly.

Solution

  1. Step 1: Understand the code actions

    The code uploads a string as an object named 'file.txt' to the bucket 'my-bucket'.
  2. Step 2: Interpret the print statement

    blob.public_url returns the URL to access the uploaded object publicly if permissions allow.
  3. Final Answer:

    The public URL to access the uploaded file if permissions allow. -> Option A
  4. Quick Check:

    blob.public_url = public file URL [OK]
Hint: blob.public_url shows file's public web address [OK]
Common Mistakes:
  • Thinking upload_from_string is invalid
  • Confusing public_url with local file path
  • Expecting file content printed directly
4. You try to upload a file to a Cloud Storage bucket but get a permission denied error. What is the most likely cause?
medium
A. The bucket does not exist in the project.
B. Your user or service account lacks write permission on the bucket.
C. The file size exceeds 1 MB limit for Cloud Storage.
D. Cloud Storage only supports text files, not binary files.

Solution

  1. Step 1: Analyze permission denied error meaning

    This error usually means the user or service account does not have rights to write to the bucket.
  2. Step 2: Check other options

    Bucket existence causes a different error; file size limit is much larger; Cloud Storage supports all file types.
  3. Final Answer:

    Your user or service account lacks write permission on the bucket. -> Option B
  4. Quick Check:

    Permission denied = missing write access [OK]
Hint: Permission denied means no write rights on bucket [OK]
Common Mistakes:
  • Assuming bucket doesn't exist causes permission error
  • Believing file size limit is 1 MB
  • Thinking Cloud Storage restricts file types
5. A company wants to store large video files that users can stream anytime. Which Cloud Storage feature best supports this use case?
hard
A. Coldline storage class for archival data with rare access.
B. Nearline storage class for infrequent access to save costs.
C. Multi-Regional storage class for high availability and low latency.
D. Standard local disk storage on a VM instance.

Solution

  1. Step 1: Identify storage needs for streaming videos

    Streaming requires fast access and high availability to serve many users anytime.
  2. Step 2: Match storage classes to needs

    Multi-Regional class offers low latency and high availability, ideal for streaming. Nearline and Coldline are for less frequent access. Local disk is not scalable or durable for this.
  3. Final Answer:

    Multi-Regional storage class for high availability and low latency. -> Option C
  4. Quick Check:

    Streaming needs Multi-Regional storage [OK]
Hint: Use Multi-Regional for fast, always-on access [OK]
Common Mistakes:
  • Choosing Nearline or Coldline for frequent streaming
  • Using local disk storage for scalable object data
  • Ignoring latency and availability needs