Question 44 of 512
InfrastructureeasyMultiple ChoiceObjective-mapped

Quick Answer

The correct answer is that the user is permitted to download files from example-bucket. This is because the JSON policy explicitly grants the s3:GetObject action on the resource arn:aws:s3:::example-bucket/*, and when interpreting AWS IAM JSON policy S3 permissions, the Effect of "Allow" means the action is explicitly permitted. The s3:GetObject action specifically authorizes retrieving or downloading an object from the bucket, while no other actions like s3:PutObject or s3:ListBucket are listed, so only downloads are allowed. On the CompTIA ITF+ FC0-U61 exam, this tests your ability to read a basic IAM policy statement and map the action to a real-world task—a common trap is confusing s3:GetObject with s3:ListBucket, which only lists object names, not downloads. Remember the memory tip: "GetObject = Get the Object out of the bucket," so if you see "GetObject" and an "Allow" effect, think download.

FC0-U61 Infrastructure Practice Question

This FC0-U61 practice question tests your understanding of infrastructure. 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

Refer to the exhibit.

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

Refer to the exhibit. This JSON policy is associated with an IAM user. Which of the following actions is the user permitted to perform?

Question 1easymultiple choice
Full question →

Exhibit

Refer to the exhibit.

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

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

Download files from example-bucket

The JSON policy grants the s3:GetObject action on the arn:aws:s3:::example-bucket/* resource, which allows the user to retrieve (download) objects from the specified S3 bucket. The Effect is set to 'Allow', so the policy explicitly permits this action. No other actions are listed in the Statement, so only downloads are permitted.

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.

  • Download files from example-bucket

    Why this is correct

    s3:GetObject allows downloading.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Upload files to example-bucket

    Why it's wrong here

    Upload requires PutObject.

  • Delete files from example-bucket

    Why it's wrong here

    Delete is not permitted.

  • List the contents of example-bucket

    Why it's wrong here

    List requires ListBucket permission.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume that being able to download files implies the ability to list or upload, but AWS IAM policies require explicit permissions for each distinct action, and the absence of s3:ListBucket or s3:PutObject means those actions are denied by default.

Detailed technical explanation

How to think about this question

S3 access control policies use action strings like s3:GetObject, s3:PutObject, s3:DeleteObject, and s3:ListBucket to define permissions. The resource ARN in this policy (arn:aws:s3:::example-bucket/*) applies only to objects within the bucket, not to the bucket itself, so bucket-level operations like listing require a separate resource ARN (arn:aws:s3:::example-bucket). In real-world scenarios, a common misconfiguration is granting s3:GetObject without also granting s3:ListBucket, which prevents users from seeing the bucket contents even though they can download specific objects if they know the key.

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 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.

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

Related practice questions

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

Infrastructure — This question tests Infrastructure — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Download files from example-bucket — The JSON policy grants the s3:GetObject action on the arn:aws:s3:::example-bucket/* resource, which allows the user to retrieve (download) objects from the specified S3 bucket. The Effect is set to 'Allow', so the policy explicitly permits this action. No other actions are listed in the Statement, so only downloads are permitted.

What should I do if I get this FC0-U61 question wrong?

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

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

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 FC0-U61 practice question is part of Courseiva's free CompTIA 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 FC0-U61 exam.