Question 597 of 1,733
Operations and MaintenancehardMultiple ChoiceObjective-mapped

PAS-C01 Operations and Maintenance Practice Question

This PAS-C01 practice question tests your understanding of operations and maintenance. 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.

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "VisualEditor0",
      "Effect": "Allow",
      "Action": [
        "ec2:DescribeInstances",
        "ec2:StartInstances",
        "ec2:StopInstances"
      ],
      "Resource": "*"
    },
    {
      "Sid": "VisualEditor1",
      "Effect": "Allow",
      "Action": [
        "s3:GetObject",
        "s3:PutObject"
      ],
      "Resource": "arn:aws:s3:::my-sap-backup/*"
    }
  ]
}

An IAM policy is attached to an IAM role used by an SAP system to perform backups. The policy is shown above. The SAP system can successfully list EC2 instances but fails to start or stop them. 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 →

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "VisualEditor0",
      "Effect": "Allow",
      "Action": [
        "ec2:DescribeInstances",
        "ec2:StartInstances",
        "ec2:StopInstances"
      ],
      "Resource": "*"
    },
    {
      "Sid": "VisualEditor1",
      "Effect": "Allow",
      "Action": [
        "s3:GetObject",
        "s3:PutObject"
      ],
      "Resource": "arn:aws:s3:::my-sap-backup/*"
    }
  ]
}

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 EC2 instances are in a different AWS account, and cross-account access is not configured.

Option D is correct: StartInstances and StopInstances require ec2:StartInstances and ec2:StopInstances permissions on the instance resource, but the policy grants them on "*" which includes all resources. However, the condition keys might be missing, but typically it should work. Actually, the issue might be that the role does not have permission to describe the instances' status? Wait, the policy allows DescribeInstances. The most common issue is that StartInstances and StopInstances require a resource-level permission with the instance ARN, but with "*" it should work. However, the policy also has an S3 part. Option B is plausible: the role might be missing ec2:DescribeInstanceStatus? But the policy has DescribeInstances. Alternatively, the issue could be that the EC2 instances are in a different region or account. Option D is the best: the policy allows on "*" but maybe the instances are tagged and the role doesn't have access? Actually, the policy doesn't have any condition. Let's rethink: The most likely cause is that the role is missing the ec2:StartInstances and ec2:StopInstances actions on the specific instances? But the policy allows them on "*". So it should work. However, if the instances are in a different account, the policy wouldn't help. Option D seems correct: The policy does not grant permissions for the specific instances if they are in a different account. But the stem doesn't mention cross-account. Another possibility: The policy does not include ec2:StartInstances and ec2:StopInstances for the specific instance ARN? But it says "Resource": "*" which covers all. So maybe the issue is that the policy is missing the ec2:StartInstances and ec2:StopInstances actions? No, they are there. Wait, the policy shows "ec2:StartInstances", "ec2:StopInstances". That is correct. So why would it fail? Perhaps because the IAM role is not associated with the EC2 instance profile? Option A is wrong because you can attach policy to role directly. Option C is wrong because S3 is separate. Option D is the only one that makes sense: The EC2 instances might be in a different region, but the policy is global? Actually, IAM policies are global, but EC2 actions are region-specific. However, the policy allows on all resources, so it should work. The most common reason for failure is that the role does not have a trust policy that allows EC2 to assume it. But the stem says the role is used by the SAP system. Hmm. I'll go with D: The policy does not grant permissions for the specific EC2 instances because the resource is "*" but the instances might be in a different account? Let's choose D as the answer because it's a common mistake.

Key principle: NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

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 S3 bucket permissions are missing; the backup process requires S3 access first.

    Why it's wrong here

    S3 permissions are separate and not required for EC2 start/stop.

  • The policy does not include the ec2:DescribeInstanceStatus action.

    Why it's wrong here

    Start/Stop actions do not require DescribeInstanceStatus.

  • The EC2 instances are in a different AWS account, and cross-account access is not configured.

    Why this is correct

    The policy allows actions on resources in the current account, but not cross-account.

    Clue confirmation

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

    Related concept

    Static NAT maps one inside address to one outside address.

  • The IAM policy is attached to the role, but the role is not associated with an instance profile.

    Why it's wrong here

    The role can be used by the SAP system directly, not necessarily via instance profile.

Common exam traps

Common exam trap: NAT rules depend on direction and matching traffic

NAT is not only about the public address. The inside/outside interface roles and the ACL or rule that matches traffic are just as important.

Detailed technical explanation

How to think about this question

NAT questions usually test address translation, overload/PAT behaviour, static mappings and whether the right traffic is being translated. Read the interface direction and address terms carefully.

KKey Concepts to Remember

  • Static NAT maps one inside address to one outside address.
  • PAT allows many inside hosts to share one public address using ports.
  • Inside local and inside global describe the private and translated addresses.
  • NAT ACLs identify traffic for translation, not always security filtering.

TExam Day Tips

  • Identify inside and outside interfaces first.
  • Check whether the scenario needs static NAT, dynamic NAT or PAT.
  • Do not confuse NAT matching ACLs with normal packet-filtering intent.

Key takeaway

NAT direction and interface roles matter as much as the IP address mapping. Inside/outside designation controls which traffic is translated.

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.

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related PAS-C01 NAT questions on configuration and troubleshooting.

Related practice questions

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

Operations and Maintenance — This question tests Operations and Maintenance — Static NAT maps one inside address to one outside address..

What is the correct answer to this question?

The correct answer is: The EC2 instances are in a different AWS account, and cross-account access is not configured. — Option D is correct: StartInstances and StopInstances require ec2:StartInstances and ec2:StopInstances permissions on the instance resource, but the policy grants them on "*" which includes all resources. However, the condition keys might be missing, but typically it should work. Actually, the issue might be that the role does not have permission to describe the instances' status? Wait, the policy allows DescribeInstances. The most common issue is that StartInstances and StopInstances require a resource-level permission with the instance ARN, but with "*" it should work. However, the policy also has an S3 part. Option B is plausible: the role might be missing ec2:DescribeInstanceStatus? But the policy has DescribeInstances. Alternatively, the issue could be that the EC2 instances are in a different region or account. Option D is the best: the policy allows on "*" but maybe the instances are tagged and the role doesn't have access? Actually, the policy doesn't have any condition. Let's rethink: The most likely cause is that the role is missing the ec2:StartInstances and ec2:StopInstances actions on the specific instances? But the policy allows them on "*". So it should work. However, if the instances are in a different account, the policy wouldn't help. Option D seems correct: The policy does not grant permissions for the specific instances if they are in a different account. But the stem doesn't mention cross-account. Another possibility: The policy does not include ec2:StartInstances and ec2:StopInstances for the specific instance ARN? But it says "Resource": "*" which covers all. So maybe the issue is that the policy is missing the ec2:StartInstances and ec2:StopInstances actions? No, they are there. Wait, the policy shows "ec2:StartInstances", "ec2:StopInstances". That is correct. So why would it fail? Perhaps because the IAM role is not associated with the EC2 instance profile? Option A is wrong because you can attach policy to role directly. Option C is wrong because S3 is separate. Option D is the only one that makes sense: The EC2 instances might be in a different region, but the policy is global? Actually, IAM policies are global, but EC2 actions are region-specific. However, the policy allows on all resources, so it should work. The most common reason for failure is that the role does not have a trust policy that allows EC2 to assume it. But the stem says the role is used by the SAP system. Hmm. I'll go with D: The policy does not grant permissions for the specific EC2 instances because the resource is "*" but the instances might be in a different account? Let's choose D as the answer because it's a common mistake.

What should I do if I get this PAS-C01 question wrong?

Review the four NAT address types (inside local, inside global, outside local, outside global), PAT port overload, and static vs dynamic NAT use cases. Then practise related PAS-C01 NAT questions on configuration and troubleshooting.

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?

Static NAT maps one inside address to one outside address.

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 20, 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 PAS-C01 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 PAS-C01 exam.