Question Q-5909 A network technician needs to connect two buildings 150 meters…
1 comment · last active May 20, 2026
By Jordan Blake · Updated Jun 1, 2026
| Questions | 23 |
| Passing Score | 75% |
| Format | 65% Multiple Choice |
| Sessions Logged | 643 |
| Your progress | Log in / Register to track times taken, best score, questions mastered, and coverage on this quiz. |
| Rating |
Uncategorized23 questions
Log in to post a comment, reply, or expand a question.
Layer 3 = IP routing between networks. Layer 2 = MAC within LAN. Router vs switch in one sentence.
TCP reliable ordered delivery, UDP fire-and-forget — VoIP/streaming often UDP, file transfer TCP.
NAT/PAT overload — many private IPs share one public IP using different source ports.
VLANs segment broadcast domains at L2. Trunk carries multiple VLANs tagged (802.1Q).
Fiber SM vs MM — SM longer distance single mode, MM shorter multimode (orange/aqua jacket clues).
/24 = 255.255.255.0 = 254 usable hosts (if you exclude network/broadcast).
DNS A record = name to IPv4, AAAA = IPv6, MX = mail, CNAME = alias.
DHCP DORA — if you know DHCP you know APIPA fallback when it fails.
Catalog listing of the 5 preview questions for this quiz.
A network technician needs to connect two buildings 150 meters apart with a high-speed backbone link. Which cable type is MOST appropriate?
Multi-mode fiber (MMF) is ideal for this scenario: 150 meters is within MMF's typical range (up to 550m for OM3/OM4 at 10 Gbps), and MMF is less expensive than single-mode for shorter runs. Cat 6A UTP supports 10 Gbps to 100m — 150m exceeds its maximum distance for 10GbE. Single-mode fiber (SMF) can span kilometers but is more expensive (laser transceivers vs. LED) and is overkill for 150m. For building-to-building backbone connections >100m, fiber is preferred over copper due to distance limitations and electrical isolation (eliminates ground loops between buildings).
A network engineer is implementing a link aggregation solution to combine two 1 Gbps links between a switch and a server for 2 Gbps of combined bandwidth and link redundancy. Which IEEE standard governs this?
IEEE 802.3ad (now incorporated into 802.1AX-2008) defines Link Aggregation Control Protocol (LACP), which bundles multiple physical Ethernet links into a single logical LAG (Link Aggregation Group). Benefits: increased aggregate bandwidth, load balancing across links, automatic failover if one link fails. LACP uses LACPDUs for negotiation. Both ends must support LACP. IEEE 802.1Q = VLAN tagging; 802.11ac = Wi-Fi 5 wireless; 802.1X = port-based network access control (NAC/authentication). Also called EtherChannel (Cisco), NIC Teaming (Windows), or bonding (Linux).
The tool [[blank1]] traces the route that packets take from a source to a destination, showing each hop (router) and the round-trip time to that hop.
Both `tracert` (Windows) and `traceroute` (Linux/macOS) use TTL (Time to Live) manipulation to discover network paths. They send packets with incrementing TTL values (starting at 1). When TTL expires at a router, the router sends back an ICMP Time Exceeded message, revealing the router's IP. This is repeated for each hop until the destination is reached. Useful for identifying: routing loops, high-latency hops, failed network segments. Windows uses ICMP Echo; Linux/macOS default to UDP probes (can use -I for ICMP). `pathping` (Windows) combines ping and tracert functionality.
Which protocol automatically assigns IP addresses, subnet masks, default gateways, and DNS server addresses to network clients?
DHCP (Dynamic Host Configuration Protocol, port 67/68, UDP) automatically configures IPv4 network settings. DORA process: Discover (client broadcasts) → Offer (server proposes IP) → Request (client accepts) → Acknowledge (server confirms). DHCP provides: IP address, subnet mask, default gateway, DNS servers, lease duration. DNS (port 53) resolves domain names to IP addresses. NAT translates private to public IPs. ARP maps IP addresses to MAC addresses within a local network segment.
In IPv6, a [[blank1]] address begins with FE80::/10 and is automatically configured on every IPv6-enabled interface, while a [[blank2]] address (2000::/3) is globally routable on the internet.
IPv6 address types: Link-local (FE80::/10) — automatically configured using EUI-64 from MAC address; used for local network communication and routing protocols; not routable beyond the local link. Global Unicast (2000::/3) — publicly routable, equivalent to public IPv4 addresses. Unique Local (FC00::/7, FD00::/8) — private addresses similar to RFC 1918; not internet-routable. Multicast (FF00::/8) — one-to-many. Loopback (::1/128) — equivalent to 127.0.0.1. IPv6 eliminates broadcast, replacing it with multicast and anycast.
Default gateway must be on same subnet as host — otherwise off-net routing breaks.