- A
The private zone is not attached to the VPC
Why wrong: The stem says it is attached.
- B
The VM's /etc/resolv.conf does not point to Cloud DNS
Why wrong: VMs in a VPC automatically use the internal DNS resolver.
- C
Firewall rule blocking DNS traffic (UDP 53) to the metadata server
Why wrong: DNS queries go to metadata server (169.254.169.254) which is not blocked by default.
- D
The record 'myapp.example.internal' does not exist in the zone
Private zone is authoritative; records must be added explicitly.
Troubleshooting Private DNS Zone: Record Not Found
This PCNE practice question tests your understanding of pcne exam topics. 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.
A company is using Cloud DNS for private zone resolution within their VPC. They have a private zone for 'example.internal' and have attached it to the VPC. When they create a new Compute Engine VM and try to resolve 'myapp.example.internal', it fails. 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.
Quick Answer
The answer is that the record 'myapp.example.internal' does not exist in the private zone. This is the most likely cause because Cloud DNS returns an NXDOMAIN response only when the queried record name is absent from the zone, even if the zone itself is correctly attached to the VPC. Since the question confirms the private zone for 'example.internal' is attached, the resolution failure points directly to a missing A record for 'myapp'. On the Google Professional Cloud Network Engineer exam, this scenario tests your understanding that private DNS zone resolution failure is almost never a zone attachment issue when the zone is confirmed attached—the trap is assuming a network or peering problem when the real culprit is an undefined record. Remember the mnemonic: "Zone attached, record detached" to quickly recall that NXDOMAIN means the record itself is missing, not the zone.
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 record 'myapp.example.internal' does not exist in the zone
Option D is correct because the most likely cause of a resolution failure for a specific record is that the record does not exist in the private zone. The question states the zone is attached to the VPC, so the zone itself is accessible; the failure is specific to the record name. Cloud DNS will return an NXDOMAIN response if the record is not defined, even if the zone is properly configured.
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.
- ✗
The private zone is not attached to the VPC
Why it's wrong here
The stem says it is attached.
- ✗
The VM's /etc/resolv.conf does not point to Cloud DNS
Why it's wrong here
VMs in a VPC automatically use the internal DNS resolver.
- ✗
Firewall rule blocking DNS traffic (UDP 53) to the metadata server
Why it's wrong here
DNS queries go to metadata server (169.254.169.254) which is not blocked by default.
- ✓
The record 'myapp.example.internal' does not exist in the zone
Why this is correct
Private zone is authoritative; records must be added explicitly.
Clue confirmation
The clue word "most likely" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that DNS failures in a private zone are due to firewall rules or resolver configuration, when in fact the metadata server handles DNS transparently and the most common cause is a missing DNS record.
Detailed technical explanation
How to think about this question
Cloud DNS private zones use the metadata server (169.254.169.254) as a DNS resolver, which forwards queries to the Cloud DNS backend. The metadata server handles DNS on a special internal interface that bypasses VPC firewall rules, so firewall misconfigurations rarely cause resolution failures for private zones. A common real-world scenario is when a record is misspelled or not yet created, leading to an NXDOMAIN response that is indistinguishable from a zone misconfiguration to the user.
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 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
Quick reference
Common DNS Record Types
| Record | Purpose | Example |
|---|---|---|
| A | IPv4 address mapping | example.com → 93.184.216.34 |
| AAAA | IPv6 address mapping | example.com → 2606:2800::1 |
| CNAME | Alias to another hostname | www → example.com |
| MX | Mail server for domain | example.com → mail.example.com (priority 10) |
| TXT | Text data (SPF, DKIM, verification) | v=spf1 include:_spf.example.com ~all |
| NS | Authoritative name servers | example.com NS ns1.example.com |
| PTR | Reverse DNS (IP → hostname) | 34.216.184.93.in-addr.arpa → example.com |
| SOA | Zone authority record | Primary NS, admin email, serial, TTL defaults |
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 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?
Read the scenario before looking for a memorised answer.
What is the correct answer to this question?
The correct answer is: The record 'myapp.example.internal' does not exist in the zone — Option D is correct because the most likely cause of a resolution failure for a specific record is that the record does not exist in the private zone. The question states the zone is attached to the VPC, so the zone itself is accessible; the failure is specific to the record name. Cloud DNS will return an NXDOMAIN response if the record is not defined, even if the zone is properly configured.
What should I do if I get this PCNE question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
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?
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 →
Keep practising
More PCNE practice questions
- An organization is migrating to Google Cloud and requires connectivity between their on-premises network and VPC. They p…
- A company is migrating on-premises DNS to Google Cloud. They have a hybrid network using Cloud VPN and want to resolve o…
- A network engineer is configuring a Cloud Router for BGP peering with an on-premises router over a VPN tunnel. The on-pr…
- A company uses Cloud NAT to allow private instances to reach the internet. They notice that egress traffic from Compute…
- You are setting up Partner Interconnect with a service provider that offers both Layer 2 and Layer 3 options. Your on-pr…
- Match each VPC networking concept to its definition.
Last reviewed: Jun 30, 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.