Question 876 of 892
Process — Managing Technical AspectshardMultiple ChoiceObjective-mapped

PMP Explicit Deny Practice Question

This PMP practice question tests your understanding of process — managing technical aspects. The scenario asks you to isolate a root cause — eliminate options that address a different problem before choosing. A key principle to apply: explicit Deny. 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.
```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": ["s3:GetObject"],
      "Resource": "arn:aws:s3:::my-bucket/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": "10.0.0.0/8"
        }
      }
    },
    {
      "Effect": "Deny",
      "Action": "s3:*",
      "Resource": "arn:aws:s3:::my-bucket/*",
      "Condition": {
        "Bool": {
          "aws:SecureTransport": "false"
        }
      }
    }
  ]
}
```

Refer to the exhibit. The project's access control policy allows read access only from the internal network (10.0.0.0/8) and denies access if not using an encrypted connection. A developer reports that they can access the repository from a machine with IP 10.0.0.5 using an encrypted connection. However, they cannot access it from a machine with IP 10.0.0.6 using an unencrypted connection. What is the most likely reason?

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.

Exhibit

Refer to the exhibit.
```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": ["s3:GetObject"],
      "Resource": "arn:aws:s3:::my-bucket/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": "10.0.0.0/8"
        }
      }
    },
    {
      "Effect": "Deny",
      "Action": "s3:*",
      "Resource": "arn:aws:s3:::my-bucket/*",
      "Condition": {
        "Bool": {
          "aws:SecureTransport": "false"
        }
      }
    }
  ]
}
```

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

The Deny statement for unencrypted access overrides the Allow statement.

The correct answer is A because in policy evaluation logic, an explicit Deny always overrides any Allow. The policy includes a Deny statement that blocks access when an unencrypted connection is used. Since unencrypted access from 10.0.0.6 triggers this Deny, it overrides the Allow statement that permits access from the internal network, resulting in denied access.

Key principle: Explicit Deny

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 Deny statement for unencrypted access overrides the Allow statement.

    Why this is correct

    Correct. The Deny for unencrypted access overrides the Allow for internal network.

    Clue confirmation

    The clue word "most likely" in the question point toward this answer.

    Related concept

    Explicit Deny

  • The policy requires both network and encrypted connection conditions to be met simultaneously.

    Why it's wrong here

    Incorrect. The policy allows internal network access with encryption; the Deny for unencrypted is separate and overrides.

  • The IP address 10.0.0.5 is not in the allowed range.

    Why it's wrong here

    Incorrect. 10.0.0.5 is within the allowed internal network range.

  • The IP address 10.0.0.6 is not in the allowed range.

    Why it's wrong here

    Incorrect. 10.0.0.6 is within the allowed internal network range; denial is due to unencrypted access.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume that if an IP is in the allowed range, all access is permitted, ignoring that an explicit Deny for a specific condition (like unencrypted connection) takes precedence over any Allow.

Detailed technical explanation

How to think about this question

AWS IAM policy evaluation uses a default Deny, then explicit Allows, and finally explicit Denies that override any Allows. The policy's Deny statement with a condition of "NotHttps" (or similar) explicitly blocks any request not using HTTPS, regardless of source IP. In real-world scenarios, this ensures that even if an IP is whitelisted, insecure HTTP traffic is rejected, enforcing encryption compliance.

KKey Concepts to Remember

  • Explicit Deny
  • Policy Evaluation Logic

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

Explicit Deny

Real-world example

How this comes up in practice

A security administrator must allow nursing staff to reach a patient records server while blocking access from the guest Wi-Fi VLAN. After applying an extended ACL, traffic is still blocked from nursing workstations. The ACL was applied outbound instead of inbound on the wrong interface. Questions like this test ACL direction and placement rules.

Visual reference

Source Router + ACL permit 10.0.0.0/8 deny any Server 10.0.0.5 ✓ 192.168.1.1 ✗ dropped ACLs evaluate top-down; first match wins — implicit deny all at end

What to study next

Got this wrong? Here's your next step.

Review explicit Deny, then practise related PMP questions on the same topic to reinforce the concept.

Related practice questions

Related PMP 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 PMP 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 PMP question test?

Process — Managing Technical Aspects — This question tests Process — Managing Technical Aspects — Explicit Deny.

What is the correct answer to this question?

The correct answer is: The Deny statement for unencrypted access overrides the Allow statement. — The correct answer is A because in policy evaluation logic, an explicit Deny always overrides any Allow. The policy includes a Deny statement that blocks access when an unencrypted connection is used. Since unencrypted access from 10.0.0.6 triggers this Deny, it overrides the Allow statement that permits access from the internal network, resulting in denied access.

What should I do if I get this PMP question wrong?

Review explicit Deny, then practise related PMP questions on the same topic to reinforce the concept.

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?

Explicit Deny

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

Keep practising

More PMP practice questions

Last reviewed: Jun 11, 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 PMP practice question is part of Courseiva's free PMI 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 PMP exam.