- A
Configure Shared VPC with the Cloud SQL project as the host project
This allows the host project to share its VPC with service projects.
- B
Create a firewall rule allowing ingress from the Cloud SQL instance to the development VPC
Why wrong: Firewall rules are needed for traffic from development VPC to Cloud SQL, but the direction is reversed.
- C
Configure VPC Network Peering between the development VPC and the Cloud SQL VPC
Why wrong: Peering is not needed if Shared VPC is used; the host VPC already contains the Cloud SQL.
- D
Enable Private Services Access on the host VPC
Private Services Access is required for Cloud SQL private IP to be accessible from the VPC.
- E
Attach the development project as a service project to the shared VPC host project
This allows the development project to use the host project's subnets.
PCNE Practice Question: Designing, Planning, and Prototyping a GCP Network
This PCNE practice question tests your understanding of designing, planning, and prototyping a gcp network. 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.
An organization wants to isolate development and production environments using separate VPC networks within the same project. They need the development VPC to have access to a shared service, such as a Cloud SQL instance, which resides in a separate project. Which THREE actions are required to achieve this? (Choose THREE.)
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
Configure Shared VPC with the Cloud SQL project as the host project
Shared VPC allows a host project to share subnets with service projects. In this case, the shared service project can be the host project, and the development VPC can be attached to it. Alternatively, VPC peering can connect the development VPC to the service project's VPC. Cloud SQL private services access requires a VPC peering between the Cloud SQL VPC and the client VPC. However, the simplest approach is to use Shared VPC: the service project (with Cloud SQL) becomes the host project, and the development VPC is created in a service project attached to it. But the question says 'within the same project' for development and production VPCs, so those VPCs are in the same project. The shared service is in a separate project. So to access Cloud SQL privately, they need to either use Private Services Access (which requires VPC peering) or use Shared VPC where the host project contains the Cloud SQL VPC. Since the VPCs are in the same project, they can use a single VPC with subnets, but to isolate, they prefer separate VPCs. The correct combination: create the development VPC as a service project of the shared VPC host project (which contains the Cloud SQL), enable Private Services Access between the host project VPC and the Cloud SQL VPC (which is in a separate project), and configure firewall rules. However, Private Services Access is configured once per VPC. The three actions: 1. Configure the shared VPC host project to include the Cloud SQL VPC (actually Private Services Access is set up on the host VPC). 2. Attach the development VPC's project as a service project to the shared VPC host project. 3. Set up VPC Network Peering between the host VPC and the Cloud SQL VPC (if Cloud SQL is in a separate project). But Private Services Access automatically creates a peering. Alternatively, using Cloud SQL private services access requires the VPC to be in the same project or connected via Shared VPC. Let's think: Cloud SQL can be configured with private IP in a VPC. If that VPC is in a separate project, it cannot be directly accessed from another project's VPC without peering. So the actions would be: create a shared VPC host project, attach the Cloud SQL project as a service project (if Cloud SQL is in that project), but Cloud SQL is already in a separate project. Actually, the simplest is to use VPC peering between the development VPC and the Cloud SQL VPC. But that requires manual peering. Given the options, the correct three are: A, D, and C? Let's assume the options include: A. Configure Shared VPC with the Cloud SQL project as host project. B. Configure VPC Network Peering between the development VPC and the Cloud SQL VPC. C. Enable Private Services Access on the development VPC. D. Attach the development project as a service project to the shared VPC host project. E. Create a firewall rule allowing traffic from the development VPC to the Cloud SQL IP range. The correct answer: A, D, and C? Actually, to use Cloud SQL private IP, you need Private Services Access enabled on the VPC. If you use Shared VPC, the host project's VPC is used. So you would enable Private Services Access on the host VPC, attach the development project as a service project, and ensure the Cloud SQL instance is in the host project's VPC. But Cloud SQL is in a separate project. So you would need to either move it or use peering. Given typical exam, the answer might be: Configure Shared VPC, attach the development project as a service project, and enable Private Services Access on the host VPC. So let's choose A, D, C.
Key principle: Count usable hosts — not total addresses — and remember that the network and broadcast addresses are not available to hosts in standard IPv4 subnets.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Configure Shared VPC with the Cloud SQL project as the host project
Why this is correct
This allows the host project to share its VPC with service projects.
Related concept
CIDR notation defines the prefix length.
- ✗
Create a firewall rule allowing ingress from the Cloud SQL instance to the development VPC
Why it's wrong here
Firewall rules are needed for traffic from development VPC to Cloud SQL, but the direction is reversed.
- ✗
Configure VPC Network Peering between the development VPC and the Cloud SQL VPC
Why it's wrong here
Peering is not needed if Shared VPC is used; the host VPC already contains the Cloud SQL.
- ✓
Enable Private Services Access on the host VPC
Why this is correct
Private Services Access is required for Cloud SQL private IP to be accessible from the VPC.
Related concept
CIDR notation defines the prefix length.
- ✓
Attach the development project as a service project to the shared VPC host project
Why this is correct
This allows the development project to use the host project's subnets.
Related concept
CIDR notation defines the prefix length.
Common exam traps
Common exam trap: usable hosts are not the same as total addresses
Subnetting questions often tempt you into counting all addresses. In normal IPv4 subnets, the network and broadcast addresses are not usable host addresses.
Detailed technical explanation
How to think about this question
Subnetting questions test whether you can identify the network, broadcast address, usable range, mask and correct subnet. Slow down enough to calculate the block size correctly.
KKey Concepts to Remember
- CIDR notation defines the prefix length.
- Block size helps identify subnet boundaries.
- Network and broadcast addresses are not usable hosts in normal IPv4 subnets.
- The required host count determines the smallest suitable subnet.
TExam Day Tips
- Write the block size before choosing the subnet.
- Check whether the question asks for hosts, subnets or a specific address range.
- Do not confuse /24, /25, /26 and /27 host counts.
Key takeaway
Count usable hosts — not total addresses — and remember that the network and broadcast addresses are not available to hosts in standard IPv4 subnets.
Real-world example
How this comes up in practice
A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
Visual reference
What to study next
Got this wrong? Here's your next step.
Review block sizes, usable host formulas (2^n − 2), and how to find network and broadcast addresses for /24 through /30. Then practise related PCNE subnetting questions on CIDR, address ranges, and subnet selection.
- →
Designing, Planning, and Prototyping a GCP Network — study guide chapter
Learn the concepts, then practise the questions
- →
Designing, Planning, and Prototyping a GCP Network practice questions
Targeted practice on this topic area only
- →
All PCNE questions
1,000 questions across all exam domains
- →
Google Professional Cloud Network Engineer study guide
Full concept coverage aligned to exam objectives
- →
PCNE practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related PCNE practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Configuring Network Services practice questions
Practise PCNE questions linked to Configuring Network Services.
Implementing Hybrid Interconnectivity practice questions
Practise PCNE questions linked to Implementing Hybrid Interconnectivity.
Managing, Monitoring, and Optimising Network Operations practice questions
Practise PCNE questions linked to Managing, Monitoring, and Optimising Network Operations.
Designing, Planning, and Prototyping a GCP Network practice questions
Practise PCNE questions linked to Designing, Planning, and Prototyping a GCP Network.
Implementing VPC Instances practice questions
Practise PCNE questions linked to Implementing VPC Instances.
Implementing network security practice questions
Practise PCNE questions linked to Implementing network security.
Implementing a Virtual Private Cloud practice questions
Practise PCNE questions linked to Implementing a Virtual Private Cloud.
PCNE fundamentals practice questions
Practise PCNE questions linked to PCNE fundamentals.
PCNE scenario practice questions
Practise PCNE questions linked to PCNE scenario.
PCNE troubleshooting practice questions
Practise PCNE questions linked to PCNE troubleshooting.
Practice this exam
Start a free PCNE 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 PCNE question test?
Designing, Planning, and Prototyping a GCP Network — This question tests Designing, Planning, and Prototyping a GCP Network — CIDR notation defines the prefix length..
What is the correct answer to this question?
The correct answer is: Configure Shared VPC with the Cloud SQL project as the host project — Shared VPC allows a host project to share subnets with service projects. In this case, the shared service project can be the host project, and the development VPC can be attached to it. Alternatively, VPC peering can connect the development VPC to the service project's VPC. Cloud SQL private services access requires a VPC peering between the Cloud SQL VPC and the client VPC. However, the simplest approach is to use Shared VPC: the service project (with Cloud SQL) becomes the host project, and the development VPC is created in a service project attached to it. But the question says 'within the same project' for development and production VPCs, so those VPCs are in the same project. The shared service is in a separate project. So to access Cloud SQL privately, they need to either use Private Services Access (which requires VPC peering) or use Shared VPC where the host project contains the Cloud SQL VPC. Since the VPCs are in the same project, they can use a single VPC with subnets, but to isolate, they prefer separate VPCs. The correct combination: create the development VPC as a service project of the shared VPC host project (which contains the Cloud SQL), enable Private Services Access between the host project VPC and the Cloud SQL VPC (which is in a separate project), and configure firewall rules. However, Private Services Access is configured once per VPC. The three actions: 1. Configure the shared VPC host project to include the Cloud SQL VPC (actually Private Services Access is set up on the host VPC). 2. Attach the development VPC's project as a service project to the shared VPC host project. 3. Set up VPC Network Peering between the host VPC and the Cloud SQL VPC (if Cloud SQL is in a separate project). But Private Services Access automatically creates a peering. Alternatively, using Cloud SQL private services access requires the VPC to be in the same project or connected via Shared VPC. Let's think: Cloud SQL can be configured with private IP in a VPC. If that VPC is in a separate project, it cannot be directly accessed from another project's VPC without peering. So the actions would be: create a shared VPC host project, attach the Cloud SQL project as a service project (if Cloud SQL is in that project), but Cloud SQL is already in a separate project. Actually, the simplest is to use VPC peering between the development VPC and the Cloud SQL VPC. But that requires manual peering. Given the options, the correct three are: A, D, and C? Let's assume the options include: A. Configure Shared VPC with the Cloud SQL project as host project. B. Configure VPC Network Peering between the development VPC and the Cloud SQL VPC. C. Enable Private Services Access on the development VPC. D. Attach the development project as a service project to the shared VPC host project. E. Create a firewall rule allowing traffic from the development VPC to the Cloud SQL IP range. The correct answer: A, D, and C? Actually, to use Cloud SQL private IP, you need Private Services Access enabled on the VPC. If you use Shared VPC, the host project's VPC is used. So you would enable Private Services Access on the host VPC, attach the development project as a service project, and ensure the Cloud SQL instance is in the host project's VPC. But Cloud SQL is in a separate project. So you would need to either move it or use peering. Given typical exam, the answer might be: Configure Shared VPC, attach the development project as a service project, and enable Private Services Access on the host VPC. So let's choose A, D, C.
What should I do if I get this PCNE question wrong?
Review block sizes, usable host formulas (2^n − 2), and how to find network and broadcast addresses for /24 through /30. Then practise related PCNE subnetting questions on CIDR, address ranges, and subnet selection.
What is the key concept behind this question?
CIDR notation defines the prefix length.
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 →
Last reviewed: Jul 4, 2026
This PCNE practice question is part of Courseiva's free Google Cloud 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 PCNE exam.
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.
Sign in to join the discussion.