Question 75 of 503
Project Management Fundamentals and Core ConceptsmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that the policy denies all S3 actions on the bucket unless the user has authenticated with multi-factor authentication (MFA). This is because the IAM policy contains a Deny statement with a condition key that checks for the presence of MFA; when the condition evaluates to false—meaning MFA is not present—the Deny takes effect, blocking all S3 actions. IAM evaluates Deny statements before Allow statements, so even if another policy grants access, the Deny overrides it when the MFA condition is not met. On the CAPM exam, this question tests your understanding of how conditional Deny policies work in IAM, a common trap being that students mistake a Deny with a condition for an Allow when the condition is satisfied. Remember, a Deny is not an Allow—if MFA is present, the Deny simply does not apply, but the user still needs an explicit Allow from another policy to gain access. Memory tip: “Deny first, condition second—MFA false locks the bucket.”

CAPM Practice Question: Project Management Fundamentals and Core Concepts

This CAPM practice question tests your understanding of project management fundamentals and core concepts. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. 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

{ "Statement": [ { "Effect": "Deny", "Action": "s3:*", "Resource": "arn:aws:s3:::example-bucket", "Condition": { "BoolIfExists": { "aws:MultiFactorAuthPresent": "false" } } } ] }

Refer to the exhibit. An administrator applies this IAM policy to a user. What is the effect on the user's access to the S3 bucket?

Question 1mediummultiple choice
Full question →

Exhibit

{ "Statement": [ { "Effect": "Deny", "Action": "s3:*", "Resource": "arn:aws:s3:::example-bucket", "Condition": { "BoolIfExists": { "aws:MultiFactorAuthPresent": "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

Denies all S3 actions on the bucket unless the user has authenticated with multi-factor authentication (MFA)

The policy denies all S3 actions on the bucket when Multi-Factor Authentication (MFA) is not present (false). If MFA is present, the condition does not apply, but the default is allow? Actually, this is a Deny statement with a condition. IAM evaluates deny first, so if MFA is false, actions are denied. If MFA is true, the condition is not met, so the deny statement does not apply, and the user may be allowed by other policies. However, without an explicit allow, the default is implicit deny. But the question asks for the effect given the policy. The correct answer is that it denies S3 actions when MFA is not present. Option A correctly describes this. Option B is incorrect because it is not an allow. Option C says 'regardless', but the condition makes it conditional. Option D says allows if MFA present, but this is a deny policy, not allow.

Key principle: ACLs process entries top to bottom and stop at the first match. Entry order and interface direction matter as much as the permit or deny statement.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Allows S3 actions on the bucket only if MFA is present

    Why it's wrong here

    This is a Deny policy, not an Allow. It does not explicitly allow.

  • Allows all S3 actions on the bucket

    Why it's wrong here

    The policy is a Deny, not an Allow.

  • Denies all S3 actions on the bucket unless the user has authenticated with multi-factor authentication (MFA)

    Why this is correct

    The condition denies access when MFA is not present.

    Related concept

    Standard ACLs match source addresses.

  • Denies all S3 actions on the bucket regardless of MFA

    Why it's wrong here

    The deny is conditional on MFA not being present.

Common exam traps

Common exam trap: ACLs stop at the first match

ACLs are processed top to bottom. The first matching entry wins, and an implicit deny usually exists at the end.

Detailed technical explanation

How to think about this question

ACL questions test precision: source, destination, protocol, port and direction. A generally correct ACL can still fail if it is applied on the wrong interface or in the wrong direction.

KKey Concepts to Remember

  • Standard ACLs match source addresses.
  • Extended ACLs can match source, destination, protocol and ports.
  • The first matching ACL entry is used.
  • There is usually an implicit deny at the end.

TExam Day Tips

  • Check inbound versus outbound direction.
  • Read the ACL from top to bottom.
  • Look for a broader permit or deny above the intended line.

Key takeaway

ACLs process entries top to bottom and stop at the first match. Entry order and interface direction matter as much as the permit or deny statement.

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.

What to study next

Got this wrong? Here's your next step.

Review ACL processing order, placement rules (standard near destination, extended near source), and inbound vs outbound direction. Study wildcard masks and implicit deny. Then practise related CAPM ACL questions on filtering logic and placement.

Related practice questions

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

Project Management Fundamentals and Core Concepts — This question tests Project Management Fundamentals and Core Concepts — Standard ACLs match source addresses..

What is the correct answer to this question?

The correct answer is: Denies all S3 actions on the bucket unless the user has authenticated with multi-factor authentication (MFA) — The policy denies all S3 actions on the bucket when Multi-Factor Authentication (MFA) is not present (false). If MFA is present, the condition does not apply, but the default is allow? Actually, this is a Deny statement with a condition. IAM evaluates deny first, so if MFA is false, actions are denied. If MFA is true, the condition is not met, so the deny statement does not apply, and the user may be allowed by other policies. However, without an explicit allow, the default is implicit deny. But the question asks for the effect given the policy. The correct answer is that it denies S3 actions when MFA is not present. Option A correctly describes this. Option B is incorrect because it is not an allow. Option C says 'regardless', but the condition makes it conditional. Option D says allows if MFA present, but this is a deny policy, not allow.

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

Review ACL processing order, placement rules (standard near destination, extended near source), and inbound vs outbound direction. Study wildcard masks and implicit deny. Then practise related CAPM ACL questions on filtering logic and placement.

What is the key concept behind this question?

Standard ACLs match source addresses.

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

Last reviewed: Jun 24, 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 CAPM 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 CAPM exam.