Question 309 of 500

Quick Answer

The answer is that a deny rule in an Organization Policy or an IAM deny policy is the most likely cause, because IAM deny policies override allow policies explicitly, regardless of any granted roles. Even though the user holds the roles/storage.objectViewer role at the project level, which normally grants read access, a deny rule takes precedence and blocks the operation, resulting in a 403 error. This scenario tests your understanding of the fundamental IAM evaluation hierarchy on the Google Professional Cloud Security Engineer exam, where deny rules are always evaluated last and supersede any allow permissions. A common trap is assuming that uniform bucket-level access alone causes the issue, but it only disables ACLs—it does not affect IAM deny policies. Remember the key principle: deny always wins. For the exam, keep the memory tip "Deny Defeats All" to recall that any explicit deny rule will override all allow permissions, no matter how broad.

PCSE Practice Question: Configuring access within a cloud solution environment

This PCSE practice question tests your understanding of configuring access within a cloud solution environment. 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.

A security engineer is troubleshooting access to a Cloud Storage bucket. The bucket has uniform bucket-level access enabled. The engineer's user account has the roles/storage.objectViewer role at the project level, but they get a 403 error when trying to download an object. 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.

Question 1hardmultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

There is a deny rule in an Organization Policy or an IAM deny policy that blocks the user.

Option D is correct because uniform bucket-level access disables ACLs, so access is governed solely by IAM and organization policies. A deny rule in an Organization Policy or an IAM deny policy explicitly overrides any allow permissions, causing a 403 error even if the user has the roles/storage.objectViewer role at the project level. This is the most likely cause given that the user already has the necessary IAM role.

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 bucket has ACLs that override the IAM role.

    Why it's wrong here

    Uniform bucket-level access disables ACLs.

  • The user does not have the storage.objects.get permission.

    Why it's wrong here

    roles/storage.objectViewer includes storage.objects.get.

  • The user's project-level role does not apply to this specific bucket.

    Why it's wrong here

    Project-level roles apply to all resources in the project.

  • There is a deny rule in an Organization Policy or an IAM deny policy that blocks the user.

    Why this is correct

    Deny rules take precedence over allow rules, causing the 403 error.

    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.

Common exam traps

Common exam trap: answer the scenario, not the keyword

Google Cloud often tests the nuance that deny policies (IAM deny or Organization Policy) override allow policies, leading candidates to incorrectly assume that having the correct IAM role is sufficient for access.

Detailed technical explanation

How to think about this question

Under the hood, Google Cloud IAM evaluates allow policies (roles) and deny policies (deny rules) separately, with deny rules taking precedence. Organization policies can enforce constraints like 'constraints/storage.uniformBucketLevelAccess' or custom deny rules that block specific users or groups. In practice, a common scenario is a deny rule applied at the organization level to prevent data exfiltration, which would cause a 403 error despite valid IAM roles.

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.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related PCSE practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PCSE practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PCSE question test?

Configuring access within a cloud solution environment — This question tests Configuring access within a cloud solution environment — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: There is a deny rule in an Organization Policy or an IAM deny policy that blocks the user. — Option D is correct because uniform bucket-level access disables ACLs, so access is governed solely by IAM and organization policies. A deny rule in an Organization Policy or an IAM deny policy explicitly overrides any allow permissions, causing a 403 error even if the user has the roles/storage.objectViewer role at the project level. This is the most likely cause given that the user already has the necessary IAM role.

What should I do if I get this PCSE 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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

1 more ways this is tested on PCSE

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. A security team wants to explicitly deny access to a Cloud Storage bucket for all users except the bucket owner. Currently, there are allow policies at the project level granting Storage Object Viewer to all users. What is the most efficient way to implement this?

medium
  • A.Create an Organization Policy that denies access to the bucket for all users except the owner.
  • B.Modify the project-level role to include a condition that only allows the bucket owner.
  • C.Remove the project-level Storage Object Viewer role and grant it only to the bucket owner.
  • D.Create an IAM deny policy on the bucket with a deny rule for all principals (principalSet: allUsers) and an exception for the bucket owner.

Why D: Option D is correct because Google Cloud IAM deny policies explicitly deny access to resources, overriding any allow policies. By creating a deny rule on the bucket with `principalSet: allUsers` as the denied principal and an exception for the bucket owner, you effectively block all users except the owner, regardless of project-level allow roles. This is the most efficient approach as it does not require modifying existing project-level policies or removing roles.

Last reviewed: Jun 30, 2026

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.

Loading comments…

Sign in to join the discussion.

This PCSE 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 PCSE exam.