Courseiva
Continuous Improvement for Existing SolutionshardMultiple ChoiceObjective-mapped

SAP-C02 Continuous Improvement for Existing Solutions Practice Question

Exhibit

Refer to the exhibit.

```
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:PutObject"
            ],
            "Resource": "arn:aws:s3:::my-bucket/*"
        },
        {
            "Effect": "Deny",
            "Action": "s3:*",
            "Resource": "arn:aws:s3:::my-bucket/confidential/*"
        }
    ]
}
```

An IAM policy attached to a user allows s3:GetObject and s3:PutObject on my-bucket, but denies all actions on the confidential/ prefix. The user reports that they can still upload objects to the confidential/ folder. Why?

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 is in a separate policy that is not attached to the user.

IAM policy evaluation follows the rule that an explicit Deny always overrides any Allow. If both the Allow and Deny statements were in an attached policy, the Deny would block uploads to the confidential/ prefix. Therefore, the fact that the user can still upload indicates that the Deny statement is in a policy that is not attached to the user (or not effective). Option C correctly identifies this: the Deny statement is in a separate policy that is not attached to the user.

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 Allow statement appears before the Deny statement in the policy.

    Why it's wrong here

    In IAM, the order of statements does not affect evaluation; an explicit Deny always overrides any Allow regardless of order.

  • The Deny statement is not explicit enough to override the Allow.

    Why it's wrong here

    An explicit Deny is sufficiently powerful to override any Allow; this is not a matter of 'explicitness' but of the Deny actually being applied.

  • The Deny statement is in a separate policy that is not attached to the user.

    Why this is correct

    If the Deny statement is in a policy that is not attached to the user, it never gets evaluated, so the Allow from the attached policy permits the upload.

  • The Deny statement's resource ARN does not match the confidential folder objects.

    Why it's wrong here

    The resource ARN 'arn:aws:s3:::my-bucket/confidential/*' correctly matches objects under the confidential/ prefix, so this would not cause the Deny to fail.

Quick reference

AWS S3 Storage Class Comparison

Storage ClassMin DurationRetrievalUse Case
S3 StandardNoneImmediateFrequently accessed data
S3 Standard-IA30 daysImmediateInfrequent access, rapid retrieval
S3 One Zone-IA30 daysImmediateNon-critical infrequent data
S3 Intelligent-TieringNoneImmediate–hoursUnknown or changing access patterns
S3 Glacier Instant90 daysMillisecondsArchive with instant retrieval
S3 Glacier Flexible90 daysMinutes–hoursArchive, flexible retrieval
S3 Glacier Deep Archive180 daysHoursLong-term compliance archive

About these practice questions

Courseiva writes every SAP-C02 question from scratch — 1,660 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This SAP-C02 practice question is part of Courseiva's free Amazon Web Services 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 SAP-C02 exam.