Cloud Digital Leader Fundamental cloud concepts Practice Question
This GCDL practice question tests your understanding of fundamental cloud concepts. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```
Error: 403 POST https://storage.googleapis.com/storage/v1/b/bucket/o:copyTo?sourceObject=source.txt
<Code>AccessDenied</Code>
<Message>Access denied.</Message>
```
Refer to the exhibit. A user receives this error when trying to copy an object from one bucket to another. What is the most likely cause?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue: "most likely"
Why it matters: Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
Refer to the exhibit.
```
Error: 403 POST https://storage.googleapis.com/storage/v1/b/bucket/o:copyTo?sourceObject=source.txt
<Code>AccessDenied</Code>
<Message>Access denied.</Message>
```
A
The service account used does not have the required IAM permissions to copy objects.
The 403 error indicates access denied due to missing permissions.
B
The buckets are located in different regions and cross-region copy is not allowed.
Why wrong: Cross-region copy is allowed; if denied, it would be a policy issue, not region.
C
The destination bucket has exceeded its storage quota.
Why wrong: Quota exceeded returns a 429 error, not 403.
D
The source bucket name is misspelled in the request.
Why wrong: Invalid bucket name would return a 404 Not Found.
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The service account used does not have the required IAM permissions to copy objects.
The error when copying an object between buckets is most likely due to insufficient IAM permissions. In Google Cloud, the service account initiating the copy must have both `storage.objects.get` (to read the source object) and `storage.objects.create` (to write to the destination bucket) permissions. Without these, the operation fails with an access denied error, even if the buckets exist and are accessible.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
The service account used does not have the required IAM permissions to copy objects.
Why this is correct
The 403 error indicates access denied due to missing permissions.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
✗
The buckets are located in different regions and cross-region copy is not allowed.
Why it's wrong here
Cross-region copy is allowed; if denied, it would be a policy issue, not region.
✗
The destination bucket has exceeded its storage quota.
Why it's wrong here
Quota exceeded returns a 429 error, not 403.
✗
The source bucket name is misspelled in the request.
Why it's wrong here
Invalid bucket name would return a 404 Not Found.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that cross-region copy is blocked by default, but in Google Cloud Storage, cross-region copies are allowed as long as IAM permissions are correct, making permissions the primary gatekeeper.
Detailed technical explanation
How to think about this question
Under the hood, the `gsutil cp` command or the Storage API uses the service account's credentials to make a `storage.objects.get` request on the source object and a `storage.objects.insert` request on the destination bucket. These operations are authorized via IAM roles like `roles/storage.objectViewer` and `roles/storage.objectCreator`. A common subtlety is that the service account must also have `storage.objects.list` on the source bucket if the copy uses wildcards or directory traversal, though a direct object copy only needs `get` and `create`.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A media company stores terabytes of video archives that are accessed once a year for audit purposes. Moving these objects to a cold storage tier (Azure Archive, S3 Glacier, or Google Nearline) costs a fraction of hot storage. Questions like this test whether you understand storage tiers, access frequency tradeoffs, and retrieval latency requirements.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this GCDL question in full detail.
Fundamental cloud concepts — This question tests Fundamental cloud concepts — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The service account used does not have the required IAM permissions to copy objects. — The error when copying an object between buckets is most likely due to insufficient IAM permissions. In Google Cloud, the service account initiating the copy must have both `storage.objects.get` (to read the source object) and `storage.objects.create` (to write to the destination bucket) permissions. Without these, the operation fails with an access denied error, even if the buckets exist and are accessible.
What should I do if I get this GCDL question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "most likely". Probability qualifier — the question wants the most probable cause or outcome, not a guaranteed one. Eliminate low-probability options.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This GCDL practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the GCDL exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.