CompTIA A+ Core 1 220-1201 - Domain 2 Networking

By Jordan Blake · Updated May 25, 2026

Questions25
Passing Score75%
Format100% Multiple Choice
Sessions Logged653
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.5 out of 5 from 26 ratings.
4.5 (26)

Topics covered

This quiz

Uncategorized25 (100%)

Uncategorized25 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-5523

Question Q-5523 A technician wants to see all current TCP connections and…

2 comments · last active Jun 5, 2026

  • anoneth · Apr 15, 8:01 PM

    netstat shows connections/listeners; identify rogue service on weird port. -ano adds PID on Windows.

  • lindsayehlert9 · Jun 5, 11:22 PM

    Pair with Task Manager or resource monitor to kill malicious process after spotting port.

Q-5504

Question Q-5504 A technician is troubleshooting why a user's computer cannot obtain…

2 comments · last active May 16, 2026

  • Boxing_Glove_Arrow · Apr 14, 12:15 PM

    No DHCP lease → APIPA 169.254.x.x. Check scope exhausted, wrong VLAN, or rogue DHCP server.

  • syberx · May 16, 8:17 AM

    ipconfig /release /renew is first practical step after confirming NIC link light.

Q-5500

Question Q-5500 A user reports they cannot access the internet but can…

2 comments · last active May 13, 2026

  • DumberMonkey · Apr 27, 1:41 PM

    Ping gateway OK but no internet = often DNS. Ping 8.8.8.8 vs ping google.com to split L3 vs name resolution.

  • mcalla09 · May 13, 11:17 AM

    If IP works and name doesn't, flush DNS cache (ipconfig /flushdns) and check DHCP DNS servers handed out.

Q-5510

Question Q-5510 Which IPv4 address range is designated for APIPA (Automatic Private…

2 comments · last active May 3, 2026

  • timeasy · Apr 15, 12:37 PM

    APIPA range 169.254.0.0–169.254.255.255 — link-local, machines can talk on segment without DHCP.

  • now_with_more_gluten · May 3, 6:46 PM

    Same concept as the standalone A+ networking quiz Q9 if anyone cross-studying old material.

Q-5508

Question Q-5508 Which protocol translates human-readable domain names (like www.google.com) into IP…

2 comments · last active Apr 25, 2026

  • astromoco · Apr 24, 11:09 PM

    DNS translates FQDN to IP. Hosts file overrides for testing — malware abuses it for redirects.

  • heileris · Apr 25, 6:09 PM

    nslookup vs dig — Windows techs live in nslookup; know record types A vs AAAA vs CNAME basics.

Q-5518

Question Q-5518 Which of the following BEST describes the purpose of subnetting?

2 comments · last active Apr 17, 2026

  • skate253 · Apr 17, 7:32 AM

    Subnetting on A+ = why networks exist, broadcast domains, efficient IP use — not full CCNA math every time.

  • mmmdr · Apr 17, 11:32 PM

    /24 = 254 usable hosts, /25 = 126, etc. Practice writing mask from CIDR for speed.

Q-5512

Question Q-5512 A network technician uses the command `ping 127.0.0.1` and receives…

2 comments · last active Apr 12, 2026

  • 808sandcoffeebreaks · Apr 12, 4:40 AM

    ping 127.0.0.1 = loopback tests own TCP/IP stack, not cable or switch. First isolation step in methodology.

  • Hula_Jos · Apr 12, 3:40 PM

    Then ping gateway, then remote IP, then hostname — CompTIA loves that order.

Q-5514

Question Q-5514 A technician configures a new Wi-Fi network. They set it…

2 comments · last active Apr 10, 2026

  • Peppa-Jack · Apr 9, 10:04 AM

    WPA3-Personal = SAE resists offline dictionary attacks better than WPA2-PSK. Enterprise uses 802.1X.

  • LandboundMermaid · Apr 10, 8:04 AM

    WEP is dead; TKIP is legacy. If answer mentions WEP on a new deployment, it's wrong.

Q-5503

Question Q-5503 Which of the following port numbers is associated with HTTPS…

2 comments · last active Apr 9, 2026

  • Ben10do · Apr 8, 2:16 PM

    HTTPS = 443. HTTP 80, DNS 53, DHCP 67/68 — sticky note on monitor saved me.

    +2 votes
  • QueenTemptress · Apr 9, 4:16 AM

    RDP 3389, SSH 22, FTP 21 — they rotate through practice tests. Know TCP vs UDP for DHCP/DNS.

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

A technician is setting up a wireless network in a warehouse with many metal shelves. Users at the far end experience poor signal. Which action would MOST improve coverage without replacing the existing AP?

Answer choices

  • A. Switch from 5 GHz to 2.4 GHz on all devices

  • B. Add a wireless range extender/repeater in the middle of the warehouse (Correct)

  • C. Increase the DHCP lease time

  • D. Switch to Cat 6 Ethernet cabling

Explanation

A wireless range extender/repeater placed in a central location can rebroadcast the Wi-Fi signal and extend coverage. Switching to 2.4 GHz improves range but reducing channel capacity. A mesh AP would be ideal, but a repeater is a practical improvement.

Question 2

Which protocol translates human-readable domain names (like www.google.com) into IP addresses?

Answer choices

  • A. DHCP

  • B. DNS (Domain Name System) (Correct)

  • C. ARP

  • D. SNMP

Explanation

DNS (Domain Name System) resolves hostnames and fully qualified domain names (FQDNs) to IP addresses. Without DNS, users would need to know IP addresses to access websites and services.

Question 3

A user is unable to resolve website names but can connect to servers using IP addresses directly. Which command should the technician run FIRST to diagnose?

Answer choices

  • A. `ping 127.0.0.1`

  • B. `nslookup google.com` (Correct)

  • C. `ipconfig /release`

  • D. `tracert 192.168.1.1`

Explanation

`nslookup` queries DNS servers directly to test name resolution. Since the user can connect by IP but not by name, the issue is clearly DNS-related. nslookup will reveal whether DNS queries are reaching the server and returning correct responses.

Question 4

A technician needs to test if a specific network port is open on a remote server. Which command-line tool can test TCP port connectivity?

Answer choices

  • A. `ipconfig`

  • B. `nslookup`

  • C. `telnet [host] [port]` or `Test-NetConnection` (PowerShell) (Correct)

  • D. `arp -a`

Explanation

`telnet [hostname] [port]` attempts a TCP connection to a specific port. If it connects, the port is open. PowerShell's `Test-NetConnection -Port` is the modern equivalent. `ipconfig` shows IP config; `nslookup` tests DNS.

Question 5

Which of the following BEST describes the purpose of subnetting?

Answer choices

  • A. Encrypting traffic between network segments

  • B. Dividing a large network into smaller, more manageable logical segments to improve performance and security (Correct)

  • C. Translating private IP addresses to public IP addresses

  • D. Resolving domain names to IP addresses

Explanation

Subnetting divides a large IP address space into smaller subnets (subnetworks), reducing broadcast domains, improving network performance, enabling better security segmentation, and more efficient IP address allocation.