Courseiva

CompTIA A+ Core 1 220-1201 (220-1201) — Questions 376450

972 questions total · 13pages · All types, answers revealed

Page 5

Page 6 of 13

Page 7
376
MCQhard

A technician is setting up a multifunction printer for a small business that wants to allow employees to print from their smartphones. The printer does not have Wi-Fi Direct, but it is connected to the company's wired network. Which solution would enable mobile printing?

A.Enable Bluetooth on the printer and pair it with each phone
B.Configure the printer to support AirPrint
C.Use a USB cable to connect each phone to the printer
D.Install Google Cloud Print on the printer
AnswerB

AirPrint is a native Apple technology that allows iOS and macOS devices to print wirelessly to compatible printers over a local area network without requiring specific drivers or additional software. By configuring the multifunction printer to support AirPrint and ensuring it is on the same wired or wireless network subnet as the iOS devices, users can easily discover and print documents directly from their phones, making it an efficient and widely supported solution for Apple users.

Why this answer

This question tests knowledge of mobile printing solutions in a network environment. AirPrint is a built-in iOS feature that discovers printers on the same network via Bonjour. Google Cloud Print is deprecated, and Bluetooth or USB tethering are not suitable for a wired network.

377
MCQmedium

A small business reports that employees can access the internet but cannot reach the internal company website hosted on a local server. The server's IP address is 192.168.1.10, and clients use DHCP. What is the most likely cause?

A.The DHCP server is not assigning the correct subnet mask.
B.The DNS server lacks a host record for the internal website.
C.The switch port connecting the server is administratively down.
D.The firewall is blocking port 443 inbound.
AnswerB

A missing A or host record prevents name resolution for the internal site, while internet DNS works fine.

Why this answer

The internal website is accessed by its hostname, which clients resolve via DNS. Since employees can reach the internet (so general DNS works) but not the local server, the most likely cause is that the DNS server lacks a host record (A or AAAA record) for the internal website's name, preventing name-to-IP resolution for 192.168.1.10. DHCP is functioning correctly because clients receive IP addresses and can access the internet.

Exam trap

CompTIA A+ exams often test the distinction between connectivity issues (like a down switch port or firewall block) and name resolution issues, trapping candidates who assume that internet access implies all DNS is working, when in fact internal DNS records may be missing or misconfigured.

How to eliminate wrong answers

Option A is wrong because if the DHCP server were assigning an incorrect subnet mask, clients would likely have connectivity issues to both the internet and the local server, not just the internal website; the subnet mask is typically a /24 (255.255.255.0) for 192.168.1.x, and incorrect masks would cause broader routing failures. Option C is wrong because if the switch port connecting the server were administratively down, the server would be completely unreachable, and clients would not be able to access any services on it, including the internal website; the question states the server is accessible (employees can reach the internet, implying the server's network path is up). Option D is wrong because blocking port 443 (HTTPS) inbound would only affect secure web traffic, but the internal website could be using HTTP (port 80) or another port; additionally, if the firewall were blocking port 443, clients might still reach the site via HTTP, and the symptom would be specific to HTTPS, not a complete inability to reach the internal website.

378
MCQeasy

A user complains that their wired connection drops randomly for a few seconds then reconnects. The technician suspects electromagnetic interference (EMI) from nearby power cables. Which tool can best confirm the presence of excessive EMI on the network cable?

A.Multimeter
B.Cable tester
C.Loopback plug
D.Spectrum analyzer
AnswerD

A spectrum analyzer can detect and measure electromagnetic interference by analyzing the frequency spectrum of signals. It is the best tool to confirm excessive EMI from nearby power cables.

Why this answer

A spectrum analyzer is the correct tool because it can detect and measure electromagnetic interference (EMI) by analyzing the frequency spectrum of signals radiated from the cable. This allows the technician to identify excessive EMI from nearby power cables. A standard cable tester checks for continuity, wire mapping, and basic crosstalk but does not directly measure external EMI.

A multimeter measures electrical properties like voltage and resistance, not interference. A loopback plug is used to test network ports by sending data back to the device; it does not detect interference.

Exam trap

A common mistake is to think a cable tester can confirm EMI, but standard cable testers do not measure external interference. The spectrum analyzer is the correct tool for detecting EMI on network cables.

How to eliminate wrong answers

Option A is wrong because a multimeter measures DC/AC voltage, resistance, and continuity, but it cannot detect high-frequency electromagnetic interference on a network cable; it lacks the bandwidth and test patterns needed for EMI analysis. Option C is wrong because a loopback plug is used to test the transmit/receive capability of a network interface by reflecting signals back to the sender; it does not measure external interference or cable quality. Option D is wrong because a spectrum analyzer is designed to measure radio frequency (RF) signals over the air, not conducted interference on a twisted-pair copper cable; while it could detect radiated EMI, it is not the standard tool for testing Ethernet cabling per TIA/EIA standards.

379
MCQmedium

A company has a network with the IP range 172.16.0.0/16. They need to create 8 separate subnets for different departments, each with at least 1000 usable hosts. What subnet mask should be used?

A.255.255.240.0
B.255.255.224.0
C.255.255.248.0
D.255.255.192.0
AnswerB

This subnet mask, represented as a /19 CIDR prefix, is the correct choice. It borrows 3 bits from the host portion of a Class B network address (e.g., /16) for subnetting, yielding 2^3 = 8 distinct subnets. The remaining 13 host bits provide 2^13 - 2 = 8190 usable host addresses per subnet. This configuration precisely meets the requirement for 8 subnets while offering a substantial number of hosts for each.

Why this answer

To support 8 subnets with at least 1000 usable hosts each, you need to borrow enough bits from the host portion to create 8 subnets (2^3 = 8) while leaving at least 10 host bits (2^10 - 2 = 1022 usable hosts). Starting from /16, borrowing 3 bits gives a /19 prefix, which translates to subnet mask 255.255.224.0. This mask provides exactly 8 subnets and 8190 total hosts per subnet (2^13 - 2 = 8190), well exceeding the 1000-host requirement.

Exam trap

The 220-1201 exam often tests the misconception that you need to borrow the minimum number of bits to satisfy the host requirement first, leading candidates to pick a mask that provides exactly 1000 hosts (like /22 or /23) but fails to provide enough subnets, or they mistakenly use the formula 2^n - 2 for subnets instead of 2^n, causing them to borrow an extra bit and select a mask like 255.255.240.0.

How to eliminate wrong answers

Option A (255.255.240.0) is wrong because it uses a /20 prefix, which borrows 4 bits (2^4 = 16 subnets) and leaves only 12 host bits (2^12 - 2 = 4094 usable hosts per subnet); while this meets the host requirement, it creates more subnets than needed (16 vs. 8), but the question asks for the mask that creates exactly 8 subnets, not more. Option C (255.255.248.0) is wrong because it uses a /21 prefix, borrowing 5 bits (2^5 = 32 subnets) and leaving 11 host bits (2^11 - 2 = 2046 usable hosts); this also creates too many subnets (32) and is not the minimal mask that satisfies both constraints. Option D (255.255.192.0) is wrong because it uses a /18 prefix, borrowing only 2 bits (2^2 = 4 subnets), which provides only 4 subnets—insufficient for the required 8 departments.

380
MCQmedium

A user complains that their laptop's Wi-Fi connection drops frequently when a Bluetooth mouse is active. The laptop is a recent model with built-in Wi-Fi and Bluetooth. What is the most likely cause?

A.The Bluetooth mouse is out of range.
B.Interference between Bluetooth and Wi-Fi on the 2.4 GHz band.
C.The laptop's Wi-Fi driver is outdated.
D.The Bluetooth mouse uses a proprietary frequency.
AnswerB

Both Bluetooth and Wi-Fi commonly operate within the crowded 2.4 GHz Industrial, Scientific, and Medical (ISM) radio band. When a Bluetooth mouse is actively transmitting, its signals can interfere with Wi-Fi signals, especially if the Wi-Fi adapter is also using a channel within the same frequency range. This co-channel or adjacent-channel interference can lead to increased Wi-Fi packet loss, reduced throughput, and intermittent disconnections for the laptop.

Why this answer

The most likely cause is interference between Bluetooth and Wi-Fi on the 2.4 GHz band. Both Bluetooth and Wi-Fi (802.11b/g/n) share the same 2.4 GHz ISM band, and Bluetooth uses adaptive frequency hopping (AFH) to avoid collisions, but when a Bluetooth device is active, it can still cause co-channel interference with Wi-Fi, leading to dropped connections. This is a well-known issue, especially with older or poorly shielded hardware.

Exam trap

The trap here is that candidates may assume the issue is a driver problem (Option C) because it's a common troubleshooting step, but the CompTIA A+ exam tests the specific technical relationship between Bluetooth and Wi-Fi sharing the 2.4 GHz band, requiring knowledge of RF interference rather than generic software fixes.

How to eliminate wrong answers

Option A is wrong because the user reports the mouse is active and the issue occurs specifically when it is in use, not when it is out of range; out-of-range behavior would cause the mouse to disconnect, not the Wi-Fi. Option C is wrong because while an outdated Wi-Fi driver could cause instability, the problem is specifically correlated with Bluetooth mouse activity, making interference the more precise and likely cause. Option D is wrong because Bluetooth mice operate on the standard 2.4 GHz ISM band using the Bluetooth protocol (IEEE 802.15.1), not a proprietary frequency; proprietary frequencies are rare in consumer devices and would not cause interference with Wi-Fi.

381
MCQhard

A user reports that their smartphone's wireless charging pad stops charging after a few minutes, and the phone gets very hot. The phone supports Qi wireless charging. The technician tests the pad with another phone and it works fine. What is the most likely cause?

A.The phone's battery management system is faulty.
B.The phone's wireless charging coil is misaligned with the pad.
C.The phone case contains metal or magnetic components that interfere with charging.
D.The wireless charging pad is not Qi-certified.
AnswerC

Metal or magnetic components embedded within a phone case can significantly interfere with the electromagnetic field generated by a wireless charging pad. These materials absorb the inductive energy, generating parasitic eddy currents that convert the energy into heat within the case itself. As this localized heat builds up, the smartphone's internal thermal protection system or the charging pad's Foreign Object Detection (FOD) mechanism will trigger, interrupting the charging process to prevent potential damage to the device or the pad, explaining the stoppage after a short period.

Why this answer

Since the charging pad works with another phone, the issue is with the user's phone. A thick case, especially one with metal or magnetic components, can interfere with wireless charging and cause overheating. The correct answer is a case with metal or magnetic parts.

382
MCQeasy

A small office has an inkjet printer that produces prints with horizontal white lines across the page. The lines appear in different positions on each print. Which step should the technician take first?

A.Replace the ink cartridges.
B.Run the printer's printhead cleaning cycle.
C.Update the printer driver.
D.Replace the printer's fuser.
AnswerB

Running the printer's printhead cleaning cycle is the primary and most effective first step for resolving print quality issues such as horizontal white lines, banding, or missing colors in an inkjet printer. This utility forces ink through the tiny nozzles of the printhead, dislodging dried ink, dust, or other debris that can cause partial or complete blockages. Clogged nozzles prevent ink from being ejected properly, leading to noticeable gaps and imperfections in the printed output.

Why this answer

Horizontal white lines on inkjet output often indicate clogged printhead nozzles. Running the printer's cleaning cycle is the first recommended step to clear dried ink from the nozzles.

383
MCQhard

A user reports that their computer can access the internet but cannot connect to a network printer that is on the same subnet. The technician pings the printer’s IP address from the computer and gets a reply. What is the most likely cause?

A.The printer’s IP address has changed.
B.The printer is not set as the default printer.
C.The printer’s print queue is paused or the printer is offline.
D.The network switch port for the printer is disabled.
AnswerC

A successful `ping` confirms network connectivity to the printer's IP address, meaning the device is reachable on the network. However, if the printer's internal print queue is paused, or if the printer itself is in an 'offline' state (either physically or via its driver settings), it will accept network packets but will not process or print any incoming jobs. This scenario perfectly explains why a printer is reachable but not producing output.

Why this answer

Since the ping succeeds, the printer is reachable at the network level. The issue is likely with the printer configuration or the print spooler on the computer. Common causes include the printer being offline, paused, or having a driver issue.

384
MCQmedium

During a deployment, you install a new graphics card into a desktop PC. After powering on, the system boots but the display is blank. The monitor is known to work, and the card's fans spin. What should you check next?

A.Replace the graphics card
B.Update the BIOS
C.Check that the monitor cable is connected to the graphics card, not the motherboard
D.Reseat the RAM
AnswerC

This is the most common oversight when installing a new discrete graphics card. Many motherboards are configured to automatically disable their integrated graphics processing unit (iGPU) when a dedicated PCIe graphics card is detected and installed. If the monitor cable remains connected to the motherboard's video output ports instead of the new graphics card's ports, the system will attempt to output video through the now-inactive iGPU, resulting in a blank screen despite the discrete card being powered on.

Why this answer

Fans spinning indicates the card is receiving power, but a blank display often means the monitor is not receiving a signal. The most common oversight is connecting the display cable to the motherboard's video port instead of the new graphics card's ports.

385
MCQeasy

A user wants to connect their laptop to a 4K external monitor using a USB-C port that supports DisplayPort Alt Mode. The monitor has only HDMI input. Which adapter or cable is required?

A.USB-C to USB-A adapter
B.USB-C to HDMI adapter
C.USB-C to DisplayPort cable
D.USB-C to VGA adapter
AnswerB

A USB-C to HDMI adapter is the correct solution because it leverages the DisplayPort Alternate Mode (Alt Mode) capability inherent in many USB-C ports. This adapter actively converts the native DisplayPort video signal, transmitted over the USB-C connection, into an HDMI signal that the monitor can accept. This active conversion ensures compatibility and allows the laptop to output video to an HDMI-only display.

Why this answer

The laptop's USB-C port supports DisplayPort Alt Mode, which can carry a DisplayPort signal over the USB-C connector. Since the monitor only has HDMI input, a USB-C to HDMI adapter converts the DisplayPort signal from Alt Mode into an HDMI-compatible signal, enabling the 4K video output.

Exam trap

The 220-1201 exam often tests the misconception that a USB-C to DisplayPort cable would work because the port supports DisplayPort Alt Mode, but the trap is that the monitor's input (HDMI) requires a different signal format, so a direct DisplayPort cable is incompatible without an active converter.

How to eliminate wrong answers

Option A is wrong because a USB-C to USB-A adapter only provides USB data and power, not video signal conversion, and cannot output to an HDMI monitor. Option C is wrong because a USB-C to DisplayPort cable would output a DisplayPort signal, but the monitor only has HDMI input, so it would be incompatible without an additional active converter. Option D is wrong because a USB-C to VGA adapter outputs an analog VGA signal, which cannot support 4K resolution and is not compatible with HDMI input.

386
MCQmedium

A user reports that their laptop's 1TB hard drive is making a clicking sound and the system is running very slowly. The technician runs a diagnostic and finds multiple bad sectors. What should the technician do first?

A.Run a surface scan to mark bad sectors and continue using the drive.
B.Replace the hard drive immediately and reinstall the operating system.
C.Back up all important data to an external drive or cloud storage.
D.Update the hard drive firmware to fix the clicking noise.
AnswerC

The clicking sound, combined with reports of bad sectors, strongly indicates an imminent mechanical failure of the hard drive. Before any other action, the absolute priority is to mitigate potential data loss by backing up all critical user data to a reliable external drive or cloud storage service. This proactive measure ensures data preservation, as the drive could cease functioning completely at any moment, making subsequent data recovery significantly more difficult or impossible.

Why this answer

This question tests understanding of hard drive failure symptoms and proper troubleshooting steps. A clicking sound (often called the 'click of death') and bad sectors indicate imminent mechanical failure. The priority is to back up data immediately before the drive fails completely.

Replacing the drive is necessary, but data backup comes first.

387
MCQeasy

A small business runs a legacy application that requires Windows 7. The company wants to upgrade all desktops to Windows 11 while still running that application. Which virtualization solution would allow the application to run on the new OS without compatibility issues?

A.Install Windows 7 in a dual-boot configuration
B.Use a Type 2 hypervisor such as VirtualBox to run Windows 7 as a virtual machine
C.Deploy Windows 11 and use Windows 7 compatibility mode
D.Replace the legacy application with a cloud-based alternative
AnswerB

A Type 2 hypervisor, such as VirtualBox, operates as an application directly on the host operating system, like Windows 10 or 11. This allows a virtual machine running Windows 7 to execute concurrently with the host OS, providing a completely isolated environment for the legacy application. This approach ensures full compatibility and enables seamless access to the legacy software without requiring a separate physical machine or system reboots.

Why this answer

This scenario tests understanding of application virtualization, where a legacy OS runs as a guest on a modern host. Using a Type 2 hypervisor like VirtualBox allows Windows 7 to run inside Windows 11, solving the compatibility problem without hardware changes.

388
MCQmedium

A technician is installing a thermal printer for a retail point-of-sale system. The printer uses direct thermal paper. What must the technician verify to ensure proper operation?

A.The printer driver is set to color mode
B.The paper is loaded with the coated side facing the print head
C.The printer is connected via Bluetooth
D.The printer has enough memory for graphics
AnswerB

Direct thermal paper has a coated side that reacts to heat; loading it incorrectly prevents printing.

Why this answer

Direct thermal printers use heat to create an image on specially coated paper. The paper has a coated side that reacts to heat. If the paper is loaded with the uncoated side facing the print head, the heat will not reach the coating, and no image will be produced.

Therefore, the technician must verify the paper is oriented with the coated side facing the print head for proper operation.

389
MCQeasy

During a network upgrade, a technician needs to document the physical path a cable takes from a workstation to the patch panel in the server room. Which tool is specifically designed to trace the exact cable route through walls and ceilings?

A.Cable tester
B.Toner and probe
C.Crimper
D.Punch-down tool
AnswerB

A toner, also known as a tone generator, injects an analog audio frequency signal onto a specific cable pair or all pairs within a network cable. The probe, an inductive amplifier, is then used to audibly detect this signal without direct contact, allowing a technician to physically trace the cable's path through walls, conduits, or within a crowded bundle. This method is highly effective for identifying the corresponding port at a patch panel or switch for an unknown cable run, making it ideal for documentation during upgrades.

Why this answer

A toner and probe (often called a fox and hound) is specifically designed to trace the physical path of a cable through walls, ceilings, and conduits. The toner injects an analog audio signal onto the cable, and the inductive probe detects that signal without needing a direct electrical connection, allowing the technician to follow the cable's route even when it is hidden behind building materials.

Exam trap

The 220-1201 exam often tests the distinction between 'testing' and 'tracing' tools, and the trap here is that candidates confuse a cable tester (which verifies electrical integrity) with a toner and probe (which physically locates the cable), leading them to choose the more familiar 'cable tester' option.

How to eliminate wrong answers

Option A is wrong because a cable tester (e.g., a continuity tester or certification tool) verifies wiring continuity, pinout, and performance metrics like attenuation or crosstalk, but it cannot locate or trace the physical path of a cable through walls. Option C is wrong because a crimper is used to attach connectors (like RJ45 plugs) to the ends of cables, not to trace or identify cable routes. Option D is wrong because a punch-down tool is used to terminate individual wires into insulation-displacement connectors on patch panels or keystone jacks, and it has no capability to trace cable paths.

390
MCQmedium

A network printer in a busy law office is shared by 15 users. Several users report that their print jobs are not being output, but the printer shows no error lights and the print queue appears empty. The printer is connected via Ethernet. Which step should be taken first?

A.Replace the network cable
B.Restart the print spooler service on the print server
C.Power cycle the printer
D.Reinstall the printer driver on all workstations
AnswerB

The print spooler service on the print server manages the queue of print jobs, processing them sequentially and sending them to the printer. If the spooler becomes hung, corrupted, or encounters a resource conflict, it can fail to process jobs correctly, leading to them disappearing from the queue without being printed. Restarting this service flushes the current queue, clears any cached errors or corrupted states, and reinitializes the service, often resolving such intermittent printing issues.

Why this answer

When a network printer appears idle but jobs disappear, the issue is often with the print spooler on the server or client. The spooler may be stalled or corrupted, causing jobs to be lost without error. Checking the print queue on the server and restarting the spooler service is the appropriate first step.

391
MCQhard

A technician is configuring a high-performance workstation with 128 GB of RAM using eight 16 GB DDR5 modules. The system boots but only shows 64 GB in the BIOS. The technician has reseated all modules and verified they are in the correct slots. What is the most likely cause?

A.The RAM modules are not all the same speed.
B.The motherboard only supports up to 64 GB of RAM.
C.The CPU does not support 128 GB of RAM.
D.The RAM is not properly seated in the slots.
AnswerC

The CPU's integrated memory controller (IMC) dictates the maximum amount of RAM that the processor can physically address and utilize, regardless of the number of slots available on the motherboard. Many workstation-grade CPUs, particularly older or mid-range models, have a specified memory limit (e.g., 64 GB), which would prevent the system from recognizing or fully utilizing 128 GB even if the motherboard has enough physical slots for the modules.

Why this answer

With high-capacity RAM configurations, the CPU's memory controller may have limitations. Some CPUs, especially mainstream models, may not support 128 GB (e.g., 64 GB max per channel). The technician should check the CPU specifications for maximum supported RAM.

Another possibility is a BIOS limitation or incorrect slot population, but the CPU limit is a common oversight.

392
MCQmedium

A user reports that their laptop's built-in display shows distorted colors and horizontal lines, but when they connect an external monitor via VGA, the external display works perfectly. What is the most likely cause?

A.The laptop's GPU is failing
B.The VGA cable is defective
C.The laptop's LCD panel or its video cable is damaged
D.The display driver is corrupt
AnswerC

When a laptop's internal display fails while an external monitor works perfectly, it strongly indicates a problem with components specific to the internal display assembly. This includes the LCD panel itself, which might be physically damaged or have a failed backlight, or the delicate video ribbon cable that connects the LCD panel to the motherboard. This cable often runs through the laptop's hinge, making it susceptible to wear, pinching, or disconnection over time.

Why this answer

The external monitor works perfectly via VGA, which bypasses the laptop's internal LCD panel and its video cable. Distorted colors and horizontal lines on the built-in display, combined with a flawless external display, isolate the fault to the LCD panel assembly or the LVDS/eDP cable connecting the panel to the motherboard. The GPU and driver are shared between both displays, so they cannot be the cause when the external display functions correctly.

Exam trap

The trap here is that candidates often assume any display issue is caused by a failing GPU or driver, but the key diagnostic clue is that the external monitor works perfectly, which rules out the shared components and points to the internal display path. In CompTIA A+ troubleshooting, always isolate whether the problem is with the internal display assembly or the shared video subsystem by testing an external monitor.

How to eliminate wrong answers

Option A is wrong because the GPU is responsible for rendering output to both the internal display and the external monitor; if the GPU were failing, the external monitor would also exhibit artifacts or fail to display. Option B is wrong because the VGA cable is only used for the external monitor, which works perfectly, so the cable cannot be defective. Option D is wrong because the display driver controls both displays; if it were corrupt, both the internal and external displays would show issues, not just the built-in LCD.

393
MCQhard

A technician is troubleshooting a workstation that fails to boot. The motherboard has a 24-pin ATX power connector and an 8-pin CPU power connector. The power supply has a 20+4 pin main connector and a 4+4 pin CPU connector. The technician connects the 20+4 pin to the motherboard correctly, but the system still does not power on. What should the technician check next?

A.The 20+4 pin connector is not fully seated
B.The power supply switch is turned off
C.The 4+4 pin CPU connector is only using one 4-pin half
D.The RAM is not properly seated
AnswerC

Modern CPUs, particularly those requiring higher wattage, demand a dedicated 8-pin EPS12V power connector to ensure stable and sufficient power delivery for initialization and operation. If a technician mistakenly connects only one 4-pin half of a 4+4 pin CPU power cable to a motherboard designed for a full 8-pin input, the CPU will not receive the necessary current and voltage. This critical power deficiency prevents the CPU from initiating its boot sequence, resulting in the workstation failing to power on or display any output.

Why this answer

The 4+4 pin CPU connector can be used as either a 4-pin or 8-pin connector. The technician must ensure that both 4-pin halves are connected together to form the 8-pin CPU power connector required by the motherboard. If only one 4-pin half is connected, the CPU may not receive power.

394
MCQmedium

A technician is setting up a mobile point-of-sale (POS) system using a tablet and a Bluetooth receipt printer. The printer pairs but prints garbled text. The tablet is running a custom POS app. What is the most likely cause?

A.The printer is out of paper.
B.The Bluetooth signal is weak.
C.The tablet is using the wrong Bluetooth profile or driver for the printer.
D.The printer's battery is low.
AnswerC

This is the correct answer because printers, especially thermal POS printers, rely on specific command languages like ESC/POS to interpret print commands, character sets, and formatting. If the tablet uses a generic Bluetooth profile (e.g., Serial Port Profile) without the correct printer-specific driver, it might send raw ASCII text or improperly formatted data. The printer then attempts to interpret this non-standard input as its native command language, resulting in seemingly random or 'garbled' characters as it misinterprets byte sequences for commands and characters.

Why this answer

The most likely cause is that the tablet is using the wrong Bluetooth profile or driver for the printer. Bluetooth printers typically use the Serial Port Profile (SPP) or Hardcopy Cable Replacement Profile (HCRP) to receive print data. If the tablet's POS app or Bluetooth stack is sending data using a different profile (e.g., A2DP for audio or HID for input), the printer will receive garbled or uninterpretable data, even though the devices are paired.

Exam trap

The 220-1201 exam often tests the distinction between pairing success and functional data transfer, trapping candidates who assume a successful Bluetooth connection guarantees correct operation, when in fact the correct profile or driver is required for the device to interpret the data properly.

How to eliminate wrong answers

Option A is wrong because if the printer were out of paper, it would either not print at all or show an error indicator, not produce garbled text. Option B is wrong because a weak Bluetooth signal would cause intermittent disconnections or slow data transfer, not the specific symptom of garbled text; the printer would either receive data correctly or not at all. Option D is wrong because a low battery would typically cause the printer to power off, fail to initialize, or print faintly, but it would not corrupt the data stream into garbled characters.

395
MCQmedium

A technician is upgrading a server that requires ECC (Error-Correcting Code) RAM. The technician has a box of non-ECC DDR4 modules from a desktop. Can these be used in the server?

A.Yes, as long as the speed and capacity match.
B.Yes, but only if the server's BIOS is set to ignore ECC errors.
C.No, because non-ECC RAM is not compatible with ECC-required systems.
D.No, because DDR4 desktop modules are physically larger than server modules.
AnswerC

ECC (Error-Correcting Code) RAM modules incorporate additional memory chips and internal logic specifically designed to detect and correct single-bit memory errors, and sometimes detect multi-bit errors. Systems requiring ECC memory, typically servers and workstations, have motherboards and CPUs that are designed to interface with and leverage these error correction capabilities. Non-ECC RAM lacks these extra chips and the necessary error correction circuitry, making it fundamentally incompatible with systems whose memory controllers are configured to expect and utilize ECC functionality for data integrity and system stability.

Why this answer

ECC and non-ECC RAM are not interchangeable; servers that require ECC will not boot or may operate incorrectly with non-ECC modules. Additionally, mixing ECC and non-ECC is not supported. The technician must use ECC RAM specifically designed for the server.

396
MCQeasy

A technician is setting up a new tablet for a field worker who needs to capture signatures from customers. The tablet has a standard USB-C port. Which accessory is most appropriate for this task?

A.A Bluetooth keyboard for typing notes.
B.A capacitive stylus with a fine tip.
C.A USB-C to HDMI adapter for external display.
D.A screen protector to prevent scratches.
AnswerB

A capacitive stylus with a fine tip is the ideal tool for signature capture on a tablet. Capacitive screens detect the electrical properties of a finger or a passive stylus, and a fine tip allows for significantly greater precision and control compared to a finger. This enables the technician to accurately reproduce the nuances and details of a handwritten signature, making it suitable for tasks requiring precise digital ink.

Why this answer

A capacitive stylus with a fine tip (Option B) is the most appropriate accessory because it allows the field worker to accurately capture signatures on the tablet's touchscreen. Capacitive styluses work by mimicking the electrical properties of a human finger, and a fine tip provides the precision needed for signature capture without relying on a digitizer or active pen protocol.

Exam trap

The CompTIA A+ exam often tests the distinction between passive capacitive styluses (which work on any capacitive touchscreen) and active styluses (which require a digitizer), leading candidates to incorrectly assume a fine-tip stylus is only for resistive screens or that a Bluetooth keyboard could be used for signature input.

How to eliminate wrong answers

Option A is wrong because a Bluetooth keyboard is designed for text input, not for capturing handwritten signatures, and it does not interact with the touchscreen at all. Option C is wrong because a USB-C to HDMI adapter is used to output video to an external display, which is irrelevant to signature capture on the tablet itself. Option D is wrong because a screen protector only protects the screen from scratches and does not enable or improve the ability to capture signatures.

397
MCQhard

A technician is troubleshooting a server that uses a hardware RAID controller with a 1 GB cache. The server experiences periodic write performance drops, and the event log shows 'Cache battery low' warnings. What is the most likely impact of this condition?

A.The controller will switch to read-only mode.
B.The controller will disable write caching to protect data integrity.
C.The controller will increase the stripe size to compensate.
D.The controller will automatically rebuild the array.
AnswerB

This is the correct and most common protective action taken by a RAID controller when its battery-backed write cache (BBWC) or non-volatile cache (NVRAM) is failing or depleted. Write caching temporarily stores data in volatile memory before committing it to disk, significantly improving write performance. However, without a functional battery to sustain this cache during a power loss, any data residing only in the cache would be lost. Disabling write caching ensures all write operations are immediately committed to the physical drives, guaranteeing data integrity at the expense of write speed.

Why this answer

RAID controllers use cache batteries to protect data in write cache during power loss. When the battery is low, the controller may disable write caching to prevent data loss, causing write performance to drop. This tests knowledge of RAID controller cache behavior.

398
MCQeasy

A technician is building a new workstation for a video editor who needs to run memory-intensive applications. The motherboard supports DDR4 RAM and has four DIMM slots. The editor wants 32 GB of RAM. Which configuration should the technician choose for optimal performance?

A.One 32 GB stick of RAM.
B.Two 16 GB sticks of RAM.
C.Four 8 GB sticks of RAM.
D.One 16 GB stick and two 8 GB sticks.
AnswerB

Utilizing two matched 16 GB RAM sticks allows the system to operate in dual-channel memory mode. This configuration effectively doubles the memory bandwidth by accessing two memory modules simultaneously, which is crucial for high-performance applications like video editing. The increased data throughput ensures smoother processing of large video files, faster rendering times, and overall superior responsiveness for the workstation's demanding tasks.

Why this answer

Using dual-channel memory (two matched sticks) provides a performance boost over a single stick because it allows the memory controller to access both modules simultaneously. For 32 GB, two 16 GB sticks are the best balance of performance and capacity.

399
MCQeasy

A user complains that when they scan a double-sided document using the automatic document feeder (ADF) on their multifunction printer, the back sides of the pages are blank. The printer supports duplex scanning. What is the most likely cause?

A.The ADF rollers are worn out
B.The scan resolution is set too low
C.The scan mode is set to simplex instead of duplex
D.The document is too thick for the ADF
AnswerC

When a scanner is configured for simplex mode, it is specifically instructed by the software or driver to only capture and process images from one side of the document, typically the front-facing side. This setting intentionally disables or ignores the imaging capabilities for the reverse side, even if the scanner hardware is physically capable of duplex scanning. Consequently, any content on the back of a double-sided document will be omitted from the digital output, appearing as a blank page.

Why this answer

This scenario tests knowledge of duplex scanning settings on a multifunction device. The ADF is feeding pages correctly, but the printer is set to simplex scanning, which only scans one side. Changing the scan mode to duplex will resolve the issue.

400
MCQhard

A user reports that their PC emits a continuous series of short beeps and will not display anything on the screen. The system was working fine after a recent RAM upgrade. What is the most likely cause of this issue?

A.The new RAM is incompatible or faulty
B.The CPU is overheating
C.The graphics card is not seated properly
D.The motherboard is shorting against the case
AnswerA

Continuous short beeps during the Power-On Self-Test (POST) are a classic indicator of a memory subsystem issue. Given that the problem began immediately after a RAM upgrade, it strongly suggests that the newly installed memory module is either incompatible with the motherboard, incorrectly seated, or inherently faulty. The BIOS is unable to properly initialize or detect the RAM, triggering this specific error code.

Why this answer

Continuous short beeps typically indicate a power supply failure or a motherboard power issue. However, given the recent RAM upgrade, it is more likely that the new RAM is incompatible or not seated correctly. The technician should first reseat the RAM and try the original modules to isolate the problem.

401
MCQeasy

A field technician frequently uses a ruggedized tablet outdoors for data collection. They complain that the screen is hard to read in direct sunlight. Which accessory would best improve screen visibility without adding significant bulk?

A.A privacy filter
B.An anti-glare screen protector
C.A portable external monitor
D.An external battery pack
AnswerB

An anti-glare screen protector is specifically engineered with a matte finish or microscopic texture that diffuses ambient light reflecting off the screen's surface. This diffusion scatters incoming light, preventing the formation of concentrated, mirror-like reflections that cause glare and obscure the display. By effectively minimizing direct reflections, the screen's content becomes substantially more discernible and readable in bright outdoor environments, directly addressing the technician's need for improved visibility.

Why this answer

An anti-glare screen protector uses a matte finish with microscopic ridges that diffuse reflected light, reducing glare and improving contrast in bright environments. This directly addresses the technician's issue of poor readability in direct sunlight without adding significant bulk to the ruggedized tablet.

Exam trap

CompTIA A+ often tests the distinction between privacy filters and anti-glare protectors, as candidates may confuse their functions since both are screen overlays, but privacy filters reduce viewing angles while anti-glare filters reduce reflections.

How to eliminate wrong answers

Option A is wrong because a privacy filter narrows the viewing angle to prevent shoulder surfing but does not reduce glare; it often makes the screen dimmer and harder to read in sunlight. Option C is wrong because a portable external monitor adds significant bulk and weight, defeating the requirement of not adding significant bulk, and is impractical for field data collection. Option D is wrong because an external battery pack extends runtime but does not affect screen visibility or glare in direct sunlight.

402
MCQmedium

A technician is installing a new network printer in a corporate environment. The printer supports both USB and Ethernet connectivity. The office requires that all users on the same subnet be able to print without needing a dedicated print server. What configuration method should the technician use?

A.Connect the printer via USB to a user's computer and share it from that computer.
B.Configure the printer with a static IP address and connect it to the network switch via Ethernet.
C.Use a crossover cable to connect the printer directly to a user's computer.
D.Set up a Bluetooth connection for the printer.
AnswerB

Configuring the printer with a static IP address and connecting it directly to the network switch via Ethernet is the most robust and efficient solution for a shared network printer. This method allows the printer to operate as an independent network device, accessible by all users on the subnet without relying on a host computer. A static IP ensures consistent network availability and simplifies printer discovery and management for all connected clients.

Why this answer

To allow all users on a subnet to print without a dedicated server, the printer should be configured with a static IP address and connected via Ethernet. This makes it a network printer accessible by IP. USB connection would only allow local printing from one computer.

403
MCQeasy

A technician is setting up a new file server and wants to ensure that clients can automatically obtain the server's IP address via a friendly name without manual configuration. Which network service should be configured on the server?

A.DHCP
B.DNS
C.RADIUS
D.NTP
AnswerB

DNS (Domain Name System) is the fundamental service for translating human-readable hostnames, such as "fileserver3," into numerical IP addresses that computers use to identify and locate each other on a network. By configuring DNS records for the new file server, users can access it by its friendly name rather than needing to know or remember its specific IP address. This name resolution capability is crucial for user-friendly and efficient network resource access.

Why this answer

DNS (Domain Name System) resolves friendly hostnames (e.g., fileserver.company.local) to IP addresses, allowing clients to automatically discover the server without manual IP entry. DHCP assigns IP addresses dynamically, but does not provide name resolution; DNS is the correct service for mapping names to IPs.

Exam trap

This question tests the distinction between DHCP (which provides IP configuration) and DNS (which provides name resolution). Candidates often confuse 'automatic IP assignment' with 'automatic name resolution'.

How to eliminate wrong answers

Option A is wrong because DHCP (Dynamic Host Configuration Protocol) automatically assigns IP addresses and other network parameters to clients, but it does not resolve friendly names to IP addresses; name resolution is the function of DNS. Option C is wrong because RADIUS (Remote Authentication Dial-In User Service) is an AAA protocol used for authentication, authorization, and accounting, not for name-to-IP resolution. Option D is wrong because NTP (Network Time Protocol) synchronizes system clocks over a network, and has no role in hostname resolution.

404
MCQmedium

A technician is setting up a small network for a home office. The router's WAN port receives a public IP of 203.0.113.5 from the ISP. The technician configures the LAN with a private IP range. Which of the following is a valid private IP address for the technician to assign to a workstation?

A.172.32.1.10
B.192.168.1.10
C.203.0.113.10
D.169.254.1.10
AnswerB

Correct. 192.168.1.10 is within the private 192.168.0.0/16 range and is commonly used for LANs.

Why this answer

(192.168.1.10) is correct because it falls within the private IPv4 address range defined by RFC 1918 for Class C networks (192.168.0.0/16). Private IP addresses are reserved for internal LAN use and are not routable on the public internet, making them appropriate for a workstation behind a router performing NAT.

Exam trap

A common trap in this question is that 172.32.1.10 appears to be a private address but actually falls outside the 172.16.0.0/12 range, leading candidates to incorrectly select it.

How to eliminate wrong answers

Option A is wrong because 172.32.1.10 is not within the RFC 1918 private range for Class B addresses (172.16.0.0/12); the second octet must be between 16 and 31, but 32 falls outside that range, making it a public address. Option C is wrong because 203.0.113.10 is a public IP address (often used in documentation as per RFC 5737) and would be assigned to the WAN interface, not a private LAN workstation. Option D is wrong because 169.254.1.10 is an Automatic Private IP Addressing (APIPA) address (169.254.0.0/16) used only when a DHCP server is unavailable, not a manually assigned private address for a configured network.

405
MCQeasy

A customer reports that their laptop can connect to the internet at home but not at a coffee shop. The coffee shop uses a /24 subnet with a gateway of 192.168.1.1. The laptop's IP is 192.168.2.10. What is the most likely cause?

A.The DNS server address is incorrect.
B.The laptop's IP address is on a different subnet than the coffee shop's network.
C.The wireless card is faulty.
D.The subnet mask is set to 255.0.0.0.
AnswerB

If the laptop's IP address (e.g., 192.168.2.10) belongs to a different subnet than the coffee shop's network (e.g., 192.168.1.0/24), it cannot directly communicate with the coffee shop's gateway. Devices on different IP subnets require a router to forward traffic between them. The laptop, believing the gateway is on its *local* subnet, will attempt to send ARP requests for it, which will fail because the gateway is not physically present on the 192.168.2.0 network segment.

Why this answer

The coffee shop's network uses a /24 subnet (255.255.255.0), which means all devices must have an IP address in the 192.168.1.0/24 range to communicate with the gateway at 192.168.1.1. The laptop's IP address of 192.168.2.10 falls in a different subnet (192.168.2.0/24), so the laptop cannot send frames to the gateway or receive a DHCP lease, preventing internet access despite a successful Wi-Fi association.

Exam trap

The 220-1201 exam often tests the concept that a device can associate with a Wi-Fi network (Layer 2) but still fail to communicate at Layer 3 if its IP address is not in the same subnet as the gateway, leading candidates to incorrectly suspect DNS or hardware issues.

How to eliminate wrong answers

Option A is wrong because DNS server address issues would only affect name resolution, not the ability to reach the gateway or obtain an IP; the laptop can still connect to the internet via IP addresses if DNS is misconfigured. Option C is wrong because a faulty wireless card would prevent connection at home as well, not selectively at the coffee shop. Option D is wrong because a subnet mask of 255.0.0.0 would actually expand the subnet to include both 192.168.1.0 and 192.168.2.0, making the laptop's IP valid on the coffee shop's network; the problem is the mask is likely /24, not /8.

406
MCQmedium

A user reports that when they send a print job to the MFP, the job appears in the print queue but never prints. Other users can print without issues. The MFP is connected via Ethernet. What is the most likely cause?

A.The MFP is out of paper.
B.The network cable is unplugged from the MFP.
C.The user's print spooler service is hung or corrupted.
D.The MFP's toner cartridge is empty.
AnswerC

The print spooler service operates locally on a user's workstation, managing print jobs before they are sent to the printer. If this service becomes hung or corrupted, it can prevent that specific user's print jobs from being processed and forwarded, causing them to queue indefinitely on their local machine. Other users' print jobs remain unaffected because their individual print spooler services are functioning correctly, allowing them to print without issue to the shared MFP.

Why this answer

A print job stuck in the queue but not printing for one user often indicates a driver or spooler issue specific to that user's workstation. Corrupted print spooler files or incorrect driver settings can cause this, while the MFP itself and network are fine.

407
MCQhard

A server in a data center has redundant power supplies (1+1 configuration). One PSU's status LED is amber, and the other is green. The server continues to run normally. What action should be taken?

A.Replace the PSU with the amber LED immediately
B.Do nothing because the server is still running
C.Swap the two PSUs to see if the amber LED follows
D.Reset the PSU by unplugging and replugging it
AnswerA

A server with redundant power supplies (PSUs) is designed to operate even if one PSU fails. An amber LED typically indicates a fault or failure in that specific power supply unit, meaning the server is now running in a degraded state without its intended redundancy. Immediate replacement is crucial to restore the server's power redundancy, ensuring that a subsequent failure of the remaining operational PSU does not lead to unexpected system downtime or data corruption. This proactive maintenance maintains high availability and system resilience.

Why this answer

An amber LED on a redundant PSU indicates a fault or warning, but the server remains operational on the other PSU. The faulty unit should be replaced as soon as possible to restore redundancy. Ignoring it risks downtime if the second PSU fails.

408
MCQmedium

A technician is configuring a new router for a client who has a fiber-optic internet connection. Which type of interface is most likely used to connect the router to the ISP's ONT (Optical Network Terminal)?

A.Coaxial (F-type)
B.RJ11 (phone jack)
C.Ethernet (RJ45)
D.Fiber patch cable (LC connector)
AnswerC

For fiber internet installations, the Optical Network Terminal (ONT) converts the incoming optical signal from the fiber optic line into an electrical signal. This electrical signal is then outputted via a standard Ethernet port, typically an RJ45 connector. The router's WAN (Wide Area Network) port is designed to accept this Ethernet connection, establishing the internet link from the ONT to the router for distribution within the local network. This is the standard interface for connecting a consumer router to a fiber-based internet service.

Why this answer

The correct interface is Ethernet (RJ45) because the ONT typically converts the fiber-optic signal from the ISP into a standard electrical Ethernet signal, which is then delivered to the customer's router via a copper Ethernet cable. Most residential and small business fiber installations use an RJ45 port on the ONT to connect to the router's WAN interface, supporting speeds up to 1 Gbps or higher using 1000BASE-T.

Exam trap

The trap here is that candidates see 'fiber-optic internet connection' and immediately assume the router must use a fiber patch cable (LC connector), forgetting that the ONT already converts the signal to Ethernet, so the router connects via a standard RJ45 Ethernet cable.

How to eliminate wrong answers

Option A is wrong because coaxial (F-type) connectors are used for cable internet (DOCSIS) connections, not for fiber-to-the-premises (FTTP) setups where an ONT is present. Option B is wrong because RJ11 (phone jack) is used for DSL or POTS connections, which carry analog or digital voice signals and cannot handle the high-speed data from a fiber ONT. Option D is wrong because a fiber patch cable (LC connector) would be used to connect the ONT directly to the ISP's optical line terminal (OLT) or to a fiber NIC in a server, not to a standard consumer router; the router's WAN port is almost always an RJ45 Ethernet port, not a fiber port.

409
MCQeasy

A customer brings in a tablet that will not turn on. The technician presses the power button and sees no response. The tablet was working earlier in the day. What is the first step the technician should take to troubleshoot this issue?

A.Replace the battery immediately
B.Perform a hard reset by holding the power and volume buttons
C.Connect the tablet to a charger and wait a few minutes
D.Open the tablet and inspect the motherboard for damage
AnswerC

Connecting the tablet to a charger and allowing a few minutes for it to charge is the most logical and primary troubleshooting step for a device that will not power on. A deeply discharged battery may require a brief period of charging before it accumulates enough voltage to power the device's internal components and display any charging indicators or boot up. This simple action effectively rules out the most common cause of a "dead" device before escalating to more complex diagnostics.

Why this answer

The most logical first step is to ensure the device has power; a drained battery is a common cause of a device not turning on. Checking the charge level and attempting to charge it is a simple, non-invasive test that can quickly identify the problem.

410
MCQhard

A technician is configuring a RAID array in a server that requires both high performance and fault tolerance. The server has four identical 2TB SATA HDDs. The RAID controller supports RAID 0, 1, 5, and 10. Which RAID level should the technician choose to meet both requirements?

A.RAID 0
B.RAID 1
C.RAID 5
D.RAID 10
AnswerD

RAID 10 combines striping and mirroring, offering both high performance and fault tolerance. With four drives, it creates two mirrored pairs striped together, allowing up to two drive failures (one per mirror) without data loss.

Why this answer

This question tests understanding of RAID levels and their trade-offs. RAID 10 (striping + mirroring) provides both performance (striping) and fault tolerance (mirroring), but requires at least 4 drives. RAID 5 offers fault tolerance with parity but has slower write performance.

RAID 0 has no fault tolerance, and RAID 1 only provides fault tolerance with no performance gain.

411
MCQhard

A company uses a public cloud IaaS provider. The security team discovers that a virtual machine's data disk was accidentally deleted by an administrator. They need to recover the data from a snapshot taken 24 hours ago. The snapshot is stored in the same cloud region. What is the most efficient recovery method?

A.Restore the entire VM from the snapshot
B.Create a new data disk from the snapshot and attach it to the VM
C.Download the snapshot to an on-premises server and then upload it
D.Use the snapshot to create a new VM and then copy files via network
AnswerB

In a public cloud IaaS environment, a snapshot of a data disk can be directly used to provision a new, independent managed disk. This newly created disk can then be attached to the existing, running virtual machine, effectively replacing the lost data disk without requiring a full VM restart. This method ensures minimal service interruption and efficiently restores only the necessary component.

Why this answer

Most cloud IaaS providers allow creating a new volume from a snapshot, which can then be attached to the existing VM. This is faster than restoring the entire VM from a full image. The technician should create a new disk from the snapshot and attach it, then copy the data to the original disk if needed.

412
MCQmedium

A user reports that their desktop computer's display is very dim, even at maximum brightness settings. The monitor is an older LCD model with a CCFL backlight. What component is most likely failing?

A.The LCD panel itself
B.The inverter board
C.The video cable
D.The power supply unit
AnswerB

The inverter board is a critical component in older LCD monitors, responsible for converting the low-voltage DC power from the power supply into the high-voltage AC required to illuminate the Cold Cathode Fluorescent Lamp (CCFL) backlight. If the inverter fails or degrades, it cannot supply sufficient voltage to the CCFL, resulting in a significantly dimmed display or a completely black screen. This uniform dimness is a hallmark symptom of an inverter malfunction.

Why this answer

The inverter board is responsible for converting DC power from the power supply into the high-voltage AC required to drive the CCFL (cold cathode fluorescent lamp) backlight in older LCD monitors. When the inverter fails, the backlight either dims significantly or fails entirely, even though the LCD panel itself may still be receiving a valid video signal and the brightness controls appear to function. This matches the symptom of a very dim display at maximum brightness settings.

Exam trap

CompTIA A+ often tests the misconception that a dim display is always caused by a failing LCD panel or a bad video cable, when in fact the backlight subsystem (inverter or CCFL) is the most likely culprit in older monitors with CCFL technology.

How to eliminate wrong answers

Option A is wrong because a failing LCD panel typically produces symptoms such as dead pixels, color distortion, or complete loss of image, not a uniform dimness that is adjustable via brightness controls. Option C is wrong because a failing video cable usually causes flickering, no signal, or artifacts, not a consistent dimness that persists across brightness adjustments. Option D is wrong because a failing power supply unit would likely cause the entire monitor to not power on, or exhibit intermittent shutdowns, rather than a dim backlight while the display remains operational.

413
MCQmedium

A user reports that their iPhone cannot send or receive MMS messages, but SMS works fine. They have enabled cellular data. What is the most likely missing configuration?

A.The phone's iMessage is disabled.
B.The MMS APN settings are incorrect or missing.
C.The phone is in Airplane Mode.
D.The recipient's phone does not support MMS.
AnswerB

Access Point Name (APN) settings are crucial configurations that define how a mobile device connects to the carrier's network for data services, including multimedia messaging. Unlike standard internet data or SMS, MMS often requires a separate, specific APN configuration, including details like the MMSC (Multimedia Messaging Service Center) address, MMS proxy, and port number. If these particular MMS APN settings are incorrect, incomplete, or missing, the device will be unable to properly route and deliver multimedia messages, even if regular SMS and cellular data are functional.

Why this answer

B is correct because MMS requires a properly configured APN (Access Point Name) to establish the data connection for sending and receiving multimedia content. Since SMS works (which uses the control channel, not data), but MMS fails despite cellular data being enabled, the most likely issue is that the MMS APN settings are incorrect or missing. Without the correct APN, the device cannot route MMS traffic through the carrier's multimedia messaging center.

Exam trap

The 220-1201 exam often tests the misconception that MMS relies on iMessage or that enabling cellular data alone is sufficient, when in fact MMS requires a specific APN configuration separate from general data APN settings.

How to eliminate wrong answers

Option A is wrong because iMessage is Apple's proprietary messaging service that uses data or Wi-Fi; disabling it does not affect MMS, which is a carrier-based service using the MMSC (Multimedia Messaging Service Center). Option C is wrong because Airplane Mode disables all wireless radios, including cellular data and SMS, so SMS would not work if the phone were in Airplane Mode. Option D is wrong because MMS delivery depends on the sender's device and carrier configuration, not the recipient's phone support; if the recipient's phone lacks MMS support, the message would fail to deliver but the sender's iPhone would still attempt to send it.

414
MCQmedium

A user reports that their PC randomly shuts down after about 30 minutes of use. You suspect a thermal issue. Which motherboard component is most directly responsible for monitoring CPU temperature and initiating a shutdown if it exceeds safe limits?

A.BIOS/UEFI firmware
B.Chipset (PCH)
C.Super I/O chip
D.Voltage regulator module (VRM)
AnswerC

The Super I/O (SIO) chip is a specialized integrated circuit that handles legacy I/O functions and critical system monitoring, including direct interfaces to various environmental sensors. It actively monitors CPU temperature sensors in real-time and compares these readings against the thermal thresholds configured in the BIOS/UEFI. Upon detecting an over-temperature condition, the Super I/O chip is specifically designed to assert a hardware reset or initiate a system shutdown signal to protect the CPU from irreversible damage.

Why this answer

The Super I/O chip is responsible for monitoring hardware sensors, including CPU temperature, and can trigger a hardware-level shutdown if thresholds are exceeded. The BIOS/UEFI configures these thresholds, but the actual monitoring is done by the Super I/O. The chipset and voltage regulator module do not perform thermal monitoring.

415
MCQhard

A technician is troubleshooting an issue where a user's computer can access the internet but cannot connect to a network printer by its IP address. The printer is on the same subnet and is powered on. Pinging the printer's IP from the computer fails. Which network service is most likely causing the problem?

A.DNS
B.DHCP
C.ARP
D.NAT
AnswerC

ARP (Address Resolution Protocol) is a critical protocol used to map an IP address to its corresponding MAC (Media Access Control) address within the same local network segment. When a computer needs to send data to a device on its local network, it first uses ARP to discover the destination's MAC address. If ARP fails to resolve the printer's IP address to its MAC address, the computer cannot construct the necessary Ethernet frame headers, preventing any Layer 2 communication, including a ping.

Why this answer

Since the computer can access the internet but cannot ping the printer on the same subnet, the issue is at Layer 2 (Data Link) rather than Layer 3 (Network). ARP (Address Resolution Protocol) is responsible for resolving a known IP address to a MAC address on the local subnet. If the ARP cache is corrupted, missing, or the printer fails to respond to ARP requests, the computer cannot build the correct Ethernet frame to reach the printer, causing the ping to fail even though the printer is powered on and on the same subnet.

Exam trap

CompTIA A+ often tests the misconception that a failed ping to a local IP must be a Layer 3 routing or DNS issue, when in fact the problem is often a missing or incorrect ARP entry at Layer 2.

How to eliminate wrong answers

Option A is wrong because DNS resolves hostnames to IP addresses, but the technician is already using the printer's IP address directly, so DNS is not involved in this failure. Option B is wrong because DHCP assigns IP addresses dynamically; the computer already has internet access (indicating a valid IP configuration), and the printer is on the same subnet, so DHCP is not the cause of the failed ping. Option D is wrong because NAT translates private IP addresses to public ones for internet traffic, but the printer and computer are on the same local subnet, so no NAT is required for local communication.

416
MCQeasy

A user complains that their internet is slow in the evenings, especially when streaming video. They have a cable modem and a wireless router. What is the most likely cause?

A.The wireless router is outdated.
B.The ISP is throttling streaming traffic.
C.Network congestion due to many users sharing the same cable node.
D.Interference from other wireless networks.
AnswerC

Cable internet is a shared medium, and evening congestion is a well-known issue.

Why this answer

C is correct because cable internet uses a shared coaxial cable node, and during peak evening hours, many subscribers in the same neighborhood are actively using the connection. This shared bandwidth leads to contention and reduced throughput, especially for high-bandwidth activities like streaming video, which is a classic symptom of node congestion rather than a local issue.

Exam trap

The 220-1201 exam often tests the distinction between local wireless issues (interference, outdated hardware) and ISP-level shared medium congestion, and the trap here is that candidates blame the wireless router or interference because the symptom is 'slow internet,' but the evening-specific timing is the key clue that points to cable node oversubscription.

How to eliminate wrong answers

Option A is wrong because an outdated wireless router would cause slow speeds at all times, not specifically in the evenings, and would affect all devices equally regardless of activity type. Option B is wrong because while ISPs can throttle streaming traffic, this is typically applied consistently across all times of day and is less common than simple congestion; the evening-specific pattern strongly points to shared medium contention rather than a policy-based throttle. Option D is wrong because interference from other wireless networks would cause intermittent connectivity or reduced throughput regardless of time of day, but the evening-specific pattern and the focus on streaming video point to upstream bandwidth saturation at the cable node, not local RF interference.

417
MCQeasy

A customer complains that their laptop battery no longer holds a charge and the laptop only works when plugged in. The technician confirms the battery is removable. What is the most appropriate first step in servicing this issue?

A.Update the battery driver in Device Manager.
B.Run a battery calibration utility from the manufacturer.
C.Power off the laptop and remove the battery.
D.Replace the AC adapter to see if the charging circuit is faulty.
AnswerC

Before performing any internal hardware service, such as replacing a laptop battery, it is crucial to power off the device completely and disconnect all external power sources. Removing the battery while the system is powered down eliminates the risk of electrical shock, prevents potential short circuits, and protects sensitive internal components from damage during the physical removal and installation process. This is the fundamental safety protocol for hardware replacement.

Why this answer

The correct first step is to power off the laptop and remove the battery. This ensures safety and prevents electrical shorts or damage during replacement. After removal, the technician can install a new battery.

418
MCQeasy

A customer complains that their desktop computer loses network connectivity every time a large file is transferred. The issue does not occur during normal web browsing. What hardware component is most likely at fault?

A.The CPU is overheating.
B.The power supply unit is underpowered.
C.The network interface card (NIC) is failing.
D.The Ethernet cable is too long.
AnswerC

A failing Network Interface Card (NIC) often exhibits intermittent issues, particularly when subjected to high data throughput, such as during large file transfers. Under increased load, a defective NIC may struggle to process packets efficiently, leading to dropped connections, significant packet loss, or complete network disconnections as its internal components (e.g., controller chip, transceivers) overheat or fail to keep up. This specific symptom points directly to a component responsible for network communication under stress.

Why this answer

This is a classic symptom of a failing or overheating network interface card (NIC). High data throughput generates heat, and a marginal NIC may fail under sustained load, while low-bandwidth tasks work fine.

419
MCQeasy

A technician is setting up a wireless network for a home office that requires the fastest possible speeds for streaming 4K video. The router supports 802.11ac and has three antennas. Which configuration will yield the highest throughput?

A.Set the router to 802.11n mode only.
B.Enable 40 MHz channel width on the 2.4 GHz band.
C.Use the 5 GHz band with MIMO enabled and a channel width of 80 MHz.
D.Disable SSID broadcast to reduce overhead.
AnswerC

5 GHz with 80 MHz channels and MIMO leverages 802.11ac's capabilities, providing the highest throughput for streaming.

Why this answer

802.11ac operates exclusively on the 5 GHz band, and combining MIMO (multiple-input multiple-output) with an 80 MHz channel width maximizes throughput by increasing spatial streams and spectral bandwidth. This configuration supports the high data rates required for 4K video streaming, typically exceeding 1 Gbps aggregate throughput.

Exam trap

A common misconception is that 802.11ac can use the 2.4 GHz band or that wider channels on 2.4 GHz are beneficial, when in fact 802.11ac is 5 GHz only and 40 MHz on 2.4 GHz is prone to interference and rarely yields throughput gains.

How to eliminate wrong answers

Option A is wrong because 802.11n mode caps throughput at 600 Mbps (with 40 MHz channels and 4 spatial streams), which is lower than 802.11ac's potential and lacks the wider channel widths and higher modulation (256-QAM) needed for optimal 4K streaming. Option B is wrong because enabling 40 MHz channel width on the 2.4 GHz band is not supported by 802.11ac (which only uses 5 GHz) and on 2.4 GHz it often causes interference with Bluetooth and other devices, reducing actual throughput. Option D is wrong because disabling SSID broadcast does not reduce overhead or improve throughput; it only hides the network name, which can actually increase probe request overhead and does not affect data transmission speed.

420
MCQmedium

A technician is upgrading a server's power supply to support additional drives. The current PSU is a 750W unit with a single +12V rail rated at 62A. The new drives will add 5A to the +12V load. The total calculated +12V load is 58A. Is the current PSU adequate?

A.Yes, because 58A is less than 62A, so it is within specifications.
B.No, because the PSU should not be loaded above 80% of its rating.
C.No, because the total wattage of 750W is insufficient for the new drives.
D.Yes, but only if the PSU is 80 Plus Gold certified or higher.
AnswerA

The power supply unit (PSU) is rated to deliver a maximum of 62 Amperes (A) on its crucial +12V rail, which powers most high-demand components like CPUs and GPUs. With the new drives, the total current draw on this rail is 58A. Since 58A is less than the 62A maximum rating, the PSU is technically within its operational specifications and can supply the required power. While operating close to the maximum capacity might reduce long-term efficiency or lifespan, it does not prevent the PSU from functioning correctly in the short term.

Why this answer

The PSU's +12V rail is rated for 62A, and the total load after adding drives is 58A, which is within the rating. However, it is good practice to leave headroom (typically 10-20%) to avoid running the PSU at maximum capacity, which can reduce efficiency and lifespan. In this case, the PSU is technically adequate but marginal.

421
MCQeasy

A user reports that their laptop can connect to the corporate Wi-Fi but cannot access the internet. Other devices on the same network work fine. What is the most likely cause of this issue?

A.The wireless router has failed.
B.The laptop's DNS server settings are incorrect.
C.The network cable is unplugged.
D.The ISP is down.
AnswerB

Incorrect DNS server settings prevent the laptop from resolving human-readable domain names, like 'google.com', into their corresponding IP addresses. While the laptop can still obtain an IP address and communicate with other devices on the local network using their IP addresses, it cannot navigate the internet by name. This specific issue allows local network connectivity but blocks external web browsing, perfectly matching the described symptoms.

Why this answer

This scenario points to a client-specific configuration problem. Since other devices work, the issue is isolated to the user's laptop, and a misconfigured DNS setting is a common cause for internet access failure while local network connectivity remains intact.

422
MCQmedium

A user reports that their email client can receive messages but cannot send any. The email server settings are correct, and the user can connect to the internet. The firewall is blocking outbound traffic on certain ports. Which protocol and port combination is likely blocked?

A.POP3 on port 110
B.IMAP on port 143
C.SMTP on port 25
D.HTTPS on port 443
AnswerC

SMTP (Simple Mail Transfer Protocol) on port 25 is the standard protocol specifically designed for sending email messages between mail servers and from an email client to an outgoing mail server. If port 25 is blocked, the email client would be unable to establish a connection with the server to transmit outgoing messages. This would directly prevent the user from sending emails, while their ability to receive mail via POP3 or IMAP would remain unaffected.

Why this answer

SMTP (Simple Mail Transfer Protocol) is used for sending outgoing email messages. By default, SMTP uses port 25. If the firewall blocks outbound traffic on port 25, the email client can still receive messages (using POP3 or IMAP) but will be unable to send any, perfectly matching the user's symptoms.

Exam trap

The 220-1201 exam often tests the distinction between incoming (POP3/IMAP) and outgoing (SMTP) mail protocols, trapping candidates who confuse receiving ports with sending ports.

How to eliminate wrong answers

Option A is wrong because POP3 (Post Office Protocol 3) on port 110 is used for receiving email from a mail server, not for sending; blocking it would prevent receiving, not sending. Option B is wrong because IMAP (Internet Message Access Protocol) on port 143 is also used for receiving and managing email on the server, not for sending; blocking it would affect inbox access, not outbound mail. Option D is wrong because HTTPS on port 443 is used for secure web traffic, not for email sending; blocking it would affect web browsing, not email transmission.

423
MCQeasy

A technician is tasked with enabling hardware-level virtualization on a desktop to run a virtual machine. Which UEFI setting must be enabled?

A.Enable Secure Boot
B.Enable Execute Disable Bit (XD/NX)
C.Enable Intel VT-x or AMD-V
D.Set SATA mode to AHCI
AnswerC

Intel Virtualization Technology (VT-x) and AMD Virtualization (AMD-V) are essential CPU extensions that provide hardware-assisted virtualization capabilities. These technologies allow a hypervisor to run virtual machines more efficiently by directly accessing hardware resources, significantly reducing the overhead typically associated with software-only virtualization. Enabling these features in the BIOS/UEFI firmware is a prerequisite for deploying and optimizing virtualized environments, ensuring guest operating systems perform near native speeds and enhancing overall virtualization performance.

Why this answer

Intel VT-x or AMD-V is the hardware virtualization feature that must be enabled in the CPU configuration section of UEFI. Without it, virtual machines will run slowly or fail to start. This tests knowledge of common UEFI settings for virtualization.

424
MCQhard

A technician is deploying a point-to-point wireless bridge between two buildings 500 meters apart. The link must support at least 1 Gbps throughput. Both buildings have clear line of sight. Which antenna type and frequency combination is most appropriate?

A.Omnidirectional antennas on 2.4 GHz
B.Yagi antennas on 2.4 GHz
C.Parabolic dish antennas on 5 GHz
D.Patch antennas on 5 GHz
AnswerC

Parabolic dish antennas are the optimal choice for long-distance, high-throughput point-to-point wireless bridges due to their extremely high gain and narrow beamwidth. This focused energy transmission ensures maximum signal strength and minimal interference over a 500-meter distance, crucial for maintaining a stable link. Coupled with the 5 GHz frequency band, which offers significantly more available bandwidth and less congestion than 2.4 GHz, achieving a 1 Gbps data rate becomes highly feasible.

Why this answer

A point-to-point bridge over 500 meters requiring 1 Gbps throughput needs high-gain, directional antennas and a frequency band with sufficient bandwidth. Parabolic dish antennas on 5 GHz provide the necessary high gain (typically 20-30 dBi) and utilize the wider 5 GHz channel bandwidth (up to 80 or 160 MHz) to achieve gigabit speeds, while maintaining a narrow beamwidth to focus the signal between the two buildings.

Exam trap

A common trap in CompTIA A+ is assuming that 2.4 GHz is always better for long distances due to lower attenuation, but for high-throughput point-to-point links, 5 GHz with high-gain directional antennas (like parabolic dishes) is required to achieve gigabit speeds. 2.4 GHz lacks sufficient channel bandwidth and is more prone to interference.

How to eliminate wrong answers

Option A is wrong because omnidirectional antennas radiate in all directions, causing significant signal loss over distance and interference, and 2.4 GHz has limited channel bandwidth (20/40 MHz) that cannot support 1 Gbps throughput. Option B is wrong because Yagi antennas, while directional, typically have lower gain (10-15 dBi) than parabolic dishes and operate on 2.4 GHz, which lacks the channel width (max 40 MHz) to achieve 1 Gbps. Option D is wrong because patch antennas, though directional, have moderate gain (6-15 dBi) and are designed for shorter-range indoor or outdoor links, not the 500-meter distance required for gigabit throughput.

425
MCQeasy

A user is traveling internationally and complains that their smartphone's cellular data stopped working after landing. They have an international roaming plan activated. What should the technician check first to restore data connectivity?

A.Verify that the SIM card is not locked to the home carrier.
B.Check if the device's date and time are set correctly.
C.Ensure that the device's data roaming setting is enabled.
D.Reset the device's network settings to default.
AnswerC

When traveling internationally, mobile devices connect to partner cellular networks in the visited country to maintain service. To utilize cellular data services on these foreign networks, the device's "Data Roaming" setting must be explicitly enabled. This setting is frequently disabled by default by manufacturers or users to prevent unexpected charges, making its activation the most common and direct solution for a lack of data connectivity despite having an active international roaming plan.

Why this answer

When traveling internationally, cellular data requires the device's data roaming setting to be enabled to connect to foreign networks. Even with an active international roaming plan, the smartphone will not automatically use data on a visited network unless this setting is turned on. This is a standard requirement across GSM and LTE networks, as data roaming is disabled by default to prevent unexpected charges.

Exam trap

The 220-1201 exam often tests the distinction between having a roaming plan (provisioning) and actually enabling the data roaming setting on the device (configuration), leading candidates to incorrectly assume the plan alone is sufficient.

How to eliminate wrong answers

Option A is wrong because a SIM locked to the home carrier prevents the device from registering on any foreign network at all, but the user's cellular data stopped working after landing, implying the device likely registered (or at least attempted to) and the issue is specifically with data connectivity, not network registration. Option B is wrong because incorrect date and time can cause SSL/TLS certificate validation failures for secure connections, but it does not prevent the device from establishing a basic data session on the visited network; data roaming is a prerequisite for that. Option D is wrong because resetting network settings is a more drastic troubleshooting step that should be performed after verifying simpler settings like data roaming; it is not the first check and may erase saved Wi-Fi networks and Bluetooth pairings unnecessarily.

426
MCQeasy

A technician is setting up a new file server and needs to ensure that users can access shared folders using a friendly name like \\fileserver\share instead of an IP address. Which protocol must be configured correctly on the network?

A.DNS
B.DHCP
C.SMB
D.HTTP
AnswerA

When users need to access a file server by its friendly name (e.g., \\fileserver), the Domain Name System (DNS) is crucial. It translates this human-readable hostname into the corresponding numerical IP address (e.g., 192.168.1.100) that network devices use for communication. Without DNS, users would have to remember and type the server's IP address directly, which is impractical and prone to errors in dynamic environments. This resolution is fundamental for client devices to locate and establish a connection with the server.

Why this answer

DNS (Domain Name System) resolves the friendly hostname 'fileserver' to the server's IP address, allowing users to use \\fileserver\share instead of an IP address. Without DNS, the SMB client cannot translate the name, and the connection fails. This makes DNS the correct protocol for name resolution in this scenario.

Exam trap

CompTIA A+ often tests the distinction between the protocol that provides the service (SMB) and the protocol that enables name resolution (DNS), leading candidates to mistakenly select SMB because it is directly involved in file sharing.

How to eliminate wrong answers

Option B (DHCP) is wrong because DHCP assigns IP addresses dynamically but does not resolve hostnames to IPs; it can provide DNS server addresses, but it is not the protocol that performs name resolution. Option C (SMB) is wrong because SMB is the file-sharing protocol used to access the share itself, not the protocol that resolves the server name to an IP address. Option D (HTTP) is wrong because HTTP is used for web traffic and does not handle NetBIOS or DNS name resolution for SMB file shares.

427
MCQmedium

A technician is troubleshooting a laser printer that produces pages with a repeating smudge mark every 3 inches down the page. The printer uses a toner cartridge with an integrated drum. What component is most likely causing this defect?

A.The photosensitive drum is scratched.
B.The fuser roller is damaged.
C.The toner cartridge is low on toner.
D.The transfer roller is dirty.
AnswerB

The fuser assembly is responsible for permanently bonding the toner to the paper using heat and pressure. A damaged fuser roller, such as one with a tear, scratch, or accumulated debris, will directly transfer this physical defect to the paper as it passes through. Given that many fuser rollers have a circumference of approximately 3 inches, a repeating smudge at this precise interval is a strong indicator of a defect on the fuser roller, as the damage would mark the paper with each rotation.

Why this answer

A repeating defect at a regular interval is often caused by a damaged roller, and the interval helps identify which roller. A 3-inch interval matches the circumference of the fuser roller. The drum's circumference is typically larger, so the interval would be different.

428
MCQhard

A technician is troubleshooting a display that shows a 'ghost' image of a previous screen that fades slowly. The monitor is a 4-year-old IPS panel. What is the most likely cause?

A.The monitor's response time setting is too low.
B.The video cable is causing signal interference.
C.The monitor's refresh rate is set incorrectly.
D.The LCD panel has image retention or burn-in.
AnswerD

Image retention, often referred to as "ghosting" or "temporary burn-in," occurs when the liquid crystals within an LCD panel fail to completely revert to their original state after displaying a static image for an extended duration. This phenomenon results in a faint, residual outline or "ghost" of the previous image remaining visible on the screen, which typically fades over time if the display shows dynamic content. The persistent "2" described is a classic symptom of this panel characteristic, indicating a physical issue with the display's pixels.

Why this answer

Ghosting or image retention on an IPS panel is often due to burn-in or temporary image persistence. This occurs when static images are displayed for long periods, causing the liquid crystals to not fully relax. It is a hardware defect that may be irreversible.

429
MCQeasy

A technician is configuring a new web server that must support both standard and encrypted web traffic. Which two ports should be opened in the firewall?

A.Port 22 and 21
B.Port 80 and 443
C.Port 3389 and 5900
D.Port 53 and 123
AnswerB

Port 80 handles HTTP and port 443 handles HTTPS, covering both standard and encrypted web traffic.

Why this answer

Standard web traffic uses HTTP on port 80, while encrypted web traffic uses HTTPS on port 443. Opening these two ports in the firewall allows the web server to serve both unencrypted and TLS/SSL-encrypted content to clients.

Exam trap

CompTIA often tests the distinction between ports used for web services (80/443) versus ports used for remote administration (22, 3389, 5900) or infrastructure services (53, 123), leading candidates to confuse secure web traffic with SSH or RDP.

How to eliminate wrong answers

Option A is wrong because port 22 is used for SSH (secure remote administration) and port 21 is used for FTP (file transfer), neither of which are web traffic protocols. Option C is wrong because port 3389 is used for RDP (Remote Desktop Protocol) and port 5900 is used for VNC (remote frame buffer), both for remote desktop access, not web serving. Option D is wrong because port 53 is used for DNS (domain name resolution) and port 123 is used for NTP (Network Time Protocol), neither of which serve web pages.

430
MCQmedium

A technician is setting up a new wireless network for a warehouse. The warehouse has metal shelving and concrete walls. Which wireless standard should the technician choose to maximize range and penetration through obstacles?

A.802.11ac
B.802.11ax (Wi-Fi 6)
C.802.11n
D.802.11a
AnswerB

802.11ax, or Wi-Fi 6, is a dual-band standard supporting both 2.4 GHz and 5 GHz frequencies, offering significant improvements in efficiency and capacity. However, its primary advantages are realized in dense client environments, and while its 2.4 GHz operation provides better penetration than 5 GHz, the standard itself is often overkill and not specifically optimized for maximum range and obstacle penetration as its paramount feature. For a scenario prioritizing raw range and penetration over high-density client management or peak throughput, older standards can be more effective and cost-efficient.

Why this answer

802.11ax (Wi-Fi 6) operates in both the 2.4 GHz and 5 GHz bands. For maximizing range and penetration through obstacles like metal shelving and concrete walls, the 2.4 GHz band is crucial due to its lower frequency and better diffraction characteristics. While 802.11n also uses 2.4 GHz, 802.11ax offers significant advancements such as OFDMA, improved MU-MIMO, and more efficient modulation schemes (e.g., 1024-QAM).

These technologies lead to a more robust and efficient signal, which can provide better effective range and reliability in challenging environments compared to 802.11n, even when both are operating in the 2.4 GHz band.

Exam trap

It is a common misconception that newer standards (like 802.11ac) always provide better range. While 802.11ac primarily uses the 5 GHz band which has worse penetration, 802.11ax (Wi-Fi 6) can operate in the 2.4 GHz band and offers superior performance and potentially better effective range than 802.11n due to its advanced signal processing and efficiency improvements.

How to eliminate wrong answers

Option A (802.11ac) is wrong because it operates exclusively in the 5 GHz band, which has higher attenuation and poorer penetration through concrete walls and metal shelving compared to 2.4 GHz, making it unsuitable for maximizing range in a dense obstacle environment. Option B (802.11ax, Wi-Fi 6) is wrong because while it can use both 2.4 GHz and 5 GHz (and optionally 6 GHz with Wi-Fi 6E), its primary design focus is on high-efficiency and throughput in dense deployments, not specifically on maximizing range and penetration; the 2.4 GHz mode of 802.11ax is backward-compatible with 802.11n but does not inherently offer better range than 802.11n for this use case. Option D (802.11a) is wrong because it operates only in the 5 GHz band and uses OFDM without MIMO, resulting in significantly shorter range and poorer obstacle penetration than 802.11n in the 2.4 GHz band.

431
MCQhard

A company is migrating its fleet of 100 desktops from Windows 10 to Windows 11. The IT department needs to enable TPM 2.0 and Secure Boot on each system via the UEFI. Some older systems have TPM disabled by default. Which UEFI setting must be changed to enable TPM?

A.Enable TPM in the UEFI security settings and set the boot mode to UEFI.
B.Update the UEFI firmware to the latest version from the manufacturer.
C.Disable the integrated graphics to free up resources for TPM.
D.Set the SATA controller to RAID mode.
AnswerA

Enabling TPM in the UEFI security settings is crucial because the Trusted Platform Module, whether discrete or firmware-based, must be explicitly activated to function as a hardware root of trust. Concurrently, setting the boot mode to UEFI is essential, as it supports modern security features like Secure Boot, which often relies on TPM for platform integrity verification, a prerequisite for operating systems like Windows 11.

Why this answer

TPM (Trusted Platform Module) is often disabled by default in the UEFI firmware. It must be enabled in the security settings of the UEFI. Additionally, the system must be set to UEFI mode (not Legacy) with Secure Boot enabled for Windows 11 compatibility.

432
MCQeasy

A technician is replacing a cracked screen on a smartphone. After removing the old screen, they notice a small, flat, rectangular component with a metal shield is loose near the battery connector. What should they do?

A.Discard it as it is not needed for the screen replacement.
B.Reattach it using double-sided adhesive tape.
C.Solder it back onto the motherboard.
D.Leave it loose; it will not affect screen operation.
AnswerB

Reattaching the battery connector bracket with double-sided adhesive tape is the correct and recommended procedure. This method provides the necessary mechanical stability to secure the battery connector against vibrations and accidental dislodgement without introducing thermal stress or electrical hazards. Many portable electronic devices utilize specialized, thin, and strong adhesives for component retention, making this a standard and appropriate repair technique. It ensures the connector remains firmly seated, preventing intermittent power issues.

Why this answer

The loose component is a battery connector bracket or grounding clip, which is typically secured with adhesive to prevent the battery connector from dislodging. Reattaching it with double-sided adhesive tape restores mechanical stability without soldering, as these parts are not soldered to the motherboard. This ensures reliable power delivery and prevents intermittent shutdowns or charging issues.

Exam trap

CompTIA A+ often tests the misconception that any loose metal component must be soldered back, when in fact many smartphone components are secured with adhesive to avoid heat damage to sensitive battery circuits.

How to eliminate wrong answers

Option A is wrong because discarding the component can lead to loose battery connections, causing power interruptions or device instability. Option C is wrong because these components are not soldered; they are mechanically fastened with adhesive, and soldering could damage the motherboard or short-circuit the battery connector. Option D is wrong because leaving it loose allows the component to shift, potentially shorting nearby contacts or causing the battery connector to detach during use.

433
MCQeasy

A customer reports that their desktop PC emits a series of long, continuous beeps and the screen remains blank. They recently installed a new graphics card. What is the most likely cause?

A.The graphics card is not seated properly.
B.The RAM module is loose or faulty.
C.The power supply unit is failing.
D.The monitor is not connected to the graphics card.
AnswerB

A loose or faulty RAM module is a very common cause for a system to emit diagnostic beep codes during the Power-On Self-Test (POST). Many BIOS manufacturers, including AMI and Award, use continuous long beeps or a specific short sequence (e.g., three short beeps) to signal a memory initialization failure. This indicates the system cannot properly detect or access the essential RAM required for booting, making it the most probable cause for such a symptom.

Why this answer

A series of long, continuous beeps typically indicates a memory (RAM) issue, not a graphics card problem. This is a common POST code that helps isolate hardware faults before the system can boot.

434
MCQmedium

A technician is deploying a cloud-based application that requires a specific operating system and database. The company wants to avoid managing the underlying OS and patches. Which cloud service model should be used?

A.Infrastructure as a Service (IaaS)
B.Platform as a Service (PaaS)
C.Software as a Service (SaaS)
D.Desktop as a Service (DaaS)
AnswerB

Platform as a Service (PaaS) delivers a complete, managed environment for developing, running, and managing applications without the complexity of building and maintaining the infrastructure typically associated with developing and launching an app. The cloud provider manages the operating system, database, web servers, and programming language execution environment, including all patching and updates. This allows the technician to focus entirely on the application code and data, abstracting away the underlying infrastructure management and patching responsibilities.

Why this answer

This question tests the distinction between PaaS and other service models. Platform as a Service (PaaS) provides a managed platform including OS, runtime, and database, allowing the customer to focus on deploying their application without patching the OS. IaaS gives full control but requires OS management, SaaS is a finished application, and DaaS is for virtual desktops.

435
MCQhard

A network administrator configures a router to use OSPF for dynamic routing between two branch offices. After configuration, routes from one office are not appearing in the other's routing table. Both offices can ping each other's directly connected interfaces. Which protocol issue is most likely preventing route exchange?

A.The routers are using different OSPF area IDs.
B.The routers are using different OSPF process IDs.
C.Multicast is not being forwarded between the routers.
D.The routers have mismatched subnet masks on their interfaces.
AnswerC

OSPF routers primarily use multicast addresses 224.0.0.5 (All OSPF Routers) and 224.0.0.6 (All OSPF DR/BDRs) to send Hello packets for neighbor discovery and to exchange link-state advertisements (LSAs) on broadcast multi-access networks. If multicast traffic is not being forwarded or is being blocked between the routers, they will be unable to discover each other as neighbors or exchange routing information. This directly prevents OSPF from establishing adjacencies and building its routing table.

Why this answer

OSPF uses multicast address 224.0.0.5 (AllSPFRouters) to exchange hello packets and LSAs. If multicast forwarding is disabled or blocked between the routers (e.g., by an ACL, switchport configuration, or lack of multicast routing), OSPF neighbors will not form, and routes will not be exchanged. Since both offices can ping each other's directly connected interfaces, Layer 3 unicast connectivity exists, but OSPF's multicast-based neighbor discovery is failing.

Exam trap

A common mistake is to think that OSPF process IDs must match between routers. The trap here is that candidates overlook the multicast dependency. While ping success eliminates basic Layer 3 connectivity issues like mismatched subnet masks, it does not eliminate OSPF parameter mismatches such as area IDs, which are checked after Hello packets are received.

How to eliminate wrong answers

Option A is wrong because OSPF routers can form neighbors across different area IDs only if the interface belongs to area 0 (backbone) or if a virtual link is configured; mismatched area IDs on the connecting link prevent adjacency, but the question states both offices can ping each other's directly connected interfaces, implying the link is up and OSPF hello packets are not being exchanged due to multicast failure, not area mismatch. Option B is wrong because OSPF process IDs are locally significant and do not need to match between routers; two routers can have different process IDs (e.g., 1 and 100) and still form a neighbor adjacency. Option D is wrong because mismatched subnet masks on the directly connected interfaces would prevent the ping from succeeding (since the routers would consider each other's addresses as not on the same subnet), but the question explicitly states both offices can ping each other's directly connected interfaces, ruling out a subnet mask mismatch.

436
MCQeasy

During a routine hardware upgrade, a technician installs a new CPU into a workstation. After powering on, the system emits a series of long beeps and the screen remains blank. What is the most likely cause?

A.The CPU is not compatible with the motherboard socket
B.The CPU is installed backwards
C.The RAM is not seated properly
D.The CPU fan is not connected to the motherboard
AnswerC

During the Power-On Self-Test (POST), the BIOS performs essential hardware checks, including memory initialization. If the RAM modules are not fully seated in their DIMM slots, or if they are faulty, the system's BIOS will typically generate a specific beep code to alert the user. A continuous series of long beeps, or a pattern like one long and two short beeps (depending on the BIOS manufacturer), is a very common and direct indicator of a memory subsystem error, such as improperly seated RAM.

Why this answer

POST beep codes are used to indicate hardware errors. A series of long beeps typically points to a memory issue, not a CPU problem. The technician should reseat the RAM modules to resolve this.

437
MCQmedium

A technician is configuring a new PC for a user who runs multiple virtual machines. The motherboard has an AM5 socket. Which CPU feature is most important for this workload?

A.High clock speed
B.Large L3 cache
C.High core and thread count
D.Integrated graphics
AnswerC

A high core and thread count is paramount for a PC configured as a virtualization host because it allows the hypervisor to allocate dedicated or shared processing resources to multiple virtual machines concurrently. Each virtual machine typically requires at least one virtual CPU (vCPU), which maps to a physical core or thread. Sufficient cores and threads ensure that all VMs can execute their processes simultaneously without significant performance degradation or resource contention, providing smooth operation for each virtualized environment.

Why this answer

Virtual machines benefit from many cores and threads because each VM can be assigned to a separate core. AMD AM5 CPUs offer high core counts, making them ideal for virtualization. This tests understanding of how CPU architecture affects specific tasks.

438
MCQmedium

A client brings in a desktop that will not power on. The technician verifies the power cord is connected and the PSU fan does not spin when the power button is pressed. What is the most appropriate next step?

A.Replace the motherboard
B.Test the power supply using a PSU tester
C.Reseat the CPU
D.Check the front panel power switch
AnswerB

When a computer exhibits absolutely no signs of power, the power supply unit (PSU) is the most frequent point of failure. A dedicated PSU tester provides an immediate and definitive diagnosis by measuring the voltage output on all critical rails (+3.3V, +5V, +12V, -12V, +5VSB) and verifying the Power Good signal. This tool quickly confirms whether the PSU is delivering correct and stable power within ATX specifications or if it is dead, directly identifying the root cause of the "no power" symptom.

Why this answer

When the PSU fan does not spin, the power supply may be dead. The quickest and safest test is to use a power supply tester or perform the paperclip test to see if the PSU turns on. If it does not, replacement is needed.

Always eliminate the PSU as the cause before checking other components.

439
MCQmedium

A technician is deploying 20 new tablets for a hospital's nursing staff. After configuring Wi-Fi and email, they find that the tablets will not connect to the corporate 5 GHz wireless network, only to the 2.4 GHz network. All tablets are the same model. What is the most likely cause?

A.The 5 GHz SSID is hidden and requires manual entry.
B.The tablets only support 802.11b/g/n on the 2.4 GHz band and lack 5 GHz hardware support.
C.The corporate 5 GHz network requires 802.1X authentication that is not configured on the tablets.
D.The tablets have a defective Wi-Fi antenna.
AnswerB

This is the most plausible explanation. Many budget-friendly tablets are manufactured with only 2.4 GHz Wi-Fi radios (supporting 802.11b/g/n standards) to reduce production costs and extend battery life. If the tablets physically lack the necessary 5 GHz hardware, they cannot detect or connect to any 5 GHz network, regardless of its visibility or security settings. This inherent hardware limitation would uniformly affect all 20 new tablets, preventing them from ever seeing or utilizing the corporate 5 GHz network.

Why this answer

This is a common deployment issue where the device's wireless radio supports 2.4 GHz but not 5 GHz, or the 5 GHz channel is not supported. Older or budget tablets may lack 5 GHz capability, or the corporate network may use a 5 GHz channel (e.g., DFS channels) that the tablet's radio cannot use. Checking the tablet's Wi-Fi specifications is the correct first step.

440
MCQeasy

During a printer installation, the setup wizard asks for the printer's IP address. The multifunction device is connected via Ethernet and has a static IP. Where can you find the IP address on the printer itself?

A.On the back of the printer near the Ethernet port.
B.By pressing the 'Home' button, then navigating to 'Network Settings' or 'Information'.
C.By looking at the toner cartridge label.
D.By checking the DHCP server logs on the network.
AnswerB

The most direct and common method to ascertain a printer's IP address is through its integrated control panel. By accessing the 'Home' or 'Menu' button, users can navigate through options like 'Network Settings', 'Information', or 'Status' to display current network configurations, including the assigned IPv4 or IPv6 address. This method provides immediate access to the device's active network parameters without requiring external tools or network access.

Why this answer

This question tests basic printer configuration knowledge. Most multifunction printers have a control panel menu that displays network settings, including the IP address. Alternatively, printing a configuration page from the printer's menu will show the IP.

441
MCQhard

A technician is troubleshooting a network where a single workstation cannot access any network resources. The link light on the NIC is solid, and the IP configuration shows an address of 192.168.1.100 with a subnet mask of 255.255.255.0. The workstation can ping its own IP but not the default gateway (192.168.1.1). What is the most likely cause?

A.The DNS server is unreachable.
B.The switch port is configured with the wrong VLAN.
C.The Ethernet cable is a crossover cable.
D.The workstation's subnet mask is wrong.
AnswerB

If a workstation's switch port is configured for a VLAN different from the VLAN where its default gateway resides, Layer 2 isolation occurs. VLANs segment a physical switch into distinct broadcast domains, preventing direct communication between devices in different VLANs without a Layer 3 router. Consequently, even with correct IP addressing, the workstation's Ethernet frames destined for the gateway would not be forwarded across the incorrect VLAN boundary, making the gateway unreachable.

Why this answer

The workstation has a valid IP and can ping itself, indicating the NIC and stack are working. However, it cannot reach the gateway, which suggests a Layer 2 issue—likely an incorrect or missing default gateway configuration, or a VLAN mismatch on the switch port.

442
MCQmedium

A technician is tasked with connecting a legacy projector that only has a VGA input to a modern laptop that has only HDMI and USB-C outputs. Which adapter should the technician use?

A.USB-C to VGA passive adapter
B.HDMI to VGA active adapter
C.VGA to HDMI cable
D.USB-C to HDMI adapter
AnswerB

An HDMI to VGA active adapter is the correct choice because it performs the necessary digital-to-analog signal conversion. HDMI outputs a digital video signal from the laptop, while a legacy projector with a VGA input requires an analog signal. The active adapter contains internal circuitry, specifically a Digital-to-Analog Converter (DAC), to accurately translate the digital HDMI signal into the analog format compatible with the VGA projector.

Why this answer

Since VGA is analog and HDMI is digital, an active converter is needed. A USB-C to VGA adapter can work if the laptop supports video over USB-C, but an HDMI to VGA adapter is also an option if the laptop has HDMI. The best answer is an HDMI to VGA active adapter, as it directly converts the digital signal to analog.

443
MCQeasy

A small office uses an inkjet printer that has started leaving horizontal white streaks across printed documents. The user has already run the printer's cleaning cycle twice with no improvement. What should the technician do next to resolve this issue?

A.Replace the printer's fuser unit.
B.Replace the ink cartridges with new ones.
C.Manually clean the printhead or replace it.
D.Adjust the paper type setting in the driver to 'photo paper'.
AnswerC

Manually cleaning the printhead or replacing it directly addresses the root cause of persistent print quality issues like banding or missing colors: clogged nozzles. Automated cleaning cycles often use pressure or heat to flush nozzles, but if these fail, manual cleaning with a specialized solution or tools can dislodge stubborn dried ink. If the printhead is severely damaged or irretrievably clogged, replacing the entire printhead assembly is the most effective and direct solution to restore proper ink delivery.

Why this answer

Horizontal white streaks on inkjet prints typically indicate clogged printhead nozzles. Since the cleaning cycle did not help, physically cleaning the printhead or replacing it is the next step. Replacing ink cartridges or adjusting paper settings would not address clogged nozzles.

444
MCQmedium

A user complains that their iOS device's screen brightness automatically dims when using a particular streaming app, but stays normal with other apps. The auto-brightness setting is enabled. What is the most likely reason?

A.The app is using HDR content, which requires lower brightness.
B.The device's ambient light sensor is malfunctioning.
C.The app has its own brightness control that is set to dim.
D.The device is overheating and throttling brightness.
AnswerC

Many media consumption applications, particularly streaming video players, incorporate their own independent brightness controls directly within the app's interface. These in-app settings can override or modify the system-wide brightness configuration, allowing users to adjust the display luminance specifically for that application's content. If this internal app setting is inadvertently set to a lower level, it would cause the screen to appear dim only when that particular app is active, regardless of the iOS device's global brightness setting.

Why this answer

Many streaming apps implement their own brightness control logic, often to optimize video playback or reduce power consumption. When the app's internal brightness setting is configured to dim, it overrides the system's auto-brightness for that specific app, causing the screen to dim only while the app is active. This is a common behavior in apps that manage their own display parameters independently of the iOS system settings.

Exam trap

The 220-1201 exam often tests the distinction between system-level settings (like auto-brightness) and app-specific controls, leading candidates to incorrectly attribute the issue to hardware faults or system-wide problems rather than recognizing that apps can independently manage display brightness.

How to eliminate wrong answers

Option A is wrong because HDR content typically requires higher brightness to display the expanded dynamic range, not lower brightness; the device would increase brightness for HDR playback. Option B is wrong because if the ambient light sensor were malfunctioning, the dimming would occur across all apps and in various lighting conditions, not just within a single streaming app. Option D is wrong because overheating throttling affects the entire device and would cause brightness reduction system-wide, not exclusively within one app, and the user would likely notice other performance issues or warnings.

445
MCQeasy

A technician is installing a new SSD into a customer's laptop. After removing the bottom cover, they see the existing hard drive is held in place by a metal bracket and a single screw. What is the correct next step?

A.Remove the screw and bracket, then gently lift the drive out of the SATA connector.
B.Pull the drive straight out with force to disconnect it.
C.Use a plastic spudger to pry the drive from the connector.
D.Remove the battery first to avoid electrical shock.
AnswerA

To properly remove an SSD, the first critical step is to disengage any mechanical retention that secures the drive within its bay or slot. This typically involves unscrewing a small retaining screw and then carefully removing a metal bracket. Once the drive is mechanically free, it can then be gently lifted straight out of the SATA data and power connector, ensuring no undue stress is placed on the delicate pins or the connector housing, which prevents damage to both the drive and the motherboard port.

Why this answer

The correct next step is to remove the screw and bracket, then gently lift the drive out of the SATA connector. This is because the metal bracket secures the drive in place, and the SATA connector is a fragile, keyed interface that requires a straight, gentle pull to avoid damaging the pins or the drive's edge connector. Forcing the drive or prying it can bend pins or crack the connector.

Exam trap

The trap here is that candidates may think removing the battery is the mandatory first step for any hardware servicing, but the question specifically asks for the next step to physically remove the drive, which is to release the securing bracket and screw.

How to eliminate wrong answers

Option B is wrong because pulling the drive straight out with force can damage the SATA connector pins or the drive's interface, and the bracket must be removed first to free the drive. Option C is wrong because using a plastic spudger to pry the drive from the connector risks bending the SATA connector pins or cracking the laptop's motherboard, as the connector is not designed for lateral force. Option D is wrong because while removing the battery is a good safety practice to prevent short circuits, it is not the immediate next step required to physically release the drive; the screw and bracket must be addressed first.

446
MCQmedium

A technician is installing a new network drop in a warehouse where the cable must run near high-voltage machinery. The run is 60 meters. Which type of cable should be used to minimize interference?

A.UTP Cat6 cable.
B.STP Cat6a cable.
C.Coaxial RG-6 cable.
D.Fiber optic cable.
AnswerB

Shielded Twisted Pair (STP) Cat6a cable is the optimal choice for a new network drop in environments prone to electromagnetic interference (EMI). The metallic foil or braid shielding within STP cables effectively blocks external electrical noise, preventing signal degradation and ensuring reliable data transmission. Furthermore, Cat6a supports 10 Gigabit Ethernet over longer distances (up to 100 meters), providing superior performance and future-proofing compared to standard Cat6, making it ideal for demanding installations.

Why this answer

STP Cat6a cable includes a conductive shield that protects against electromagnetic interference (EMI) from nearby high-voltage machinery. The 60-meter run is well within Cat6a's 100-meter maximum segment length, making it the best choice for this environment.

Exam trap

A common pitfall in CompTIA A+ exams is assuming that UTP is always sufficient for Ethernet, but in high-EMI environments like near machinery, shielded cabling (STP) is required. Fiber is also immune but more expensive and harder to terminate, so STP is the best practical choice.

How to eliminate wrong answers

Option A is wrong because UTP Cat6 cable lacks shielding, making it susceptible to EMI from high-voltage machinery, which can cause data corruption or packet loss. Option C is wrong because coaxial RG-6 cable is designed for broadband video and RF signals, not for standard Ethernet networking, and it does not provide the same immunity to EMI as STP in a structured cabling environment. Option D is wrong because fiber optic cable, while immune to EMI, is overkill for a 60-meter run and typically requires more expensive transceivers and termination tools, making it less practical for a simple network drop.

447
MCQeasy

During a routine hardware upgrade, a technician installs a new graphics card. The system powers on but no display appears. The old card works fine. What UEFI setting should be checked first?

A.Disable Secure Boot
B.Change the primary video adapter from onboard to PCIe
C.Enable CSM (Compatibility Support Module)
D.Update the UEFI firmware to the latest version
AnswerB

Changing the primary video adapter setting in the UEFI/BIOS from the integrated (onboard) graphics to the newly installed PCIe discrete graphics card is the correct solution. This firmware setting explicitly instructs the system to initialize and prioritize the discrete GPU for video output, ensuring that the monitor connected to the new card receives a signal. Many motherboards default to integrated graphics when a new PCIe card is detected, requiring manual configuration to switch the primary display output.

Why this answer

If the system has integrated graphics and a discrete card, the UEFI may default to the integrated output. Changing the primary video adapter to PCIe/ PEG forces the system to use the new card. This tests understanding of video initialization order in UEFI.

448
MCQmedium

A company deploys a new web server and wants to ensure that data transmitted between clients and the server is encrypted. The technician configures the server to use a certificate. Which protocol should be enabled on the server?

A.HTTPS
B.HTTP
C.FTP
D.SSH
AnswerA

HTTPS (Hypertext Transfer Protocol Secure) is the appropriate protocol for a new web server because it ensures secure, encrypted communication between the client and the server. It leverages Transport Layer Security (TLS) to encrypt data, protecting its confidentiality and integrity from eavesdropping and tampering during transit. Furthermore, HTTPS requires a digital certificate to authenticate the server's identity, establishing trust and verifying that clients are connecting to the legitimate website. This robust security makes it indispensable for any modern web application, especially those handling sensitive user information, and it typically operates over TCP port 443.

Why this answer

HTTPS (Hypertext Transfer Protocol Secure) encrypts data between clients and a web server using TLS/SSL. The certificate you configured on the server is used to establish a trusted, encrypted session, ensuring confidentiality and integrity of transmitted data.

Exam trap

CompTIA A+ often tests the distinction between secure and insecure protocols, and the trap here is that candidates may confuse SSH (used for secure remote shell access) with HTTPS (used for secure web traffic), or think that HTTP with a certificate is sufficient without enabling the encryption layer.

How to eliminate wrong answers

Option B (HTTP) is wrong because it transmits data in plaintext, providing no encryption or security for the data in transit. Option C (FTP) is wrong because it is a file transfer protocol that also sends credentials and data in cleartext by default, and it is not designed for web server client communication. Option D (SSH) is wrong because it is a secure protocol for remote administration and secure file transfer (SFTP), not for serving web pages to clients via a browser.

449
MCQhard

A technician is troubleshooting a network drop that was working yesterday but now shows 'No Link' on the switch port. The cable run is through a conduit in the wall. The technician tests the cable with a continuity tester and finds that pins 1, 2, 3, and 6 are good, but pins 4, 5, 7, and 8 show no continuity. What is the most likely cause?

A.The cable is only Cat5 and cannot support Gigabit.
B.The cable has a short circuit between pins 4 and 5.
C.The cable is cut or crushed in the conduit, breaking the secondary pairs.
D.The wall jack is wired for T568A but the patch panel is T568B.
AnswerC

This option is correct because an open circuit detected on specific pairs, such as pins 4-5 and 7-8, strongly indicates physical damage to those conductors within the cable. When a cable is run through a conduit, it can be subjected to crushing forces, sharp bends, or even partial cuts during installation or subsequent work, which can sever individual wires or pairs. This type of damage would specifically break the electrical path for the affected pairs, leading to an open circuit reading on a cable tester for those pins.

Why this answer

This question tests understanding of Ethernet pinout and fault isolation. The correct answer is that the cable is likely damaged or broken on the pairs used for 1000Base-T (all four pairs), but 100Base-TX only uses pairs 1-2 and 3-6. The symptom indicates a break in the cable affecting the secondary pairs.

450
MCQeasy

A company uses virtual machines for its production environment. A technician needs to perform maintenance on the host server without disrupting the VMs. The technician wants to move the VMs to another host in the cluster while they are running. Which feature must be configured to allow this?

A.Virtual machine snapshots
B.Live migration (vMotion)
C.Virtual switch trunking
D.Resource pooling
AnswerB

Live migration, often implemented as vMotion in VMware environments, is a crucial virtualization technology that allows a running virtual machine to be moved from one physical host to another without any interruption to its operation. This process seamlessly transfers the VM's active memory and CPU state, along with its storage, between hosts. It is precisely what a technician needs to perform maintenance or balance loads on production servers without downtime.

Why this answer

Live migration (vMotion in VMware, live migration in Hyper-V) allows moving running VMs between hosts with zero downtime. This is a key feature for high availability and maintenance. The correct answer directly names this feature.

Page 5

Page 6 of 13

Page 7