Courseiva

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

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

Page 2

Page 3 of 13

Page 4
151
MCQeasy

A user configures their laptop to use a static IP address, subnet mask, and default gateway. They can ping other devices on the same subnet but cannot reach the internet. What network service is most likely missing from their configuration?

A.DHCP server
B.DNS server
C.NAT
D.Proxy server
AnswerB

The Domain Name System (DNS) server is essential for translating human-readable domain names (like google.com) into numerical IP addresses that computers use to locate resources on the internet. Even if a laptop has a correctly configured static IP address, subnet mask, and default gateway, it cannot establish connections to websites or other internet services by name without a functional DNS server address. This inability to resolve names effectively prevents "internet access" as users perceive it, despite underlying network connectivity.

Why this answer

A static IP configuration includes the IP address, subnet mask, and default gateway, but if the DNS server address is not manually set, the laptop cannot resolve domain names to IP addresses. Since the user can ping devices on the same subnet (local connectivity works) but cannot reach the internet, the missing DNS server prevents name resolution for external hosts, even though routing via the default gateway is functional.

Exam trap

The trap here is that candidates assume internet access requires DHCP or NAT on the client, but the question explicitly states a static IP is configured, so the missing piece is the DNS server address, which is essential for name resolution but not for IP-level connectivity.

How to eliminate wrong answers

Option A is wrong because a DHCP server is not required for static IP configurations; the user manually set the IP, subnet mask, and gateway, so DHCP is irrelevant. Option C is wrong because NAT is a router function that translates private IPs to public IPs; it is not configured on the client laptop and is not a service the user would set in their TCP/IP settings. Option D is wrong because a proxy server is an intermediary for HTTP/HTTPS traffic, not a fundamental requirement for basic internet connectivity; the issue is name resolution, not proxy configuration.

152
MCQmedium

A technician is tasked with enabling virtualization on a desktop to run a hypervisor. After enabling the feature in the OS, the hypervisor still reports that virtualization is disabled. What should be checked in the firmware?

A.Enable Secure Boot
B.Enable Intel VT-x or AMD-V in the BIOS/UEFI
C.Disable Hyper-Threading
D.Update the chipset drivers
AnswerB

Intel VT-x (Virtualization Technology for x86) and AMD-V (AMD Virtualization) are specific CPU hardware extensions that provide direct support for virtualization. These features create a more efficient and secure environment for hypervisors by allowing them to run guest operating systems with near-native performance and direct access to hardware resources. Access to these critical hardware capabilities is controlled at the firmware level, meaning they must be explicitly enabled within the system's BIOS or UEFI settings before any hypervisor can utilize them. Without these extensions active, software-based virtualization might be possible but will lack performance and advanced features.

Why this answer

Virtualization support must be enabled in the CPU's firmware settings (e.g., Intel VT-x or AMD-V) before the OS can use it. The OS setting alone is insufficient. This question tests knowledge of firmware-level CPU features.

153
MCQhard

A user reports that their smartphone's screen is flickering and has vertical lines. The phone has not been dropped or exposed to water. Which of the following is the most likely cause of this issue?

A.A software glitch caused by a recent app update
B.The battery is swelling and pressing against the display
C.The display cable is loose or damaged
D.The phone's processor is overheating
AnswerC

A loose or damaged display cable is a common cause of screen flickering and vertical lines because it directly transmits the video signals and power to the display panel. Intermittent or corrupted data transmission due to a poor connection or physical damage to the cable's conductors results in the display receiving incomplete or garbled information, manifesting as visual anomalies like flickering, color distortion, or persistent lines on the screen.

Why this answer

Screen flickering and vertical lines are classic symptoms of a failing display or a loose internal display cable. Since there was no physical trauma, a loose connection or a manufacturing defect in the display assembly is the most probable cause.

154
MCQeasy

A small office with 15 employees uses a single switch to connect all workstations. Users report that the network becomes extremely slow during peak hours, and some packets are being dropped. The switch is a 10/100 model with a 1 Gbps uplink to the router. What is the most likely cause of the slowdown?

A.The switch is not a managed switch and cannot prioritize traffic.
B.The switch's ports are only 100 Mbps, causing a bottleneck when multiple users are active.
C.The router's uplink port is faulty and needs to be replaced.
D.The switch is a hub, not a switch, causing collisions.
AnswerB

A switch with 100 Mbps (Fast Ethernet) ports limits the maximum data transfer rate for each connected device to 100 megabits per second. With 15 active users simultaneously accessing network resources, the aggregate demand can easily exceed the capacity of individual 100 Mbps links, especially if multiple users are transferring large files or streaming data. This saturation creates a significant bottleneck, leading to noticeable slowdowns, increased latency, and potential packet loss as the switch struggles to process the overwhelming traffic volume.

Why this answer

The switch operates at 10/100 Mbps per port, meaning each workstation is limited to a maximum of 100 Mbps. With 15 employees active during peak hours, the aggregate traffic can easily exceed the 100 Mbps per-port capacity, causing congestion, packet drops, and slowdowns. The 1 Gbps uplink to the router is not the bottleneck; the bottleneck is the 100 Mbps access ports connecting the workstations.

Exam trap

The 220-1201 exam often tests the misconception that a slow network during peak hours is always due to a lack of QoS or a faulty uplink, rather than the simple bandwidth limitation of 100 Mbps ports being saturated by multiple users.

How to eliminate wrong answers

Option A is wrong because while a managed switch can prioritize traffic (e.g., using QoS), the core issue here is insufficient bandwidth per port, not a lack of traffic prioritization; even with QoS, the 100 Mbps port speed would still be saturated. Option C is wrong because the router's uplink port is 1 Gbps, which is more than sufficient for 15 users, and there is no evidence of a faulty port (e.g., CRC errors, link flapping). Option D is wrong because the device is explicitly described as a switch, not a hub; switches create separate collision domains per port, eliminating collisions, whereas hubs share a single collision domain.

155
MCQhard

A network engineer is designing a subnet scheme for a company with three departments: Sales (50 devices), HR (20 devices), and IT (10 devices). The company uses the 10.0.0.0/24 network. To minimize waste, the engineer decides to use variable-length subnet masking (VLSM). Which of the following subnet masks should be assigned to the Sales department?

A.255.255.255.128
B.255.255.255.192
C.255.255.255.224
D.255.255.255.240
AnswerB

The subnet mask 255.255.255.192 corresponds to a /26 CIDR, which designates 6 host bits. This configuration provides 2^6 = 64 total IP addresses within the subnet. Subtracting the network and broadcast addresses leaves 62 usable host addresses, which perfectly accommodates the requirement for 50 devices with minimal address waste, making it the most efficient choice.

Why this answer

The Sales department requires 50 hosts. A /26 subnet mask (255.255.255.192) provides 62 usable addresses (2^(32-26)-2 = 62), which is the smallest subnet that can accommodate 50 devices without waste. VLSM allows using this mask within the 10.0.0.0/24 network, leaving room for other subnets.

Exam trap

The 220-1201 exam often tests the candidate's ability to calculate the exact number of usable hosts per subnet (2^(32-prefix)-2) and match it to the requirement, tricking those who forget to subtract the network and broadcast addresses or who round up to the nearest power of two without considering the -2.

How to eliminate wrong answers

Option A (255.255.255.128) is wrong because it provides 126 usable addresses, which is far more than the 50 needed, resulting in significant waste and violating the VLSM goal of minimizing waste. Option C (255.255.255.224) is wrong because it provides only 30 usable addresses (2^5-2 = 30), which is insufficient for 50 devices. Option D (255.255.255.240) is wrong because it provides only 14 usable addresses (2^4-2 = 14), far too few for the Sales department.

156
MCQmedium

A company is setting up a new branch office with 30 employees. They need to connect all workstations to the network and provide internet access. The internet connection is a fiber optic line terminating in an ONT. Which device should be placed between the ONT and the switch to route traffic and provide NAT?

A.Patch panel
B.Router
C.Layer 2 switch
D.Firewall appliance
AnswerB

A router is essential for connecting a local area network (LAN) to a wide area network (WAN), such as the internet, typically interfacing with an Optical Network Terminal (ONT) or modem. It performs Network Address Translation (NAT) to allow multiple internal devices to share a single public IP address and intelligently routes data packets between different IP networks based on their destination addresses. This device is crucial for establishing internet connectivity and managing traffic flow between the internal network and external resources.

Why this answer

The ONT converts fiber to Ethernet, but it does not route or perform NAT. A router is required to connect the local network to the internet, provide NAT, and handle IP addressing. A switch alone cannot route, and a firewall is often combined with a router but is not the primary device for routing.

The correct answer is a router.

157
MCQeasy

A user reports that their new Bluetooth headset pairs with their smartphone but no audio is heard during calls. The headset works fine with another phone. What is the most likely cause?

A.The headset battery is low.
B.The phone is not using the correct Bluetooth profile for calls.
C.The headset is out of Bluetooth range.
D.The phone's Bluetooth radio is faulty.
AnswerB

Bluetooth headsets often utilize distinct profiles for different functions, such as A2DP (Advanced Audio Distribution Profile) for high-quality stereo music streaming and HSP/HFP (Headset Profile/Hands-Free Profile) for monaural audio during phone calls. If the phone successfully connects for media but fails to activate or switch to the appropriate HSP/HFP profile when a call is initiated, call audio will not be routed to the headset, even if the headset is otherwise connected. This scenario precisely explains why media might play but calls have no audio.

Why this answer

The most likely cause is that the phone is not using the correct Bluetooth profile for calls. Bluetooth headsets require the Hands-Free Profile (HFP) or Headset Profile (HSP) for bidirectional audio during calls. If the phone defaults to the Advanced Audio Distribution Profile (A2DP) for media streaming instead, audio will not route through the headset for calls.

Since the headset works with another phone, the issue is specific to the phone's profile selection or configuration.

Exam trap

The 220-1201 exam often tests the distinction between Bluetooth profiles (HFP/HSP vs. A2DP) to trap candidates who assume that successful pairing guarantees all audio functions will work.

How to eliminate wrong answers

Option A is wrong because a low battery would typically cause intermittent audio, pairing failures, or no power at all, not a scenario where the headset pairs successfully but produces no audio during calls. Option C is wrong because Bluetooth range is approximately 10 meters (33 feet) for Class 2 devices; if the headset is paired and within range, range would not cause a complete lack of audio only during calls while media works. Option D is wrong because a faulty Bluetooth radio would likely cause pairing failures, frequent disconnections, or no audio across all functions, not a selective issue where the headset pairs and works for media but fails only during calls.

158
MCQmedium

During a site survey, a technician needs to measure the signal strength of a wireless access point from various locations in an office to ensure adequate coverage. Which tool should be used for this task?

A.Multimeter
B.Wi-Fi analyzer
C.Spectrum analyzer
D.Cable tester
AnswerB

A Wi-Fi analyzer shows signal strength, channel usage, and interference, making it ideal for wireless site surveys.

Why this answer

A Wi-Fi analyzer is the correct tool because it is specifically designed to measure wireless signal strength (RSSI), channel utilization, and interference from access points. During a site survey, the technician uses a Wi-Fi analyzer to collect real-time signal data from various locations, ensuring adequate coverage and identifying dead zones or co-channel interference.

Exam trap

In CompTIA A+ exams, candidates often confuse Wi-Fi analyzers with spectrum analyzers. A Wi-Fi analyzer measures signal strength from access points for coverage surveys, while a spectrum analyzer detects RF interference and noise.

How to eliminate wrong answers

Option A is wrong because a multimeter measures electrical properties like voltage, current, and resistance, not wireless RF signal strength. Option C is wrong because a spectrum analyzer measures RF energy across a frequency spectrum to detect interference sources, but it does not decode Wi-Fi frames or provide per-AP signal strength readings needed for a coverage survey. Option D is wrong because a cable tester verifies the physical integrity and wiring of Ethernet cables (e.g., continuity, shorts, or opens), not wireless signal propagation.

159
MCQmedium

A user wants to use a wired headset with their tablet for voice calls, but the tablet only has a single USB-C port and no 3.5mm jack. The headset has a 3.5mm plug. Which accessory should you recommend?

A.A USB-C hub with multiple ports.
B.A Bluetooth audio adapter for the headset.
C.A USB-C to 3.5mm adapter.
D.A 3.5mm Y-splitter cable.
AnswerC

Many modern tablets and smartphones have eliminated the dedicated 3.5mm audio jack, relying on the versatile USB-C port for both data and audio transmission. A USB-C to 3.5mm adapter contains a digital-to-analog converter (DAC) that translates the digital audio signal from the USB-C port into an analog signal compatible with a standard 3.5mm wired headset. This adapter directly plugs into the tablet's USB-C port and provides the necessary 3.5mm jack, thereby fulfilling the user's requirement for a wired audio connection.

Why this answer

A USB-C to 3.5mm adapter converts the digital audio signal from the USB-C port into an analog signal that the wired headset can use. This adapter typically includes a built-in DAC (Digital-to-Analog Converter) to handle the conversion, enabling voice calls through the tablet's USB-C port without requiring additional power or Bluetooth pairing.

Exam trap

CompTIA A+ often tests the misconception that a USB-C hub (Option A) is a universal solution for all port shortages, but candidates must recognize that audio output requires a specific adapter with a DAC, not just any hub.

How to eliminate wrong answers

Option A is wrong because a USB-C hub with multiple ports provides additional connectivity (e.g., HDMI, USB-A, Ethernet) but does not inherently include a 3.5mm audio jack; unless the hub specifically has an audio output, it will not solve the headset connection issue. Option B is wrong because a Bluetooth audio adapter would convert the wired headset into a wireless device, which is unnecessary and introduces latency, pairing steps, and battery dependency when a simple wired adapter is sufficient. Option D is wrong because a 3.5mm Y-splitter cable is designed to split a single 3.5mm jack into two (e.g., for separate microphone and headphone plugs) but does not convert USB-C to 3.5mm; the tablet lacks a 3.5mm port entirely, so the splitter has no source to connect to.

160
MCQmedium

A user wants to access their company's webmail using a secure connection from a public Wi-Fi hotspot. The webmail server is configured to use IMAP over SSL. Which port should the email client use?

A.143
B.110
C.993
D.995
AnswerC

Port 993 is the designated secure port for the Internet Message Access Protocol (IMAP) over SSL/TLS, often referred to as IMAPS. This port encrypts all communication between the email client (or webmail interface) and the mail server, protecting login credentials and message content from interception. For accessing company webmail securely, especially over potentially insecure networks, IMAPS on port 993 is the appropriate and recommended choice.

Why this answer

IMAP over SSL (IMAPS) uses TCP port 993 to establish an encrypted connection. Since the user is on a public Wi-Fi hotspot and the server is configured for IMAP over SSL, the email client must connect to port 993 to ensure all traffic is encrypted via TLS/SSL. Port 143 is the default for unencrypted IMAP, which would expose credentials and email data on an insecure network.

Exam trap

The CompTIA A+ exam often tests the distinction between default ports for encrypted vs. unencrypted protocols, and the trap here is that candidates confuse port 993 (IMAP over SSL) with port 995 (POP3 over SSL) or assume port 143 can be used with SSL without realizing it requires STARTTLS rather than implicit TLS.

How to eliminate wrong answers

Option A is wrong because port 143 is the default port for unencrypted IMAP, not IMAP over SSL; using it would send data in plaintext, which is insecure on a public Wi-Fi hotspot. Option B is wrong because port 110 is the default port for POP3 (unencrypted), not IMAP; POP3 is a different protocol for retrieving email, and it lacks encryption on this port. Option D is wrong because port 995 is the default port for POP3 over SSL (POP3S), not IMAP over SSL; it is used for encrypted POP3 connections, not IMAP.

161
MCQmedium

A user reports intermittent network connectivity in an office that recently had a new ceiling installed. The network drop runs through the ceiling and is not in a conduit. What is the most likely cause of the intermittent connection?

A.The cable is too long for the network speed.
B.The cable is not properly terminated at the patch panel.
C.The cable is pinched or kinked by the new ceiling installation.
D.The network switch port is faulty.
AnswerC

New construction can pinch cables, causing intermittent breaks or shorts. This is a common issue after ceiling work.

Why this answer

The new ceiling installation is the most likely cause because the network cable, running without conduit, can easily be pinched or kinked by ceiling tiles, support wires, or other hardware. Physical damage like a pinch or kink can cause impedance mismatches, signal reflection, or even a short, leading to intermittent connectivity. This is a classic physical-layer issue where the cable's integrity is compromised by environmental changes.

Exam trap

CompTIA A+ emphasizes the importance of physical layer issues. The new ceiling installation can easily pinch or kink the cable, causing impedance mismatches and intermittent connectivity. Candidates may overlook environmental changes and instead incorrectly blame termination or switch hardware.

How to eliminate wrong answers

Option A is wrong because cable length limits (e.g., 100 meters for Ethernet over twisted pair) are a constant factor; if the cable were too long, the issue would be persistent, not intermittent, and the recent ceiling work would not affect length. Option B is wrong because improper termination at the patch panel typically causes a permanent fault (e.g., no link or continuous errors), not intermittent connectivity that coincides with the ceiling installation. Option D is wrong because a faulty switch port usually causes consistent failure or errors on that specific port, and the timing with the ceiling work makes a physical cable issue far more probable than a coincidental hardware failure.

162
MCQhard

A technician is troubleshooting a laptop that powers on but displays a black screen with no boot activity. The technician hears the fan spinning and sees the power LED is on. Which of the following steps should the technician perform next to isolate the issue?

A.Reseat the RAM modules
B.Replace the LCD panel
C.Connect an external monitor
D.Reinstall the operating system
AnswerC

Connecting an external monitor is the most logical and least invasive initial troubleshooting step when a laptop powers on but shows no display. This action quickly determines if the laptop's graphics processing unit (GPU) is functioning and successfully outputting a video signal. If the external monitor displays an image, it definitively isolates the problem to the laptop's internal LCD panel, its connecting cable, or the inverter, rather than the core video output circuitry or motherboard.

Why this answer

A black screen with power but no boot suggests a hardware issue, often with the display or memory. Connecting an external monitor can quickly determine if the problem is with the laptop's LCD panel or the video output. If the external monitor works, the internal display or its cable is likely faulty.

163
MCQeasy

A user reports that their laser printer is producing pages with vertical black streaks. The streaks appear consistently in the same location on every page. Which printer component is most likely causing this issue?

A.Fuser assembly
B.Toner cartridge
C.Drum unit
D.Pickup roller
AnswerC

The drum unit, or photoconductive drum, is the central component responsible for forming the electrostatic image and attracting toner. If the delicate photosensitive surface of the drum is scratched, worn, or has a foreign particle adhering to it, that specific defect will consistently pick up or repel toner in the same location during each rotation. This consistent defect is then transferred to the paper, manifesting as a persistent vertical streak or line down every printed page.

Why this answer

Vertical black streaks on a laser printer page are typically caused by a scratched or damaged drum. The drum transfers toner to the paper, and any defect will repeat with each rotation. Cleaning or replacing the drum assembly usually resolves this issue.

164
MCQhard

A technician is troubleshooting a VM that frequently crashes with a 'blue screen' error. The host is a Type 1 hypervisor running on server-grade hardware with ECC RAM. The VM was created from a template and has been stable for months. Recently, the technician added a second virtual CPU to the VM. What is the most likely cause of the crashes?

A.The host's ECC RAM has detected a memory error
B.The VM's virtual disk is fragmented
C.The guest OS does not support symmetric multiprocessing (SMP) properly
D.The hypervisor's CPU scheduler is overloaded
AnswerC

When a virtual machine is configured with multiple virtual CPUs (vCPUs), the guest operating system must be designed to handle symmetric multiprocessing (SMP). If the guest OS, or its installed drivers, lacks proper SMP support or has an outdated kernel, adding a second vCPU can introduce race conditions, deadlocks, or incorrect interrupt handling between the processors. This fundamental incompatibility often manifests as immediate and frequent kernel panics, blue screen errors, or unexpected reboots, directly correlating with the change in vCPU configuration.

Why this answer

Adding a second virtual CPU can expose timing and synchronization issues in the guest OS, especially if the application or OS is not optimized for multi-core. This is a known cause of instability in virtualized environments.

165
MCQhard

A technician is configuring an MFP for a healthcare clinic that must comply with HIPAA. The MFP has a built-in hard drive that stores scanned documents. The clinic wants to ensure that once a document is scanned and transmitted, it cannot be recovered from the MFP's drive. What feature should the technician enable?

A.User authentication with PIN
B.Secure print release
C.Hard drive encryption
D.Secure erase after transmission
AnswerD

Secure erase after transmission involves overwriting the specific sectors on the MFP's hard drive where sensitive scanned data was temporarily stored, typically multiple times with specific patterns (e.g., zeros, ones, or random data). This process ensures that the original data becomes forensically unrecoverable, even with advanced data recovery tools. This method is crucial for compliance with regulations like HIPAA, as it guarantees the permanent removal of Protected Health Information (PHI) from the device's storage after it has been successfully transmitted.

Why this answer

Secure erase (or data overwrite) is a feature that overwrites the hard drive with patterns of data to prevent recovery. This is critical for compliance in environments like healthcare where patient data must be protected after use.

166
MCQeasy

A user reports that their computer's hard drive makes a clicking noise and the system occasionally freezes. Which action should you take first?

A.Run CHKDSK to repair file system errors.
B.Replace the hard drive immediately.
C.Back up the user's data as soon as possible.
D.Update the hard drive firmware.
AnswerC

The clicking sound emanating from a hard drive is a classic symptom of impending mechanical failure, often indicating issues with the read/write heads or spindle motor. In such critical situations, the absolute priority is to preserve any accessible data before the drive fails completely. Backing up the user's data as soon as possible ensures that valuable information is not lost when the drive inevitably stops functioning.

Why this answer

Clicking noises from a hard drive often indicate mechanical failure (head crash). Immediate backup of critical data is the priority before further troubleshooting or replacement.

167
MCQmedium

A technician is troubleshooting a workstation that fails to boot. The motherboard has a POST code display showing '00'. The CPU fan spins, but there is no display output. Which component is most likely faulty?

A.The power supply unit
B.The RAM modules
C.The CPU
D.The graphics card
AnswerC

The '00' POST code is a strong indicator of a fundamental CPU initialization failure, particularly common with AMI BIOS systems. This code suggests that the central processing unit is either not properly seated in its socket, has bent pins, is physically damaged, or is fundamentally incompatible with the motherboard, preventing the system from even beginning the Power-On Self-Test (POST) sequence effectively. It signifies a failure at the very earliest stage of system startup, before other major components are tested.

Why this answer

POST code '00' typically indicates a CPU-related issue, such as a faulty CPU, incorrect installation, or bent pins. Since the fan spins, power is reaching the board, but the CPU is not initializing. The technician should reseat the CPU and check for damage.

168
MCQhard

A technician is selecting a power supply for a workstation that will run 24/7 in a dusty environment. The PSU will be installed in a case with limited airflow. Which PSU feature is most important to prioritize for long-term reliability in this scenario?

A.A high total wattage rating to ensure headroom.
B.A modular cable design for easier cable management.
C.A fan with a fluid dynamic bearing and a dust filter.
D.An 80 Plus Bronze efficiency rating.
AnswerC

A fluid dynamic bearing (FDB) fan offers superior longevity and quieter operation compared to traditional sleeve or ball bearings, especially in environments prone to dust, as the fluid lubrication reduces friction and wear. Coupled with a dust filter, which actively prevents particulate matter from entering the power supply unit, this combination directly addresses the primary causes of PSU failure in challenging conditions: internal dust buildup, overheating, and premature fan degradation. This design significantly enhances the PSU's reliability and lifespan.

Why this answer

In dusty environments with limited airflow, a PSU with a high-quality, sealed bearing fan (e.g., fluid dynamic bearing) and a dust-resistant design (e.g., honeycomb grill, dust filters) is critical. Additionally, a higher efficiency rating (e.g., 80 Plus Gold or better) reduces heat output, easing thermal stress. The most important single feature is the fan's reliability and the PSU's ability to handle particulate ingress.

169
MCQhard

A technician is troubleshooting a display that shows a single vertical line of dead pixels from top to bottom. The monitor is under warranty. Which of the following is the most appropriate resolution?

A.Use a pixel-fixing software to cycle colors rapidly
B.Gently massage the affected area with a soft cloth
C.Replace the monitor under warranty
D.Update the graphics card driver
AnswerC

A persistent vertical line of dead pixels is a definitive indicator of a manufacturing defect within the display panel itself, often pointing to a failure in a specific column driver circuit or a damaged ribbon cable connecting to the LCD matrix. Since this is a hardware failure inherent to the monitor's construction and not user-repairable, replacing the unit under warranty is the appropriate and most cost-effective solution. This ensures the user receives a fully functional display without incurring additional repair costs.

Why this answer

A vertical line of dead pixels indicates a defect in the LCD panel's column driver or bonding, which is a hardware failure. Unlike a few stuck pixels, this cannot be fixed by software or gentle pressure. The correct answer is to replace the monitor under warranty, as this is a manufacturing defect.

170
MCQmedium

A technician is setting up internet for a remote cabin that is 5 miles from the nearest road. No wired infrastructure exists. Which connection type is most practical for reliable, moderate-speed internet?

A.DSL
B.Cable
C.Satellite
D.Fiber optic
AnswerC

Satellite internet is the most viable solution for remote locations because it does not depend on terrestrial cabling or cellular towers. It provides connectivity by communicating with geostationary or Low Earth Orbit (LEO) satellites via a dish antenna installed at the user's location, requiring only a clear line of sight to the sky. This independence from ground-based infrastructure makes it ideal for a cabin 5 miles from the road where traditional wired services are unavailable.

Why this answer

Satellite internet is the only viable option for a remote cabin 5 miles from the nearest road with no wired infrastructure. It uses a geostationary satellite to provide coverage anywhere with a clear line of sight to the sky, offering moderate speeds (typically 25–100 Mbps) without requiring terrestrial cabling. DSL, cable, and fiber all depend on physical infrastructure (copper phone lines, coaxial cable, or fiber optic cables) that cannot reach such a remote location.

Exam trap

A common misconception tested on the CompTIA A+ exam is that DSL or cable can be extended over long distances using repeaters or amplifiers, but in reality, both technologies have strict distance limits (DSL ~18,000 feet from the CO; cable ~100 miles with amplifiers) and require existing wired infrastructure that simply does not exist in a remote cabin 5 miles from the nearest road.

How to eliminate wrong answers

Option A is wrong because DSL requires a copper telephone line from a central office (CO) to the premises, and the cabin is 5 miles from the nearest road with no wired infrastructure, making DSL impossible. Option B is wrong because cable internet relies on coaxial cable from a cable headend, which also requires existing wired infrastructure that is absent in this scenario. Option D is wrong because fiber optic internet depends on fiber optic cables run directly to the premises, which is not available in a remote area without wired infrastructure.

171
MCQeasy

A small business owner wants to set up a guest Wi-Fi network that is isolated from the main corporate network to prevent unauthorized access to sensitive data. The wireless router supports multiple SSIDs. Which configuration should be applied to achieve this isolation?

A.Assign the guest SSID to a different VLAN
B.Use a different SSID name for guests
C.Enable WPA2 encryption on the guest network
D.Disable DHCP on the guest SSID
AnswerA

This is the correct approach for network segmentation. A Virtual Local Area Network (VLAN) logically separates network traffic at Layer 2 (Data Link Layer) of the OSI model, even if devices are connected to the same physical switch or access point. By assigning the guest SSID to a distinct VLAN, guest devices receive IP addresses from a separate subnet and are prevented from directly communicating with devices on the corporate VLAN, thereby enhancing security and isolating resources. This ensures that guest users cannot access internal company servers or sensitive data.

Why this answer

Assigning the guest SSID to a different VLAN (Virtual Local Area Network) creates a logical separation between the guest traffic and the corporate network. VLANs operate at Layer 2, and by placing the guest SSID on a separate VLAN, the router can apply inter-VLAN ACLs or disable routing between VLANs entirely, ensuring that guest devices cannot access corporate resources. This is the standard method for network isolation in multi-SSID environments.

Exam trap

The trap here is that candidates confuse 'different SSID name' with actual network isolation, assuming a separate name alone creates a separate broadcast domain, when in fact VLAN assignment is required for Layer 2 separation.

How to eliminate wrong answers

Option B is wrong because simply using a different SSID name does not provide any network-level isolation; it only differentiates the network names, but traffic from both SSIDs could still share the same broadcast domain and subnet. Option C is wrong because enabling WPA2 encryption secures the wireless link against eavesdropping but does not prevent a connected guest device from accessing other devices on the same subnet or the corporate network. Option D is wrong because disabling DHCP on the guest SSID would prevent clients from obtaining an IP address, making the network unusable; it does not isolate traffic, and clients could still manually configure IPs and reach corporate resources if no VLAN separation exists.

172
MCQmedium

A technician is troubleshooting a PC that powers on but does not display anything on the monitor. The fans spin, and the keyboard lights flash briefly. The power supply fan is spinning. What is the most efficient next step to isolate the issue?

A.Replace the power supply immediately
B.Test the power supply output voltages with a multimeter
C.Reseat the GPU and RAM
D.Check the monitor cable connection
AnswerB

Testing the power supply output voltages with a multimeter is the most appropriate initial diagnostic step. This allows the technician to precisely measure the DC voltages (+3.3V, +5V, +12V) on the ATX 24-pin connector and the CPU's 4/8-pin EPS connector. Verifying these voltages are within acceptable tolerances directly confirms if the PSU is delivering stable and sufficient power to the system's critical components, effectively isolating or confirming a power supply fault.

Why this answer

Testing the power supply with a multimeter or PSU tester is efficient because it quickly verifies if all rails are within spec. A failing PSU can cause no-post issues even if the fan spins. Other components like RAM or GPU could also be at fault, but checking power first avoids wasted effort.

173
MCQeasy

A small office has an inkjet printer that is printing blank pages even though the ink cartridges are full and properly installed. What is the most likely cause of this problem?

A.The printer driver is corrupted
B.The printhead is clogged
C.The paper type setting is wrong
D.The USB cable is faulty
AnswerB

A clogged printhead is a common issue in inkjet printers where dried ink or debris obstructs the tiny nozzles responsible for ejecting ink onto the paper. When the nozzles are blocked, the printer attempts to print, but no ink can pass through, leading to a completely blank page being outputted, even if the ink cartridges are full. This specific symptom directly points to a physical obstruction in the ink delivery system.

Why this answer

When an inkjet printer prints blank pages despite full cartridges, the printhead nozzles are often clogged. Ink can dry and block the tiny nozzles, preventing ink from reaching the paper. Running the printer's cleaning cycle or manually cleaning the printhead usually resolves the issue.

174
MCQeasy

A technician is installing a new network drop in a warehouse where there is high electromagnetic interference (EMI) from machinery. Which cable type should be used to minimize signal degradation?

A.Cat5e UTP
B.Cat6a STP
C.Coaxial cable
D.Plenum-rated cable
AnswerB

STP cables include shielding that protects against EMI, making them ideal for environments with high interference.

Why this answer

Cat6a STP (Shielded Twisted Pair) is the correct choice because its individual pair shielding and overall braided shield provide robust protection against high electromagnetic interference (EMI) from warehouse machinery. The shielding effectively blocks external noise, preventing signal degradation and maintaining data integrity over longer distances, unlike unshielded cables.

Exam trap

CompTIA often tests the distinction between cable shielding (STP vs. UTP) and cable jacket rating (plenum vs. riser). The trap here is that candidates confuse plenum rating with EMI protection, assuming a fire-retardant jacket also blocks interference.

How to eliminate wrong answers

Option A (Cat5e UTP) is wrong because Unshielded Twisted Pair lacks any metallic shielding, making it highly susceptible to EMI from machinery, which can cause bit errors and retransmissions. Option C (Coaxial cable) is wrong because while coaxial cable has a single center conductor and shield, it is typically used for broadband or video signals, not for modern twisted-pair Ethernet drops, and its impedance (50 or 75 ohms) is mismatched for standard 100-ohm Ethernet, leading to signal reflection issues. Option D (Plenum-rated cable) is wrong because plenum rating refers only to fire safety and low smoke emission for installation in air-handling spaces, not to EMI protection; a plenum-rated cable can be UTP or STP, so it does not inherently minimize signal degradation from interference.

175
MCQhard

A client wants to install a new power supply in a custom PC that uses a mini-ITX motherboard inside a compact case. The current PSU is a standard ATX unit, but the client wants to reduce clutter and improve airflow. Which form factor should you recommend?

A.ATX (standard)
B.SFX
C.TFX
D.EPS
AnswerB

SFX (Small Form Factor) power supplies are specifically engineered for compact builds, such as those utilizing mini-ITX motherboards. With typical dimensions around 125mm x 63.5mm x 100mm, SFX units are significantly smaller than ATX PSUs, allowing for proper fit and improved internal airflow in space-constrained cases. Despite their reduced size, modern SFX PSUs can deliver substantial wattage, making them ideal for high-performance mini-ITX gaming or workstation systems.

Why this answer

SFX (Small Form Factor) power supplies are designed for compact cases and mini-ITX builds, offering smaller dimensions while still providing adequate wattage. ATX PSUs are too large for many small cases. TFX is for slim cases, and EPS is for servers.

176
MCQeasy

A small office uses an inkjet printer that has not been used for two weeks. Now, the prints show missing colors and horizontal white lines. What should be done first to resolve this?

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

Running the printhead cleaning cycle is the correct first step because it is specifically designed to address clogged nozzles, a common problem for inkjet printers that have been idle. This maintenance function forces ink through the nozzles at high pressure or uses a physical wiper to clear dried ink and debris. Successfully clearing these blockages restores proper ink flow, resolving issues like missing colors or streaks in printouts.

Why this answer

Inkjet printers that sit idle often have dried ink in the printhead nozzles, causing missing colors or lines. Running the printer's built-in printhead cleaning cycle uses ink to flush the nozzles. If that fails, a manual cleaning or replacement may be needed.

177
MCQmedium

A user complains that their computer is running slowly, especially when opening multiple browser tabs. Task Manager shows the CPU is at 100% usage constantly, even when idle. Which of the following is the most likely cause?

A.Insufficient RAM
B.CPU thermal throttling
C.Background malware or a driver issue
D.Failing hard drive
AnswerC

Background malware often executes resource-intensive tasks such as cryptocurrency mining, data exfiltration, or denial-of-service attacks, which can consume nearly all available CPU cycles without user interaction. Similarly, a poorly written or corrupted device driver can enter an infinite loop or mismanage hardware interrupts, causing the kernel to constantly process erroneous requests. Both scenarios lead to persistent, unexplained 100% CPU utilization, making the system extremely slow and unresponsive.

Why this answer

Constant 100% CPU usage at idle suggests a background process is consuming resources, often due to malware or a misbehaving driver. This tests the ability to distinguish between hardware and software issues.

178
MCQmedium

A small office uses a network printer that supports both IPP and LPD printing. The printer is configured to use the default port for IPP. Which port must be open on the firewall for printing to work?

A.515
B.9100
C.631
D.80
AnswerC

Port 631 is the default port for IPP, used for network printing.

Why this answer

IPP (Internet Printing Protocol) uses TCP port 631 by default, as defined in RFC 2911. Since the printer is configured to use the default port for IPP, the firewall must allow inbound traffic on port 631 for printing to function.

Exam trap

A common trap in CompTIA A+ exams is confusing IPP (port 631) with LPD (port 515) or HTTP (port 80) since IPP is HTTP-based. Candidates may incorrectly choose port 515 assuming all network printing uses LPD, or port 80 thinking IPP uses standard HTTP.

How to eliminate wrong answers

Option A is wrong because port 515 is used by LPD (Line Printer Daemon), not IPP. Option B is wrong because port 9100 is used by raw printing (JetDirect/PJL), not IPP. Option D is wrong because port 80 is used by HTTP, not by IPP; while IPP is based on HTTP, it uses port 631 as its well-known port.

179
MCQeasy

A user reports that their desktop computer cannot connect to the internet, but other devices on the same network work fine. You check the patch cable from the wall jack to the PC and find it is a Cat5e cable. The PC's network adapter shows a link light, but no activity. What should you do first?

A.Replace the Cat5e cable with a Cat6 cable.
B.Check the IP address configuration on the PC to see if it has a valid address.
C.Reboot the switch in the wiring closet.
D.Replace the network adapter in the PC.
AnswerB

The presence of a link light indicates that the physical layer (Layer 1) connection between the PC's network adapter and the network device (e.g., switch) is established. However, the absence of network activity or connectivity suggests a problem at higher layers, most commonly the network layer (Layer 3). An invalid or missing IP address, whether due to a DHCP server failure, incorrect static configuration, or a duplicate IP, would prevent the PC from communicating on the network despite having a physical link. This is a critical first step in logical troubleshooting.

Why this answer

The link light indicates Layer 1 (physical) connectivity is present, so the cable and switch port are likely functional. The lack of activity suggests the PC is not successfully communicating at Layer 3, often due to an incorrect or missing IP address. Checking the IP configuration (e.g., with `ipconfig` or `ifconfig`) is the logical first step to verify if the PC has a valid address from DHCP or is set to an APIPA range (169.254.x.x), which would prevent internet access.

Exam trap

The trap here is that candidates see a link light and assume the physical layer is fully functional, but they overlook that a link light only confirms Layer 1 connectivity, not Layer 3 addressing—the CompTIA A+ exam often tests this distinction to see if you know to verify IP configuration before replacing hardware.

How to eliminate wrong answers

Option A is wrong because replacing a Cat5e cable with Cat6 does not address a Layer 3 issue; Cat5e is fully capable of supporting typical internet speeds (up to 1 Gbps) and the link light confirms the cable is working. Option C is wrong because rebooting the switch is unnecessary when other devices on the same network work fine, indicating the switch and upstream connectivity are operational. Option D is wrong because the network adapter shows a link light, proving the adapter is physically functional; replacing it would be premature without first checking software/configuration issues.

180
MCQmedium

A customer complains that their computer takes a long time to switch between open applications and frequently shows the 'low memory' warning. The system has 8 GB of DDR3 RAM. Task Manager shows that 7.5 GB is in use when only a few applications are open. What is the most likely cause?

A.The hard drive is failing and causing the system to use excessive virtual memory.
B.The system has a memory leak in one of the running applications.
C.The RAM modules are not installed in the correct slots for dual-channel mode.
D.The page file is set too small.
AnswerB

A memory leak occurs when an application fails to release memory that it no longer needs, leading to a gradual but continuous increase in its RAM consumption over time. This unreleased memory accumulates, eventually depleting the system's available physical RAM and forcing the operating system to rely heavily on the page file (virtual memory). This constant swapping results in severe performance degradation and 'low memory' warnings, even with few applications initially running, perfectly matching the described symptoms.

Why this answer

A memory leak occurs when an application does not release memory after it is done using it, causing RAM usage to steadily increase. This is a common software issue that can be identified by checking which process is consuming memory in Task Manager.

181
MCQeasy

A small office has a single router with four LAN ports. The network uses the 192.168.1.0/24 subnet, and the router's LAN IP is 192.168.1.1. A technician needs to add a new printer that must have a static IP address outside the DHCP range (192.168.1.100-192.168.1.200) but still be reachable by all devices. Which IP address should the technician assign to the printer?

A.192.168.1.150
B.192.168.1.50
C.10.0.0.50
D.192.168.2.50
AnswerB

The address 192.168.1.50 is an ideal choice for a static IP assignment as it resides within the same 192.168.1.0/24 subnet as the existing network. Crucially, it falls outside the common DHCP range (100-200), ensuring it will not be dynamically assigned to another device by the router. This prevents potential IP address conflicts, guaranteeing reliable and consistent network access for the statically configured device.

Why this answer

(192.168.1.50) is correct because it falls within the 192.168.1.0/24 subnet, is outside the DHCP range of 192.168.1.100–200, and is on the same broadcast domain as all devices, ensuring reachability without an IP conflict.

Exam trap

A common mistake is to think any IP in the same subnet works, ignoring the DHCP exclusion range, leading candidates to pick an address like 192.168.1.150 that is inside the pool.

How to eliminate wrong answers

Option A is wrong because 192.168.1.150 lies inside the DHCP range (100–200), risking a future IP conflict if the DHCP server assigns that address to another device. Option C is wrong because 10.0.0.50 is on a different subnet (10.0.0.0/24) and would require routing or a gateway change to be reachable from 192.168.1.x devices. Option D is wrong because 192.168.2.50 is on a different subnet (192.168.2.0/24) and is not directly reachable without a router interface configured on that subnet.

182
MCQmedium

A customer is moving into a new apartment building that has a fiber optic terminal in the basement. They want the fastest possible internet. What equipment will the technician need to install inside the apartment to complete the connection?

A.A cable modem
B.A DSL modem
C.An Optical Network Terminal (ONT)
D.A satellite modem
AnswerC

An Optical Network Terminal (ONT) is the correct device for fiber optic internet service, as it serves as the demarcation point for the fiber connection within the customer's premises. The ONT converts the incoming optical signals, transmitted via fiber optic cable, into electrical signals, typically Ethernet, that can be utilized by standard networking equipment like a Wi-Fi router. This conversion is essential for connecting the fiber network to the customer's local area network.

Why this answer

Fiber optic internet requires an Optical Network Terminal (ONT) to convert the optical signal from the fiber line into electrical signals that standard Ethernet equipment can use. The ONT is typically installed inside the customer's premises and connects to the fiber terminal in the basement via a fiber patch cable, providing the fastest possible internet speeds.

Exam trap

The trap here is that candidates may confuse the ONT with a cable modem or DSL modem because all three are 'modems' that connect to a service provider, but only the ONT is specific to fiber optic technology.

How to eliminate wrong answers

Option A is wrong because a cable modem is used for coaxial cable-based internet (e.g., DOCSIS), not for fiber optic connections. Option B is wrong because a DSL modem is designed for telephone line-based DSL (e.g., ADSL, VDSL), which cannot handle fiber optic signals. Option D is wrong because a satellite modem is used for satellite internet, which involves radio frequency signals to and from a satellite, not fiber optic cabling.

183
MCQmedium

A user in a law office reports that their laser printer prints documents with faint text and light images. The toner cartridge is new, and the printer has sufficient toner. Which component should you inspect or replace first?

A.Transfer roller
B.Fuser assembly
C.Drum unit
D.Pickup rollers
AnswerC

The drum unit, or photoconductive drum, is a core component in the laser printing process, responsible for attracting toner. It receives an electrostatic charge, which is then selectively discharged by the laser to form a latent image. Toner particles are attracted to these charged areas. A worn drum loses its ability to hold a strong electrostatic charge, preventing it from attracting sufficient toner, which directly results in uniformly faint or light prints across the entire page.

Why this answer

Faint print with a new toner cartridge often points to a worn or damaged drum. The drum is part of the toner cartridge or a separate unit, and if it is worn, it cannot hold a proper charge, resulting in light output. Replacing the drum or the entire cartridge usually solves the problem.

184
MCQhard

A company is migrating its on-premises database to a cloud PaaS solution. The database currently contains sensitive customer information. Which of the following is the most important security consideration for the migration?

A.Ensuring the PaaS provider has physical security at their data center
B.Configuring encryption for data at rest and in transit
C.Setting up a VPN between the on-premises network and the cloud
D.Verifying that the provider uses a specific hypervisor
AnswerB

Configuring encryption for data at rest ensures that if the cloud storage is ever compromised, the stored database contents remain unreadable without the proper decryption keys. Simultaneously, encrypting data in transit protects the information as it moves across networks during the migration process, preventing unauthorized access or interception. This dual-layer encryption is the most effective method for safeguarding sensitive data throughout its lifecycle in a cloud environment.

Why this answer

When moving sensitive data to the cloud, encryption at rest and in transit is critical to protect against unauthorized access. While access controls and compliance are important, encryption is a fundamental requirement. The shared responsibility model means the provider secures the infrastructure, but the customer must secure the data.

185
MCQhard

A user reports that their tablet's screen is completely black but the device vibrates when powered on. You have already tried a forced restart and checked for physical damage. What is the most likely hardware cause?

A.The battery is completely drained.
B.The LCD panel or display ribbon cable is faulty.
C.The digitizer is cracked.
D.The OS is corrupted.
AnswerB

When a tablet vibrates upon power-on but displays a completely black screen, it strongly suggests that the device's internal components, such as the motherboard and CPU, are functioning correctly and initiating the boot sequence. However, the absence of any visual output points directly to a failure within the display subsystem itself. This could be due to a damaged LCD panel, which is responsible for generating the image, or a disconnected/faulty display ribbon cable that transmits video signals from the mainboard to the screen.

Why this answer

The device vibrating on power-on indicates the system board, processor, and power management are functioning, but the display subsystem is not. Since a forced restart and physical damage inspection have been ruled out, the most likely hardware cause is a faulty LCD panel or a damaged display ribbon cable connecting the mainboard to the screen. This explains why the device is operational (vibration) yet the screen remains black.

Exam trap

CompTIA A+ often tests the distinction between the digitizer (touch input) and the LCD panel (display output); the trap here is that candidates confuse a cracked digitizer with a black screen, but a cracked digitizer does not prevent the LCD from showing an image.

How to eliminate wrong answers

Option A is wrong because a completely drained battery would not allow the device to vibrate on power-on; the vibration motor requires sufficient battery charge to activate. Option C is wrong because a cracked digitizer (touch layer) would typically cause touch input issues or visible cracks, not a completely black screen; the LCD panel behind it would still display an image. Option D is wrong because a corrupted OS would usually show a boot loop, logo stuck, or error messages on the screen, not a completely black screen with a successful vibration indicating the OS has loaded.

186
MCQhard

A user reports that their USB 3.0 external SSD is only achieving USB 2.0 speeds when connected to a front panel port. The technician checks the motherboard and finds the front panel header is connected to a USB 3.0 header. Which of the following is the most likely cause of the slow speed?

A.The SSD is formatted with FAT32
B.The front panel USB cable is damaged or not fully seated
C.The motherboard BIOS needs updating
D.The SSD is connected via a USB 2.0 hub
AnswerB

A damaged or improperly seated front panel USB cable is a very common cause for a USB 3.0 device to operate at slower USB 2.0 speeds. USB 3.0 SuperSpeed requires additional, high-speed differential data pairs that are highly sensitive to signal integrity. If these delicate lines are compromised by physical damage or a loose connection, the host and device will negotiate down to the more robust, slower USB 2.0 protocol to maintain a stable, albeit reduced, connection.

Why this answer

A damaged or poorly connected front panel USB cable can cause the port to fall back to USB 2.0 speeds. The motherboard header is correct, so the issue is likely with the cable or connection. This tests advanced troubleshooting of USB 3.0 connectivity.

187
MCQmedium

A user connects a 4K monitor to their laptop using a USB-C port. The monitor is detected, but the resolution is stuck at 1920x1080. The laptop supports 4K output via USB-C. What is the most likely reason?

A.The monitor's HDMI port is defective
B.The USB-C cable does not support DisplayPort Alt Mode
C.The laptop's graphics driver is outdated
D.The monitor's refresh rate is set too high
AnswerB

USB-C is a versatile connector, but not all USB-C cables are created equal or support all its optional modes. DisplayPort Alternate Mode (Alt Mode) is a critical feature that allows a USB-C port to transmit DisplayPort video signals, which are essential for high-resolution output like 4K. Without a cable specifically designed and wired to support DisplayPort Alt Mode, the necessary high bandwidth for 4K video cannot be transmitted, forcing the display to operate at a lower, more basic resolution that requires less data throughput.

Why this answer

The most likely reason is that the USB-C cable does not support DisplayPort Alt Mode. For a USB-C port to output a 4K video signal, the cable must be capable of carrying DisplayPort signals alongside USB data. If the cable is a standard USB 2.0 or 3.x cable without Alt Mode support, the system will fall back to a lower resolution like 1920×1080, even if the laptop and monitor both support 4K.

Exam trap

CompTIA often tests the misconception that any USB-C cable can carry video, when in fact only cables explicitly supporting DisplayPort Alt Mode (or Thunderbolt 3/4) can deliver high-resolution video signals.

How to eliminate wrong answers

Option A is wrong because a defective HDMI port on the monitor would typically cause no display or intermittent signal, not a specific resolution cap at 1920×1080. Option C is wrong because an outdated graphics driver could cause resolution issues, but the laptop already supports 4K output via USB-C, and the monitor is detected, making a driver problem less likely than a cable limitation. Option D is wrong because setting the monitor's refresh rate too high would usually result in a blank screen or an 'out of range' error, not a forced lower resolution.

188
MCQmedium

A user reports that their laptop's external monitor connected via USB-C to HDMI adapter flickers intermittently. The adapter works fine with other devices. What is the most likely cause?

A.The HDMI cable is defective.
B.The USB-C port on the laptop has a loose connection.
C.The monitor's refresh rate is set too high for the adapter.
D.The laptop's graphics driver is outdated.
AnswerB

A loose connection within the laptop's USB-C port can intermittently disrupt the high-speed data lanes responsible for transmitting video signals. This physical instability causes the display signal to drop or become corrupted momentarily, leading to the observed flickering or temporary loss of the external monitor's image. Such intermittent behavior is a classic symptom of a compromised physical connection.

Why this answer

The adapter works fine with other devices, which isolates the problem to the laptop's USB-C port. A loose connection in the port can cause intermittent signal loss, leading to flickering. This is a common hardware issue with USB-C ports that support DisplayPort Alt Mode for video output.

Exam trap

The CompTIA A+ exam often tests the distinction between hardware and software issues by presenting a symptom that seems like a driver or cable problem, but the key clue is that the adapter works elsewhere, pointing to a port-level hardware fault.

How to eliminate wrong answers

Option A is wrong because the HDMI cable is not defective; the adapter works fine with other devices, so the cable is not the issue. Option C is wrong because if the monitor's refresh rate were too high for the adapter, the flickering would be persistent or the display would not work at all, not intermittent. Option D is wrong because an outdated graphics driver would typically cause consistent display issues or no output, not intermittent flickering that is isolated to a specific port.

189
MCQmedium

A technician is building a high-performance workstation for video editing. The user needs fast read/write speeds for large 4K video files and wants the OS and applications on the same drive. The motherboard has one M.2 slot (PCIe 4.0 x4) and four SATA III ports. Which storage configuration should the technician recommend?

A.Install one SATA III SSD for the OS and one SATA III HDD for video files.
B.Install one M.2 NVMe PCIe 4.0 SSD for both OS and video files.
C.Install two SATA III SSDs in a RAID 0 array for the OS and video files.
D.Install one M.2 SATA SSD for the OS and one SATA III HDD for video files.
AnswerB

A single high-capacity M.2 NVMe PCIe 4.0 SSD provides extremely fast read/write speeds (over 5,000 MB/s), ideal for 4K video editing. It uses the available M.2 slot and meets the user's need for fast performance.

Why this answer

This question tests understanding of NVMe versus SATA performance. For video editing, extremely fast sequential read/write speeds are critical. An M.2 NVMe PCIe 4.0 drive offers speeds up to 7,000 MB/s, far exceeding SATA SSDs (about 550 MB/s).

The correct answer is to use the M.2 slot for a single fast drive.

190
MCQhard

A user reports that their laptop's Bluetooth mouse stops working after the laptop wakes from sleep. The mouse works fine after a reboot. The technician suspects a driver issue. Which of the following steps should the technician take to resolve this without disrupting other Bluetooth devices?

A.Uninstall the mouse driver and reboot.
B.Disable and re-enable the Bluetooth adapter in Device Manager.
C.Change the mouse's Bluetooth pairing to a different channel.
D.Update the laptop's BIOS to the latest version.
AnswerB

Disabling and re-enabling the Bluetooth adapter in Device Manager performs a soft reset of the Bluetooth radio and its associated software stack. This action effectively power cycles the module and reinitializes its services, clearing any transient errors, hung states, or minor software glitches that might prevent proper communication, especially after the laptop wakes from sleep. It's a non-destructive and highly effective first troubleshooting step that often resolves connectivity issues without affecting other paired devices.

Why this answer

Disabling and re-enabling the Bluetooth adapter in Device Manager resets the Bluetooth stack without a full reboot, often restoring functionality after sleep. This tests advanced troubleshooting of Bluetooth power management issues.

191
MCQeasy

A user complains that their laptop's Wi-Fi connection is extremely slow and keeps dropping, but other devices on the same network work fine. The laptop is an older model running Windows 10. Which of the following should the technician try first?

A.Replace the laptop's Wi-Fi card
B.Update the Wi-Fi driver
C.Disable the firewall
D.Reset the router
AnswerB

Updating the Wi-Fi driver is a highly effective and often primary troubleshooting step for resolving various wireless connectivity issues, including slow speeds, intermittent disconnections, or complete inability to connect. Driver updates frequently include critical bug fixes, performance enhancements, and improved compatibility with operating system updates or new network standards. This ensures the Wi-Fi adapter communicates optimally with the operating system and the wireless network.

Why this answer

An outdated or corrupted Wi-Fi driver is a common cause of connectivity issues on older laptops. Updating the driver is a software-level fix that is quick and non-invasive, and it often resolves intermittent connectivity problems.

192
MCQmedium

A small business owner wants to use a smartphone as a point-of-sale (POS) terminal for credit card payments. They ask which accessory is essential for this setup. What should you recommend?

A.A portable Bluetooth speaker for transaction alerts.
B.A rugged case to protect the phone from drops.
C.A magnetic stripe reader that plugs into the headphone jack.
D.A high-capacity power bank for extended use.
AnswerC

A magnetic stripe reader that plugs into the headphone jack is a crucial peripheral for enabling a smartphone to function as a mobile Point of Sale (mPOS) system. This device allows the smartphone to read payment card data from traditional magnetic stripe cards, converting the analog audio signal from the reader into digital data for transaction processing. It directly facilitates the primary function of accepting card payments.

Why this answer

A magnetic stripe reader that plugs into the headphone jack is the essential accessory for using a smartphone as a POS terminal for credit card payments. This reader captures the magnetic stripe data from the card and transmits it to the smartphone via the analog audio interface, enabling the payment processing app to read the card information. Without this reader, the smartphone cannot physically read the magnetic stripe, which is the most common method for swiping credit cards at a POS.

Exam trap

The 220-1201 exam often tests the distinction between essential accessories for specific functions versus general-purpose accessories; the trap here is that candidates may choose a power bank or rugged case as 'essential' for business use, but the question specifically asks for the accessory required to enable credit card payments, which is the magnetic stripe reader.

How to eliminate wrong answers

Option A is wrong because a portable Bluetooth speaker is not required for POS functionality; transaction alerts can be handled by the smartphone's built-in speaker or vibration, and the speaker does not enable card reading. Option B is wrong because a rugged case protects the phone from physical damage but does not provide any capability to read credit card data, making it non-essential for POS operation. Option D is wrong because a high-capacity power bank extends battery life but is not essential for the core function of processing credit card payments; the POS can operate with the phone's existing battery for typical usage.

193
MCQeasy

After installing a second hard drive in a desktop PC, the system boots but the new drive does not appear in File Explorer. The drive is listed in Disk Management as 'Unknown' and 'Not Initialized'. What should the technician do first?

A.Replace the SATA cable.
B.Format the drive immediately.
C.Initialize the disk in Disk Management.
D.Update the motherboard chipset drivers.
AnswerC

Initializing the disk in Disk Management is the correct first step for a newly installed hard drive. This essential process writes a partition table, either Master Boot Record (MBR) or GUID Partition Table (GPT), to the disk. This partition table makes the drive logically recognizable to the operating system, allowing it to be subsequently partitioned into one or more volumes and then formatted with a file system for data storage.

Why this answer

This scenario tests initial steps for adding a new storage device. The drive must be initialized and partitioned before it can be used. The correct first step is to initialize the disk using a partition style like GPT or MBR.

194
MCQeasy

A user complains that their PC is running slowly and the fan is constantly running at high speed. Task Manager shows the CPU is consistently at 100% usage even when idle. Which of the following is the most likely cause?

A.The CPU is overheating due to dried thermal paste
B.A background process is consuming CPU cycles, such as a mining script or system update
C.The power supply is failing and cannot provide enough power
D.The CPU has been overclocked beyond its limits
AnswerB

A background process consuming CPU cycles is a direct and common cause for a PC running slowly with high CPU usage. Malicious software, such as a cryptomining script, or a legitimate but stuck or resource-intensive system update, can monopolize the CPU. This constant demand for processing power leaves insufficient resources for other applications, leading to overall system unresponsiveness, high temperatures, and continuous fan operation.

Why this answer

High CPU usage at idle is often due to background processes, such as malware or a runaway application. The constant high fan speed indicates the CPU is generating excess heat from this activity.

195
MCQmedium

A user reports that their PC randomly restarts during boot-up, sometimes before the Windows logo appears. They have already tried reseating the RAM. Which component should be tested next?

A.Replace the motherboard
B.Test the power supply unit
C.Reinstall the operating system
D.Check for BIOS updates
AnswerB

A failing power supply unit (PSU) is a very common cause of random system restarts, particularly during the boot process when components draw significant power. If the PSU cannot deliver stable and consistent voltage to the motherboard, CPU, RAM, and other peripherals, these components may momentarily lose power or receive incorrect voltage, triggering an immediate system shutdown or reboot to prevent damage. Testing the PSU with a dedicated power supply tester or by temporarily swapping it with a known-good unit is a critical initial diagnostic step.

Why this answer

Random restarts during early boot, especially before the OS loads, often point to a failing power supply. The PSU may not be providing stable voltages under the initial power draw of the system. Using a multimeter to test voltage outputs or swapping with a known-good PSU is the next step.

196
MCQmedium

A technician is tasked with selecting a CPU for a small form factor (SFF) office PC that must run quietly and efficiently. Which CPU characteristic is most important for this build?

A.Highest possible clock speed
B.Integrated GPU
C.Low thermal design power (TDP)
D.Support for overclocking
AnswerC

Selecting a CPU with a low Thermal Design Power (TDP) is paramount for a quiet small form factor (SFF) build because it directly correlates with reduced heat generation. Less heat means the CPU requires less aggressive cooling, enabling the use of smaller, quieter heatsinks, passive cooling solutions, or low-speed, low-noise fans. This approach is fundamental to achieving minimal acoustic output while ensuring stable and reliable operation within a confined space.

Why this answer

In SFF builds, heat dissipation is limited, so a CPU with low TDP generates less heat, allowing for smaller, quieter cooling solutions. This tests understanding of how TDP impacts system design and noise levels.

197
MCQhard

A company deploys several tablets for field technicians that need to connect to a private LTE network via a SIM card. One tablet connects to the network but has very slow data speeds. Other tablets in the same area work fine. What is the most likely cause?

A.The tablet's Wi-Fi is interfering with the LTE signal.
B.The tablet's SIM card is not fully inserted.
C.The tablet is using the wrong APN configuration.
D.The tablet's battery saver mode is enabled.
AnswerC

The Access Point Name (APN) defines the network path for all cellular data connections, specifying the gateway, security protocols, and other settings the device uses to connect to the internet or a private network. An incorrect APN configuration might still allow a connection, but it could route data through an unoptimized or restricted gateway, apply incorrect Quality of Service (QoS) settings, or even connect to a different network segment with limited bandwidth. This often results in consistently slow data speeds, high latency, or inability to access specific resources, rather than a complete loss of service.

Why this answer

The most likely cause is an incorrect APN configuration. The APN (Access Point Name) defines the gateway between the LTE network and the internet, including required authentication and IP settings. If the APN is wrong, the tablet may still attach to the LTE network but will experience severely degraded data throughput because the packet data protocol (PDP) context cannot establish a proper data session.

Exam trap

The 220-1201 exam often tests the misconception that a SIM card insertion issue or battery saver mode can cause slow data speeds, but the key differentiator is that the tablet is connected to the network—pointing to a configuration error like the APN rather than a hardware or power-saving issue.

How to eliminate wrong answers

Option A is wrong because Wi-Fi and LTE operate on different frequency bands (2.4/5 GHz vs. 700 MHz–2.6 GHz typically) and use separate radios; Wi-Fi interference does not degrade LTE data speeds. Option B is wrong because a SIM card that is not fully inserted would cause the tablet to fail to register on the network entirely, not just slow data speeds. Option D is wrong because battery saver mode primarily reduces background activity and screen brightness, but it does not throttle LTE data throughput or alter network configuration.

198
MCQmedium

A user reports that their iPad's Safari browser crashes immediately upon opening, but other apps work fine. They have already restarted the device. What should the technician do next?

A.Perform a factory reset on the iPad.
B.Update iOS to the latest version.
C.Clear Safari's history and website data in Settings.
D.Disable all Safari extensions.
AnswerC

Clearing Safari's history and website data in Settings is a highly effective and standard troubleshooting step for browser instability. This action removes potentially corrupted cached files, cookies, and browsing history that can interfere with Safari's normal operation and lead to crashes, allowing the browser to rebuild these data stores cleanly without affecting other applications or system settings.

Why this answer

Clearing Safari's history and website data removes corrupted cached files, cookies, or local storage data that can cause the browser to crash on launch. Since other apps work fine, the issue is isolated to Safari's stored data, not the entire system. This is the recommended first troubleshooting step for a single-app crash after a restart.

Exam trap

The 220-1201 exam often tests the principle of least invasive troubleshooting first, so the trap here is that candidates may jump to a factory reset (Option A) or an iOS update (Option B) instead of trying the simple, app-specific data clear that resolves the most common cause of a single-app crash.

How to eliminate wrong answers

Option A is wrong because performing a factory reset is a drastic, irreversible step that should only be attempted after all other software troubleshooting fails, and it would erase all user data unnecessarily for an app-specific issue. Option B is wrong because updating iOS is a broader system-level fix that addresses general bugs, but the problem is isolated to Safari's cached data; an update may not resolve corruption in existing website data and is not the next logical step after a restart. Option D is wrong because disabling all Safari extensions is a more targeted step that could help if an extension is causing the crash, but clearing history and website data is a simpler, less invasive first step that addresses the most common cause of browser crashes—corrupted cache or cookies.

199
MCQmedium

A customer complains that their computer takes a very long time to boot and sometimes shows a 'CMOS Checksum Error' before starting. What is the most likely hardware issue?

A.The hard drive is failing
B.The RAM module is faulty
C.The CMOS battery is depleted
D.The UEFI firmware is corrupted
AnswerC

The CMOS battery (often a CR2032 coin cell) provides continuous power to the Complementary Metal-Oxide-Semiconductor (CMOS) memory chip, which stores critical system configuration settings like date, time, boot order, and hardware parameters. When this battery is depleted, the CMOS memory loses power, causing these settings to revert to default or become corrupted. This frequently results in a "CMOS checksum error" message during boot, as the system detects an inconsistency in its stored configuration.

Why this answer

A CMOS checksum error indicates that the BIOS/UEFI settings are not being retained, often due to a failing or dead CMOS battery. This causes time/date resets and boot delays as the firmware re-detects hardware. This tests knowledge of common CMOS-related symptoms.

200
MCQmedium

A technician is troubleshooting a VoIP phone that cannot register with the SIP server. The phone has a valid IP address and can ping the server. Which port should be verified as open for SIP traffic?

A.Port 80
B.Port 443
C.Port 5060
D.Port 1720
AnswerC

Port 5060 is the default port for SIP traffic.

Why this answer

SIP (Session Initiation Protocol) uses UDP or TCP port 5060 by default for signaling between endpoints and the SIP server. Since the phone has a valid IP and can ping the server, the issue is likely a firewall blocking port 5060, preventing registration.

Exam trap

CompTIA often tests the distinction between SIP (port 5060) and other common protocols like HTTP (80), HTTPS (443), or H.323 (1720), expecting candidates to confuse VoIP signaling ports with web or video conferencing ports.

How to eliminate wrong answers

Option A is wrong because port 80 is used for HTTP web traffic, not SIP signaling. Option B is wrong because port 443 is used for HTTPS, which is not the default port for SIP registration. Option D is wrong because port 1720 is used for H.323 video conferencing, not SIP.

201
MCQhard

A technician is tasked with upgrading the RAM in a laptop that uses SO-DIMM modules. The laptop currently has 4 GB of RAM soldered on the motherboard and one empty SO-DIMM slot. The technician installs an 8 GB SO-DIMM, but the system only reports 8 GB total. What is the most likely reason?

A.The SO-DIMM module is incompatible with the laptop's chipset.
B.The soldered RAM is faulty and has been disabled.
C.The laptop's BIOS is configured to use only the SO-DIMM slot when populated.
D.The SO-DIMM is not seated properly in the slot.
AnswerC

Many laptop manufacturers design their BIOS/UEFI firmware to automatically disable or bypass the soldered onboard RAM when a SO-DIMM module is installed in the expansion slot. This configuration is often implemented to prevent potential compatibility issues, timing conflicts, or to simplify memory management, ensuring optimal performance by utilizing only the installed SO-DIMM's capacity. Consequently, the system only reports the memory from the SO-DIMM.

Why this answer

Some laptops with soldered RAM have a limitation where the SO-DIMM slot cannot be used simultaneously with the onboard memory, or the system may disable the onboard RAM when a module is installed. This is a design constraint, not a hardware failure.

202
MCQmedium

After replacing a motherboard, a technician finds that the PC will not power on at all. The power supply fan does not spin, and no LEDs light up. The PSU was working before the replacement. What is the most likely cause?

A.The power supply is dead
B.The CPU is not compatible with the new motherboard
C.The front panel power switch header is not connected correctly
D.The RAM is not seated properly
AnswerC

The front panel power switch header connects the physical power button on the computer case to the motherboard. When the power button is pressed, it momentarily completes a circuit on specific pins of this header, signaling the motherboard to initiate the power-on sequence for the power supply unit (PSU). If these small, often unlabeled, pins are incorrectly connected or not connected at all after a motherboard replacement, the electrical signal from the power button will not reach the motherboard, resulting in the system appearing completely dead with no fans or lights.

Why this answer

No power at all after a motherboard swap strongly suggests an electrical connection issue. The most common cause is that the front panel power switch header is not connected correctly to the motherboard, or the PSU is not properly connected to the motherboard.

203
MCQeasy

A customer reports that their wireless printer stops responding when the microwave is in use. The printer is connected via Wi-Fi to a dual-band router. Which troubleshooting step should the technician take first to resolve this issue?

A.Replace the printer with a wired model
B.Change the router’s 2.4 GHz channel
C.Connect the printer to the 5 GHz network
D.Update the printer firmware
AnswerC

Connecting the printer to the 5 GHz network is the most effective solution because the 5 GHz Wi-Fi band operates on a completely different frequency spectrum than microwave ovens. Microwave ovens emit electromagnetic radiation at approximately 2.45 GHz, directly interfering with the 2.4 GHz Wi-Fi band. Since the 5 GHz band utilizes frequencies ranging from 5.150 to 5.825 GHz, it is entirely unaffected by the emissions from a microwave oven, ensuring a stable and uninterrupted connection for the printer.

Why this answer

The microwave oven operates in the 2.4 GHz ISM band, generating broadband interference that disrupts Wi-Fi communication on that frequency. Connecting the printer to the 5 GHz network avoids this interference entirely because the 5 GHz band is not affected by microwave emissions, providing a clean channel for the printer.

Exam trap

The trap here is that candidates assume changing the 2.4 GHz channel (Option B) will solve the interference, but they overlook that microwave interference is broadband and affects all 2.4 GHz channels, making frequency migration to 5 GHz the only effective first step.

How to eliminate wrong answers

Option A is wrong because replacing the printer with a wired model is an unnecessary and costly solution; the issue is interference, not a hardware defect, and can be resolved by moving the printer to a non-interfering frequency. Option B is wrong because changing the 2.4 GHz channel only shifts the operating frequency within the same band, but microwave interference is broadband and typically affects all 2.4 GHz channels (especially channels 1–11), so the problem will persist regardless of the channel selected. Option D is wrong because updating the printer firmware addresses software bugs or compatibility issues, not physical-layer interference from a microwave; the printer's firmware cannot mitigate external RF noise in the 2.4 GHz band.

204
MCQmedium

A network administrator notices that a managed switch is not reporting its status to the central monitoring system. The monitoring system uses a protocol that collects device information such as CPU load and interface errors. Which protocol is most likely not configured on the switch?

A.SNMP
B.SSH
C.HTTP
D.ICMP
AnswerA

SNMP is the standard protocol for collecting device statistics and status information from network devices.

Why this answer

SNMP (Simple Network Management Protocol) is the standard protocol used by network monitoring systems to collect device information such as CPU load, interface errors, and uptime. If the managed switch is not reporting to the central monitoring system, SNMP is most likely not configured or its community strings are misconfigured, preventing the monitoring server from polling the switch.

Exam trap

A common pitfall is confusing ICMP (used for ping) with SNMP (used for management data collection).

How to eliminate wrong answers

Option B is wrong because SSH (Secure Shell) is used for secure remote administration and command-line access, not for collecting device statistics like CPU load or interface errors. Option C is wrong because HTTP (Hypertext Transfer Protocol) is used for web-based management interfaces, not for standardized device monitoring and data collection. Option D is wrong because ICMP (Internet Control Message Protocol) is used for basic connectivity testing (e.g., ping) and error reporting, not for polling structured management information from network devices.

205
MCQmedium

A company uses a cloud-based virtual desktop infrastructure (VDI) solution. Users report that logging in takes 5 minutes during peak hours. The IT team notices that the cloud provider's resource utilization is at 95%. Which action would best resolve this issue?

A.Migrate to a different cloud provider
B.Scale up the virtual machines by increasing CPU and RAM
C.Scale out by adding more virtual desktops
D.Disable automatic scaling
AnswerC

Scaling out by adding more virtual desktops distributes the load across additional VMs, reducing resource contention and login times during peak hours.

Why this answer

When a cloud provider's resource utilization is at 95%, the underlying physical infrastructure is saturated. Scaling up (vertical scaling) increases the VM's resources but does not alleviate the host-level bottleneck; the provider may not allow further scaling. Scaling out (horizontal scaling) adds more virtual desktop instances, distributing the load across additional VMs and reducing login times.

Migrating providers is disruptive, and disabling auto-scaling worsens performance.

206
MCQmedium

A customer wants to use a portable projector with their smartphone for impromptu presentations. The smartphone has a USB-C port that supports DisplayPort Alt Mode. Which accessory will enable this connection?

A.A USB-C to USB-A adapter
B.A USB-C to HDMI adapter
C.A Bluetooth audio receiver
D.A wireless HDMI dongle
AnswerB

Many modern devices with USB-C ports support DisplayPort Alternate Mode (Alt Mode) or HDMI Alt Mode, allowing them to output high-definition video and audio signals directly over the USB-C connection. A USB-C to HDMI adapter specifically converts these Alt Mode signals into a standard HDMI format. This enables seamless connection to an HDMI-compatible portable projector, providing both visual and auditory content for presentations or media consumption.

Why this answer

The smartphone's USB-C port supports DisplayPort Alt Mode, which allows it to output a video signal over the USB-C connection. A USB-C to HDMI adapter converts this native DisplayPort signal into HDMI, enabling the portable projector to receive the video input. This is the standard accessory for connecting a USB-C device with DisplayPort Alt Mode to an HDMI display.

Exam trap

CompTIA A+ often tests the misconception that any USB-C adapter works for video, but only those explicitly supporting DisplayPort Alt Mode or containing the necessary conversion chip will output video to HDMI.

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 DisplayPort Alt Mode video to a projector. Option C is wrong because a Bluetooth audio receiver handles only audio streaming, not video output, and is irrelevant for connecting to a projector. Option D is wrong because a wireless HDMI dongle requires a separate transmitter and receiver setup, and while it could work, it is not the direct wired accessory that enables the connection via the smartphone's USB-C DisplayPort Alt Mode; the question asks for the accessory that enables this connection, implying a direct cable solution.

207
MCQmedium

A technician is setting up a new wireless network for a small office. The office has three access points (APs) that should allow seamless roaming. The technician configures all APs with the same SSID and security settings. What additional configuration is necessary to prevent clients from staying connected to a weak signal?

A.Set each AP to a different channel to avoid interference
B.Enable WPA3 encryption on all APs
C.Configure the APs with different SSIDs for each AP
D.Adjust the minimum RSSI value on each AP
AnswerD

Adjusting the minimum Received Signal Strength Indicator (RSSI) value on each Access Point (AP) is a direct method to influence client roaming behavior. When a client's signal strength drops below the configured minimum RSSI threshold, the AP will actively disassociate or deauthenticate that client. This action effectively forces the client device to scan for and connect to another AP with a stronger, more acceptable signal, thereby promoting efficient and timely roaming within the wireless network.

Why this answer

Adjusting the minimum RSSI (Received Signal Strength Indicator) value on each AP forces clients to roam away from an AP when the signal drops below a configured threshold. This prevents sticky clients from holding onto a weak signal, which is essential for seamless roaming in a multi-AP environment with the same SSID.

Exam trap

The trap here is that candidates often confuse channel planning (Option A) with client roaming mechanisms, assuming that avoiding interference automatically solves sticky client issues, when in fact roaming requires signal-based triggers like minimum RSSI.

How to eliminate wrong answers

Option A is wrong because setting each AP to a different channel is a standard practice to avoid co-channel interference, but it does not address client roaming behavior or signal strength thresholds. Option B is wrong because enabling WPA3 encryption provides stronger security but has no effect on client roaming decisions or signal-based disconnection. Option C is wrong because configuring different SSIDs per AP would break seamless roaming; clients would see separate networks and would need to manually reconnect, defeating the purpose of a unified wireless network.

208
MCQeasy

A small office has intermittent network dropouts. A technician suspects electromagnetic interference (EMI) from nearby fluorescent lights affecting the unshielded twisted-pair (UTP) cables. Which tool can best confirm the presence of EMI on the cable?

A.Tone generator
B.Cable certifier
C.Ping
D.Wi-Fi analyzer
AnswerB

A cable certifier is a sophisticated diagnostic tool specifically engineered to perform comprehensive tests on network cabling, ensuring it meets TIA/ISO industry standards. It can precisely measure critical parameters such as signal attenuation, near-end crosstalk (NEXT), far-end crosstalk (FEXT), return loss, and, crucially, noise levels and external electromagnetic interference (EMI). By quantifying these factors, a certifier can definitively identify whether external sources like fluorescent lights or machinery are degrading signal integrity on UTP cables, leading to intermittent connectivity issues.

Why this answer

A cable certifier is the correct tool because it can measure crosstalk, return loss, and other electrical characteristics that reveal the presence of EMI on UTP cables. Unlike simple continuity testers, a certifier performs frequency-domain analysis (e.g., up to 500 MHz for Cat6a) to detect noise and interference that cause intermittent dropouts.

Exam trap

The CompTIA A+ exam often tests the distinction between tools that verify physical-layer compliance (certifier) versus tools that only indicate symptoms (ping) or operate on different media (Wi-Fi analyzer), leading candidates to mistakenly choose ping because it shows packet loss during dropouts.

How to eliminate wrong answers

Option A is wrong because a tone generator is used to trace and identify specific cables by injecting an audible signal, not to measure electromagnetic interference or noise on the cable. Option C is wrong because ping tests network connectivity and latency but cannot detect physical-layer issues like EMI; it only shows symptoms (packet loss) without identifying the root cause. Option D is wrong because a Wi-Fi analyzer monitors wireless spectrum (2.4/5 GHz) for RF interference, not conducted EMI on copper UTP cables, which is a different physical medium.

209
MCQhard

A technician is troubleshooting a network where users on one floor cannot communicate with users on another floor. Both floors are connected to the same switch via separate VLANs configured for security. What additional device is needed to allow communication between the VLANs?

A.A hub
B.A Layer 2 switch
C.A router or Layer 3 switch
D.A bridge
AnswerC

A router or a Layer 3 switch is essential for inter-VLAN routing because both devices operate at Layer 3 (the network layer) of the OSI model, understanding IP addresses and subnet masks. They can maintain routing tables and forward IP packets between different IP subnets, effectively connecting distinct VLANs. This capability allows devices in separate logical network segments to communicate seamlessly, enabling complex network designs and security policies.

Why this answer

VLANs segment a network into separate broadcast domains, and by default, they cannot communicate with each other. A Layer 3 device, such as a router or a Layer 3 switch, is required to route traffic between VLANs. A Layer 2 switch cannot perform routing.

The correct answer is a router or a Layer 3 switch.

210
MCQhard

A technician is installing new cabling for a security camera system that uses PoE. The cameras are located 120 meters from the switch. The technician has Cat6 cable available. What should the technician do to ensure reliable operation?

A.Use a higher category cable like Cat6a to extend the distance.
B.Install a PoE extender or a switch at the 100-meter mark.
C.Use a single-mode fiber optic cable instead.
D.The cable run is acceptable because Cat6 supports up to 150 meters.
AnswerB

Installing a Power over Ethernet (PoE) extender or a network switch at approximately the 100-meter mark is the correct solution for extending both data and power delivery beyond the standard Ethernet distance limit. A PoE extender functions as a repeater, regenerating the electrical signal for data and re-injecting power to the connected device, effectively allowing the cable run to continue for another 100 meters. A switch would similarly regenerate the data signal and can provide new PoE power, acting as an intermediate node.

Why this answer

This question tests knowledge of Ethernet distance limits and solutions. The correct answer is to use a PoE extender or a switch at the midpoint, as 120 meters exceeds the 100-meter limit for Ethernet, and PoE may also have voltage drop issues.

211
MCQeasy

A technician is upgrading a workstation from DDR3 to DDR4 memory. The motherboard currently has two DDR3 DIMM slots occupied. What must the technician verify before installing the new memory?

A.The CPU supports DDR4 memory
B.The motherboard has DDR4 DIMM slots
C.The power supply has a 4-pin connector for memory
D.The chipset supports dual-channel configuration
AnswerB

This is the correct answer because DDR4 memory modules are physically keyed differently from DDR3 modules, featuring a unique notch position and a higher pin count (288 pins for DDR4 versus 240 for DDR3). This physical and electrical incompatibility ensures that DDR4 modules can only be installed into motherboards specifically designed with DDR4 DIMM slots. Therefore, the presence of DDR4 slots on the motherboard is the fundamental prerequisite for upgrading from DDR3 to DDR4.

Why this answer

DDR3 and DDR4 have different notch positions and voltage requirements, so they are not interchangeable. The motherboard must physically support DDR4, which means it must have DDR4 DIMM slots. The CPU socket type and chipset are secondary; the key factor is the motherboard's memory generation support.

212
MCQeasy

A user reports that their cloud-based file synchronization service stopped updating files after a recent OS update. The technician verifies the service is running and the internet connection is active. What should the technician check next?

A.Reinstall the sync client application
B.Check the sync client's authentication status
C.Disable the firewall temporarily
D.Increase the storage quota on the cloud account
AnswerB

OS updates frequently clear cached credentials or invalidate existing authentication tokens due to security policy changes or system component resets. This often requires the cloud sync client to re-establish its secure connection to the cloud service. Verifying and re-entering credentials ensures the client can properly authenticate and resume file synchronization, making this the most direct and common solution for post-update sync issues.

Why this answer

Cloud file sync issues often stem from authentication problems, such as expired credentials or session tokens. Since the service is running and connectivity is fine, the most likely cause is that the user's login token expired and needs re-authentication. Checking the sync logs would reveal the authentication failure.

213
MCQhard

During a security audit, a technician discovers that an internal web server is responding on port 8080 instead of the standard HTTP port. What is the most likely reason for this configuration?

A.The server is running HTTPS on a non-standard port.
B.The server is configured as a web proxy or alternate HTTP server.
C.The server is running an FTP service.
D.The server is using a custom application protocol.
AnswerB

Port 8080 is a widely recognized alternative port for HTTP traffic, often employed when the standard HTTP port 80 is already in use, blocked by a firewall, or reserved for a different primary service. Web proxy servers frequently listen on port 8080 to intercept and forward web requests, and many development web servers or application servers also default to this port for their HTTP services. This makes it the most probable configuration for a server listening on 8080.

Why this answer

Port 8080 is commonly used as an alternate HTTP port, often for web proxy servers or secondary HTTP servers. This allows administrators to run a separate HTTP service without conflicting with the standard port 80, which is frequently used for caching proxies or development environments.

Exam trap

The trap here is that candidates often assume any non-standard port implies a custom protocol or security measure, but the A+ exam tests specific knowledge that port 8080 is the well-known alternate HTTP port, not a random or custom assignment.

How to eliminate wrong answers

Option A is wrong because HTTPS typically uses port 443, and while it can run on non-standard ports, port 8080 is not associated with HTTPS; the server would need a TLS certificate and port 443 is the standard. Option C is wrong because FTP services use ports 20 and 21, not port 8080. Option D is wrong because custom application protocols are not standardized on port 8080; port 8080 is specifically designated as an alternate HTTP port in the IANA service name registry.

214
MCQeasy

A user complains that their laptop's touchpad cursor jumps erratically while typing. They have cleaned the touchpad surface, but the issue persists. Which configuration change should you try first?

A.Increase the touchpad sensitivity in the operating system settings.
B.Update the touchpad driver from the manufacturer's website.
C.Enable the 'Ignore accidental touches' or 'PalmCheck' feature in the touchpad settings.
D.Disable the touchpad entirely and use an external mouse.
AnswerC

Features like 'Ignore accidental touches' or 'PalmCheck' are specifically engineered into touchpad software to prevent unintended cursor movements caused by a user's palm or wrist brushing against the touchpad during typing. These settings intelligently differentiate between intentional finger input and accidental contact, temporarily disabling or reducing sensitivity to non-finger input. Enabling this feature directly addresses the reported symptom, making it the most effective and appropriate first troubleshooting step.

Why this answer

Erratic cursor movement while typing is a classic sign of palm rejection not working correctly. The most common fix is to enable the 'disable touchpad while typing' feature in the touchpad settings. This prevents accidental input from the user's palms during typing.

215
MCQmedium

A technician is troubleshooting a network drop that was working yesterday but now has no link light. The cable run is 90 meters and uses Cat5e. The patch cables and switch ports have been tested and are fine. What is the most likely issue?

A.The cable is too long for Cat5e.
B.The cable has been cut or damaged.
C.The network switch is not powered on.
D.The cable is terminated with the wrong standard.
AnswerB

A sudden loss of link suggests a physical break. This could be from construction, rodents, or accidental damage.

Why this answer

Since the cable run is 90 meters (within the 100-meter maximum for Cat5e), the patch cables and switch ports are verified working, and the link light is absent, the most likely cause is physical damage to the cable—such as a cut, pinch, or break—that interrupts the electrical continuity required for link pulses. A damaged cable prevents the switch and NIC from establishing a link, even if all other components are functional.

Exam trap

A common misconception is that a cable run of 90 meters is too long for Cat5e, but the actual limit is 100 meters, so candidates must remember the exact maximum distance and not assume any run near that limit is automatically faulty.

How to eliminate wrong answers

Option A is wrong because Cat5e supports a maximum segment length of 100 meters (including patch cables), and 90 meters is well within that limit, so length is not the issue. Option C is wrong because the switch ports have been tested and are fine, which implies the switch is powered on and operational; a powered-off switch would not show link lights on any port. Option D is wrong because using the wrong termination standard (e.g., T568A vs.

T568B) would still allow a link if both ends use the same standard (straight-through) or if the device supports auto-MDIX; it would not cause a sudden loss of link from working yesterday to not working today.

216
MCQeasy

A customer reports their desktop PC is running extremely slow, especially when multiple applications are open. They mention they recently upgraded from Windows 10 to Windows 11. The system has 4 GB of RAM. What should you recommend as the most effective first step to improve performance?

A.Disable visual effects in Windows to reduce memory usage.
B.Upgrade the RAM to at least 8 GB.
C.Increase the size of the page file on the hard drive.
D.Reinstall Windows 10 to reduce system resource requirements.
AnswerB

Upgrading the RAM to at least 8 GB directly resolves the most common cause of a slow PC: insufficient physical memory. When a system lacks adequate RAM, it constantly resorts to using the slower hard drive (or SSD) as virtual memory, a process known as paging or swapping. Increasing RAM allows the operating system and applications to reside in much faster physical memory, significantly reducing disk I/O for memory management and dramatically improving overall system responsiveness and multitasking capabilities.

Why this answer

Windows 11 has a minimum requirement of 4 GB of RAM, but 8 GB is recommended for typical multitasking. Upgrading the RAM directly addresses the bottleneck caused by insufficient memory, which is the most likely cause of the slowdown with multiple applications.

217
MCQeasy

A customer reports that they cannot send emails from their desktop email client, but they can receive emails. The email server is running on the local network. Which port is most likely blocked on the firewall?

A.25
B.110
C.143
D.993
AnswerA

Port 25 is the standard, unencrypted port designated for the Simple Mail Transfer Protocol (SMTP), which is exclusively used for sending outgoing email messages between mail servers and from email clients to a mail server. If a firewall or network security device is blocking outbound traffic on port 25, an email client will be unable to establish a connection with the outgoing mail server, directly preventing the customer from sending emails. While port 587 (Submission) is now commonly used by clients for authenticated sending, port 25 remains critical for server-to-server email transfer.

Why this answer

Port 25 is the default SMTP port used for sending email. If the firewall blocks outbound or inbound traffic on port 25, the desktop email client cannot establish an SMTP connection to the local email server, preventing email transmission while still allowing reception via other protocols.

Exam trap

The trap here is that candidates may confuse port 110 (POP3) or 143 (IMAP) as being involved in sending email because they are commonly associated with email reception, but they are actually for receiving email.

How to eliminate wrong answers

Option B (110) is wrong because port 110 is POP3, used for receiving email, not sending. Option C (143) is wrong because port 143 is IMAP, also used for receiving email. Option D (993) is wrong because port 993 is IMAPS (IMAP over SSL), used for secure email retrieval, not sending.

218
MCQhard

A company uses a public cloud provider for compute resources. To reduce costs, they want to use unused capacity at a lower price but accept that the instance may be terminated with short notice. Which pricing model should they choose?

A.On-demand instance
B.Reserved instance
C.Spot instance
D.Dedicated host
AnswerC

Spot instances leverage unused cloud provider capacity, offering significantly reduced pricing compared to on-demand instances, often up to 90% savings. The trade-off is that these instances can be interrupted or terminated by the cloud provider with short notice (typically two minutes) if the capacity is needed elsewhere. This makes them perfectly suited for fault-tolerant applications, batch jobs, or flexible workloads that can handle interruptions and restart processes without significant impact.

Why this answer

This question tests knowledge of advanced cloud pricing models. A spot instance (or preemptible VM) uses unused cloud capacity at a steep discount but can be terminated when the provider needs the resources back. On-demand is full price, reserved is for long-term commitments, and dedicated hosts are for isolation, not cost savings with termination risk.

219
MCQmedium

A technician is troubleshooting a PC that randomly restarts under load. The CPU temperature is normal, but the system sometimes fails to POST with a 'CPU Overvoltage Error'. The motherboard is a few years old. What is the most likely cause?

A.The CPU is overheating due to a failing cooler
B.The power supply is delivering too much voltage
C.The motherboard VRM is failing
D.The BIOS needs to be updated to support the CPU
AnswerC

The Voltage Regulator Module (VRM) on the motherboard is responsible for converting the 12V input from the power supply into the precise, lower voltages required by the CPU. A failing VRM can become unstable, delivering incorrect or fluctuating voltages, including sudden spikes that exceed the CPU's safe operating limits. These overvoltage conditions trigger the CPU's or motherboard's built-in overvoltage protection, causing the system to randomly restart or shut down to prevent permanent damage to the CPU.

Why this answer

A 'CPU Overvoltage Error' typically indicates the motherboard's voltage regulation module (VRM) is failing or the BIOS is incorrectly applying voltage. Aging VRMs can become unstable, causing overvoltage protection to trigger. This is a motherboard hardware fault, not a CPU issue.

220
MCQmedium

A user reports that their laser printer is producing pages with a faint, ghost-like image of the previous page printed on the back of the current page. The printer has been in use for three years and has never had its maintenance kit replaced. What is the most likely cause of this issue?

A.The toner cartridge is low on toner.
B.The fuser unit is worn out and needs replacement.
C.The paper is too moist and causing toner to smear.
D.The printer driver is outdated and needs updating.
AnswerB

The fuser unit is responsible for permanently bonding the toner to the paper using heat and pressure. If the fuser's non-stick coating wears out or its heating elements become inefficient, residual toner may not be fully transferred and fused to the current page. Instead, some toner can remain on the fuser roller or pressure roller, subsequently transferring a faint, "ghosted" image of the previous print onto the following pages. This indicates a failure in the final stage of the printing process.

Why this answer

This describes a ghosting issue where a previous image appears on the next page, often caused by a worn-out fuser that fails to fully bond toner to the paper. The fuser is part of the maintenance kit, which should be replaced periodically. Other components like the toner cartridge or drum would cause different symptoms.

221
MCQhard

A user reports that their PC's USB 3.0 ports are only operating at USB 2.0 speeds. The device works fine on another computer. The motherboard has both USB 3.0 and USB 2.0 headers. What is the most likely cause?

A.The USB 3.0 controller driver is not installed
B.The USB cable is too long
C.The front panel USB 3.0 header is loose
D.The motherboard's USB 3.0 controller is faulty
AnswerA

A USB 3.0 controller requires specific drivers to enable its SuperSpeed capabilities, which utilize dedicated data lines and protocols. If these drivers are missing or corrupted, the operating system cannot properly initialize the USB 3.0 functionality. Consequently, the system will fall back to using the universally supported USB 2.0 data lines and a generic USB 2.0 compatible driver, allowing the device to function but only at the slower USB 2.0 (High-Speed) data transfer rates.

Why this answer

USB 3.0 ports require a dedicated controller and proper driver support. If the USB 3.0 driver is missing or the controller is disabled in BIOS, the ports will fall back to USB 2.0 speeds. This is a common issue after a fresh OS install or BIOS reset.

222
MCQeasy

A company wants to allow employees to securely access the corporate network from home using their laptops. Which network service should be deployed to provide encrypted remote access?

A.DHCP
B.DNS
C.VPN
D.Port forwarding
AnswerC

VPN establishes an encrypted connection over the internet, enabling secure remote access to the corporate network.

Why this answer

C is correct because a Virtual Private Network (VPN) creates an encrypted tunnel between the employee's laptop and the corporate network, typically using protocols such as IPsec or TLS. This ensures that all data transmitted over the public internet is confidential and integrity-protected, meeting the requirement for secure remote access.

Exam trap

CompTIA A+ often tests the misconception that port forwarding alone provides secure remote access, but candidates must remember that port forwarding lacks encryption and authentication, making it insecure for remote connectivity.

How to eliminate wrong answers

Option A is wrong because DHCP (Dynamic Host Configuration Protocol) is used to automatically assign IP addresses and other network configuration parameters to devices, not to provide encryption or secure remote access. Option B is wrong because DNS (Domain Name System) translates domain names to IP addresses and does not offer any encryption or secure tunneling capabilities. Option D is wrong because port forwarding is a NAT technique that maps external ports to internal IP addresses and ports; it does not encrypt traffic and exposes internal services directly to the internet without security.

223
MCQeasy

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

A.80 and 443
B.21 and 22
C.8080 and 8443
D.25 and 110
AnswerA

Port 80 (HTTP) and port 443 (HTTPS) are the standard ports for web traffic.

Why this answer

Standard HTTP traffic uses TCP port 80, and HTTPS (HTTP over TLS/SSL) uses TCP port 443. A web server must have both ports open in the firewall to serve unencrypted and encrypted web content respectively, as defined in RFC 7230 and RFC 2818.

Exam trap

CompTIA A+ exams often test the distinction between default well-known ports (80/443) and alternative ports (8080/8443) to catch candidates who confuse common development proxies with standard service ports.

How to eliminate wrong answers

Option B is wrong because ports 21 and 22 are used for FTP and SSH respectively, not for web traffic. Option C is wrong because ports 8080 and 8443 are alternative (non-standard) ports often used for proxy or development servers, not the default ports for HTTP and HTTPS. Option D is wrong because ports 25 and 110 are used for SMTP (email sending) and POP3 (email retrieval), not for web serving.

224
MCQhard

A user reports that their LCD monitor intermittently goes black for 2-3 seconds, then returns to normal. This happens randomly, not during any specific activity. The monitor's power LED stays green during the blackouts. Which component is most likely failing?

A.The video cable is loose
B.The graphics card is overheating
C.The monitor's backlight or inverter is failing
D.The monitor's power supply is failing
AnswerC

Intermittent failure of the monitor's backlight (either CCFL tubes or LED arrays) or its associated inverter circuit (for CCFLs) is a classic symptom for this issue. When the backlight fails, the screen goes dark because there is no illumination, but the LCD panel itself continues to receive video data and the monitor's internal power supply remains active. This scenario perfectly matches the description of the screen going dark while the monitor's power LED stays green, indicating the monitor is still powered on and receiving a signal.

Why this answer

A green power LED during blackouts indicates the monitor is receiving power and signal, but the backlight is failing. Intermittent backlight failure is a common issue in aging CCFL or LED-backlit LCDs, often due to failing capacitors or inverter. The correct answer identifies the backlight or inverter as the culprit, as the display logic is still working.

225
MCQhard

A technician is installing a power supply in a new build. The case has a bottom-mounted PSU bay with a dust filter. The technician notices that the PSU fan faces downward. Is this correct?

A.No, the fan should face upward to exhaust hot air from inside the case.
B.Yes, the fan should face downward to draw cool air from outside the case.
C.No, the PSU should be mounted fan-up to prevent dust from entering.
D.The orientation does not matter as long as the PSU is securely mounted.
AnswerB

The correct orientation for a bottom-mounted power supply is with the fan facing downward, drawing cool, ambient air directly from outside the case. This configuration utilizes the dedicated filtered intake vent typically found at the bottom of modern PC cases, ensuring the PSU receives a constant supply of fresh, clean air. This optimizes the PSU's cooling efficiency, maintains stable internal temperatures, and prevents it from contributing to the overall heat load inside the system, thereby enhancing component longevity and system stability.

Why this answer

In a bottom-mounted PSU configuration, the fan should face downward to draw cool air from outside the case through the dust filter. This improves cooling efficiency and reduces dust buildup inside the case.

Page 2

Page 3 of 13

Page 4