Courseiva

ANS-C01 · topic practice

Network Security, Compliance and Governance practice questions

Practise AWS Certified Advanced Networking Specialty ANS-C01 Network Security, Compliance and Governance practice questions — original exam-style scenarios with answer choices, explanations, and analysis of common mistakes.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Network Security, Compliance and Governance

What the exam tests

What to know about Network Security, Compliance and Governance

Network Security, Compliance and Governance questions test whether you can apply the concept in context, not just recognise a definition.

How the topic appears in realistic exam-style scenarios.

Which detail in the question changes the correct answer.

How to eliminate plausible but wrong options.

How to connect the question back to the wider exam objective.

Watch out for

Common Network Security, Compliance and Governance exam traps

  • Answering from memory before reading the full scenario.
  • Missing a constraint such as cost, availability, security, scope or command context.
  • Choosing a broad answer when the question asks for the most specific fix.
  • Ignoring why the wrong options are tempting.

Practice set

Network Security, Compliance and Governance questions

20 questions · select your answer, then reveal the explanation

Question 1hardmultiple choice
Read the full VPN explanation →

A company has a hybrid network with an AWS Direct Connect connection to a VPC. They also have a site-to-site VPN connection as a backup. The VPC routing tables are configured with a route to the on-premises CIDR via the virtual private gateway. The network engineer notices that traffic from the VPC to on-premises is not using the Direct Connect connection even when it is healthy. What is the most likely cause?

A company uses AWS Shield Advanced for DDoS protection. During an attack, the security team notices that legitimate traffic is being throttled. They want to allow certain known IP addresses to bypass Shield Advanced rate-based rules. What should they do?

Question 3hardmultiple choice
Review the full subnetting walkthrough →

Refer to the exhibit. A network engineer is troubleshooting connectivity issues from an EC2 instance in subnet-11111111. The instance can send traffic outbound, but cannot receive inbound HTTPS traffic from the internet. What is the likely cause?

Network Topology
$ aws ec2 describe-network-aclsnetwork-acl-id acl-12345678Refer to the exhibit."NetworkAcls": ["Associations": ["NetworkAclAssociationId": "aclassoc-11111111","NetworkAclId": "acl-12345678","SubnetId": "subnet-11111111"],"Entries": ["CidrBlock": "0.0.0.0/0","Egress": false,"Protocol": "6","RuleAction": "allow","RuleNumber": 100,"PortRange": {"From": 443,"To": 443},"Protocol": "-1","RuleAction": "deny","RuleNumber": 32766,"PortRange": {}"Egress": true,

A company is designing a network security architecture for a multi-tier application. The web tier must be accessible from the internet, while the application and database tiers must be isolated. The security team wants to minimize the attack surface. Which design should they choose?

A company wants to secure data at rest in an Amazon S3 bucket. Which TWO of the following can be used to achieve this? (Choose two.)

Question 6hardmultiple choice
Review the full subnetting walkthrough →

A security engineer created the S3 bucket policy shown. After applying it, users from the 10.0.0.0/16 network (VPC CIDR) are able to access objects, but external users from 203.0.113.0/24 receive 'Access Denied' even though they are using HTTPS. What is the likely cause?

Exhibit

Refer to the exhibit.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": "*",
      "Action": "s3:GetObject",
      "Resource": "arn:aws:s3:::example-bucket/*",
      "Condition": {
        "IpAddress": {
          "aws:SourceIp": [
            "10.0.0.0/16",
            "203.0.113.0/24"
          ]
        },
        "Bool": {
          "aws:SecureTransport": "true"
        }
      }
    }
  ]
}
Question 7mediummultiple choice
Review the full subnetting walkthrough →

A company has a VPC with a public subnet and a private subnet. They launch an EC2 instance in the private subnet that needs to access an S3 bucket in the same region. Which approach provides the most secure and cost-effective access?

Question 8mediummultiple choice
Review the full subnetting walkthrough →

A network security engineer is reviewing the NACL configuration. An EC2 instance in the subnet associated with this NACL is not receiving SSH connections from the internet. What is the issue?

Network Topology
$ aws ec2 describe-network-aclsregion us-east-1Refer to the exhibit.```"NetworkAcls": ["NetworkAclId": "acl-12345","Entries": ["RuleNumber": 100,"Protocol": "6","PortRange": {"From": 22,"To": 22},"CidrBlock": "0.0.0.0/0","RuleAction": "allow","Egress": false"RuleNumber": 200,"RuleAction": "deny",
Question 9hardmultiple choice
Study the full ACL explanation →

A security engineer is designing a network ACL for a public-facing web application in a VPC. The application uses an Application Load Balancer (ALB) in a public subnet, web servers in private subnets, and an RDS database in a private subnet. The engineer needs to allow HTTPS traffic from the internet to the ALB, and allow the ALB to forward traffic to the web servers on port 8080. The web servers need to query the database on port 3306. Which network ACL configuration should the engineer implement for the private subnet containing the web servers?

Question 10easymultiple choice
Read the full VPN explanation →

A company has a requirement to encrypt all data in transit between its on-premises network and AWS over a VPN connection. Which solution provides encryption in transit?

A company uses AWS Shield Advanced to protect their web application against DDoS attacks. They have configured automatic application layer DDoS mitigation with AWS WAF. During a recent attack, the application experienced increased latency, and some legitimate users were blocked. The security team reviews the WAF logs and finds that many requests from legitimate IPs were rate-limited. The team had set a rate-based rule with a threshold of 100 requests per 5 minutes. What is the most likely reason legitimate users were blocked?

A network engineer needs to block traffic from a specific IP address to an EC2 instance. Which component should be modified?

A company wants to restrict access to an Amazon S3 bucket so that only requests from a specific VPC endpoint are allowed. Which policy element should be used?

A company is using AWS CloudTrail to log API calls. They want to ensure that log files are encrypted at rest and that any tampering with logs is detectable. Which combination of services should they use?

A company is deploying a web application that must be accessible over the internet from specific IP addresses only. The application runs behind an Application Load Balancer (ALB) in a VPC. Which AWS service should be used to restrict access to the ALB based on source IP addresses?

Which TWO actions can be used to improve the security of an Amazon S3 bucket that contains sensitive data? (Choose two.)

Question 17easymultiple choice
Study the full ACL explanation →

A company wants to restrict access to an EC2 instance such that only traffic from a specific security group (sg-12345678) can reach it. The instance is in a VPC with default network ACLs. What should the security group rule for the instance be?

Question 18mediummultiple choice
Read the full NAT/PAT explanation →

A company has a VPC with a public subnet containing a NAT gateway and a private subnet with EC2 instances. The EC2 instances need to access an S3 bucket. The security team wants to log all S3 API calls made by the instances. Which approach should be used?

A company needs to audit all changes to security groups in their AWS account. Which AWS service should they use?

Question 20hardmultiple choice
Review the full subnetting walkthrough →

A company has a VPC with an internet-facing Application Load Balancer (ALB) that routes traffic to EC2 instances in private subnets. The security team wants to block traffic from specific geographic regions. Which AWS service should they use?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Network Security, Compliance and Governance sessions

Start a Network Security, Compliance and Governance only practice session

Every question in these sessions is drawn from the Network Security, Compliance and Governance domain — nothing else.

Related practice questions

Related ANS-C01 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the ANS-C01 exam test about Network Security, Compliance and Governance?
Network Security, Compliance and Governance questions test whether you can apply the concept in context, not just recognise a definition.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Network Security, Compliance and Governance questions in a focused session?
Yes — the session launcher on this page draws every question from the Network Security, Compliance and Governance domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other ANS-C01 topics?
Use the topic links above to move to related areas, or go back to the ANS-C01 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the ANS-C01 exam covers. They are not copied from any real exam or dump site.