CoStudy

HomeCertificationsCompTIA Network+ › Network Operations

Network Operations — CompTIA Network+ practice questions

51 multiple-choice questions and 22 flashcards on Network Operations, about 19% of the CompTIA Network+ bank. Every one carries a written rationale.

Written and maintained by Nick Burton · last updated 2026-08-22 · how we write and review questions

What this chapter covers

Network Operations is one of 7 chapters in CoStudy's CompTIA Network+ bank, and it holds 51 of the bank's 270 multiple-choice questions — roughly 19% of the total. That proportion is not arbitrary: chapters follow the certifying body's published exam outline, and the number of questions in each is set by that domain's published weight, so the share of your practice time this chapter takes matches the share of the real exam it accounts for.

Studying by chapter is worth doing once you have a diagnostic score. A single overall percentage tells you whether you are close; it does not tell you which domain is dragging. Working a weak chapter in isolation, and re-testing it in isolation, is the fastest way to move a score that has stalled — and it is why the mock exams in CoStudy report by domain rather than as one number.

Free Network Operations practice questions

10 questions drawn from this chapter, with the full rationale shown — the controlling principle behind the right answer, and why each wrong option tempts and fails.

Which metric measures variation in packet delay over time and most directly affects VoIP quality?

  1. Latency
  2. Throughput
  3. Jitter
  4. MTU

Answer: C — Jitter

Jitter is delay variation; VoIP is highly sensitive. Latency is absolute one-way/RTT. Throughput is sustained rate. MTU is frame size. Confusing jitter with latency is a Network+ trap.

A network diagram serves what primary purpose?

  1. Serve as decorative wall material for the IT operations center
  2. Document physical and logical topology for troubleshooting and planning
  3. Serve as a substitute for router and switch running configurations
  4. Generate revenue by billing clients for documented network assets

Answer: B — Document physical and logical topology for troubleshooting and planning

B is right: physical diagrams show cabling and rack layout while logical diagrams show IP addressing, VLANs, routing, and trust boundaries, and both support change management, incident response, and recovery. A is not a purpose. C fails because a diagram summarizes intent but never replaces device configuration. D confuses documentation with billing.

A monitoring platform must programmatically retrieve wireless client counts from a vendor controller every minute and store them for reporting. Which interface is the MOST appropriate integration point?

  1. An SNMP set operation issued against the controller each minute
  2. A serial console session scripted with terminal emulation software
  3. A scheduled TFTP pull of the controller's running configuration
  4. The controller's REST API

Answer: D — The controller's REST API

D) Correct — a REST API returns structured, parseable state data and is the intended programmatic integration path for modern controllers. A) A set writes values rather than reading them; a get would be closer but SNMP is the legacy path here. B) Screen-scraping a console is brittle and unsuited to per-minute automation. C) A config pull returns settings, not live client counts.

Which statement BEST describes the purpose of a maintenance window in change management?

  1. A period during which no changes of any kind may be submitted or applied
  2. A pre-agreed period in which stakeholders accept possible service disruption
  3. Time set aside each night for automated configuration backups to complete
  4. The interval an SLA allows before service credits become payable to a customer

Answer: B — A pre-agreed period in which stakeholders accept possible service disruption

B) Correct — the window is the negotiated slot where risk of impact is acceptable to the business, which is why changes are scheduled into it. A) That describes a change freeze, the near-twin concept often confused with a window. C) Backup jobs may run nightly but that schedule is not a change window. D) Credit thresholds live in the SLA and are unrelated to change scheduling.

At 02:00 an on-call engineer reconfigured a failed firewall interface to restore service, bypassing the normal approval queue as the emergency policy allows. Under a formal change management process, what must happen NEXT?

  1. Nothing further — emergency changes are permanently exempt from review
  2. Schedule a maintenance window before the change can remain in place
  3. Open a standard request for change dated before the emergency work was performed
  4. Submit retroactive change documentation for review and approval by the board

Answer: D — Submit retroactive change documentation for review and approval by the board

D) Correct — emergency changes defer approval, they do not eliminate it; the record and review still have to be completed after the fact. A) Treating emergency work as exempt is the common misconception that destroys the audit trail. B) The disruption already happened, so scheduling a window afterward addresses nothing. C) Backdating a request falsifies the record rather than documenting an emergency honestly.

A network engineer must produce a document that shows which VLANs and IP subnets ride over which routed links between two campuses. Cable runs, patch-panel ports and cabinet positions are deliberately out of scope. Which document BEST fits this requirement?

  1. Rack elevation drawing showing each device's position in the cabinet
  2. Physical topology map tracing cable runs between patch panels
  3. Logical network diagram showing VLANs, subnets and routed paths
  4. Floor plan marking the location of every wall jack and drop

Answer: C — Logical network diagram showing VLANs, subnets and routed paths

C) Correct — a logical diagram abstracts away media and placement and shows addressing, segmentation and traffic paths, which is exactly the stated scope. A) A rack elevation answers 'where is the box mounted', a physical concern explicitly excluded. B) A physical topology map is the near-twin document for cabling, which the question rules out. D) A floor plan documents drop locations for installers, not routing or VLAN membership.

A WAN interface flaps down and back up for roughly twenty seconds. The monitoring system polls interface state every five minutes. Which mechanism is MOST likely to have captured the event?

  1. The interface counter poll taken at the next five-minute mark
  2. The weekly network discovery scan of the WAN address range
  3. An SNMP trap sent by the router at the moment the link changed state
  4. The monthly capacity baseline report produced from historical samples

Answer: C — An SNMP trap sent by the router at the moment the link changed state

C) Correct — traps are asynchronous and fire on the state change itself, which is why they cover events shorter than the polling interval. A) A poll five minutes later sees an interface that is up again and reports nothing unusual. B) Discovery inventories reachable devices periodically; it is far too coarse for a twenty-second event. D) A baseline report describes aggregate trends and would smooth a brief flap away entirely.

Before rolling a new firmware release to eighty access switches, which step is the MOST important for the operations team to complete?

  1. Email all users a notice that the network may be briefly unavailable
  2. Raise the SNMP polling frequency on every switch during the rollout
  3. Clear the log buffers on each switch so new messages are easy to read
  4. Validate the image on a non-production switch of the same model first

Answer: D — Validate the image on a non-production switch of the same model first

D) Correct — testing on identical, non-production hardware is what converts an eighty-device gamble into a controlled rollout. A) User notification matters but does not reduce the technical risk of a bad image. B) Faster polling adds visibility during the change without preventing a defective image from bricking devices. C) Clearing logs destroys the very history you would need if the upgrade misbehaves.

A design team is choosing between active-active and active-passive firewall pairs. Which consideration is MOST important when evaluating active-active?

  1. Each node must still absorb the full load alone after its partner fails
  2. Active-active pairs cannot share session state, so all sessions drop on failover
  3. Active-passive designs recover faster because the standby is already forwarding
  4. Active-active removes the requirement for a heartbeat link between the nodes

Answer: A — Each node must still absorb the full load alone after its partner fails

A) Correct — the classic active-active sizing trap is running both nodes above fifty percent, so a single failure creates an overloaded survivor. B) Modern active-active pairs do synchronize session state; this reverses the actual behavior. C) In active-passive the standby is precisely the node that is not forwarding, so the reasoning is backwards. D) Both models depend on a heartbeat to detect peer failure.

A newly added switch reports its statistics to the monitoring system only as numeric object identifiers, with no human-readable names or units. What is required to fix the display?

  1. Load the vendor's MIB into the management system so OIDs resolve to named objects
  2. Enable trap forwarding on the switch toward the management system's listener
  3. Increase the polling interval so the manager has time to resolve each object
  4. Change the community string on the switch to match the manager's profile

Answer: A — Load the vendor's MIB into the management system so OIDs resolve to named objects

A) Correct — the MIB is the dictionary that maps OIDs to object names, types and units; without it the manager can only show raw numbers. B) Traps are event notifications and would not change how polled objects are labeled. C) Polling interval affects sample frequency, never naming. D) A community mismatch would prevent data from arriving at all, yet data is clearly arriving.

Network Operations flashcards

4 cards from the 22 in this chapter.

What is the role of syslog?

Standard for forwarding log messages from network devices to a centralized server. Severity levels 0–7 (Emergency to Debug).

What is a runbook in network operations?

Documented procedure for routine tasks (failover, restart, backup). Reduces errors and accelerates recovery during incidents.

What is high availability (HA)?

Designing a system to minimize downtime via redundancy and failover. Common in pairs (active/active or active/standby) or N+1 clusters.

What is latency vs. jitter?

Latency: one-way or round-trip delay. Jitter: variation in latency. Voice/video tolerate moderate latency but are very sensitive to jitter.

Practise the full chapter

These are a sample. The full Network Operations chapter runs 73 items with per-chapter progress tracking, on the web and in the iOS app.

Open CompTIA Network+ in CoStudy →

Other CompTIA Network+ chapters

All CompTIA Network+ practice questions →