Courseiva

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

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

Page 9

Page 10 of 13

Page 11
676
MCQhard

During a motherboard replacement, you install the new board and connect all cables. When you power on, the system beeps continuously (long beeps). The CPU fan spins, but there is no display. What is the most likely cause?

A.The CPU is not compatible with the new motherboard
B.The RAM is not seated correctly or is faulty
C.The power supply is underpowered
D.The motherboard is shorting against the case
AnswerB

Continuous long beeps are a widely recognized POST (Power-On Self-Test) error code across many BIOS/UEFI manufacturers, specifically indicating a problem with the system's Random Access Memory (RAM). This typically means the RAM modules are either not fully seated in their DIMM slots, preventing proper electrical contact, or the modules themselves are faulty and cannot be initialized by the motherboard. Reseating the RAM or testing with known good modules is the primary troubleshooting step for this specific beep code.

Why this answer

Continuous long beeps typically indicate a memory (RAM) issue. This could be due to improperly seated RAM, incompatible memory, or a faulty memory slot. The CPU fan spinning suggests power is reaching the board, but the POST process halts at memory initialization.

677
MCQhard

A technician is troubleshooting a hybrid cloud environment where an on-premises application needs to access a cloud-based database. The connection is intermittent and slow. The technician checks the local network and finds no issues. Which of the following is the most likely cause?

A.The cloud database is configured with the wrong DNS records
B.The on-premises firewall is blocking the database port
C.The internet connection between the sites has high latency or packet loss
D.The cloud provider is performing maintenance on the database server
AnswerC

High latency directly increases the time required for data packets to travel between the on-premises network and the cloud database, leading to noticeable slowdowns in application response. Packet loss further exacerbates this by forcing retransmissions, consuming additional bandwidth and time, which manifests as intermittent connection failures, timeouts, and overall degraded performance. These network issues are classic causes of intermittent connectivity problems in hybrid cloud environments.

Why this answer

In a hybrid cloud, latency and bandwidth issues often stem from the internet connection between the on-premises site and the cloud. Even if the local network is fine, the WAN link may be congested or have high latency. DNS or firewall issues would typically cause complete failures, not intermittent slowness.

678
MCQeasy

A customer reports that their Bluetooth keyboard intermittently disconnects from their tablet while typing. The tablet and keyboard are less than a meter apart, and no other Bluetooth devices are nearby. Which of the following is the most likely cause of the disconnection?

A.The tablet's Bluetooth adapter is defective.
B.The keyboard's battery is low.
C.The user's body is blocking the Bluetooth signal when typing.
D.There is interference from a nearby Wi-Fi network.
AnswerC

Bluetooth signals operate in the 2.4 GHz ISM band, a frequency range where radio waves are significantly absorbed by water and other organic materials, which are abundant in the human body. When a user's hands, arms, or torso are positioned directly between the Bluetooth keyboard's transmitter and the tablet's receiver during typing, the human body acts as an effective RF attenuator, weakening the signal below the receiver's threshold and causing intermittent disconnections.

Why this answer

The most likely cause is that the user's body is blocking the Bluetooth signal. Bluetooth operates in the 2.4 GHz ISM band, which is heavily absorbed by water in the human body. When typing, the user's hands and torso can create a significant attenuation path between the keyboard and tablet, especially if the tablet is placed behind the user or at an angle that places the body in the direct line of sight.

This intermittent physical obstruction explains the disconnection pattern without any other devices nearby.

Exam trap

The 220-1201 exam often tests the misconception that Bluetooth disconnections are always caused by interference or hardware failure, when in fact the human body's absorption of 2.4 GHz signals is a common and overlooked cause of intermittent connectivity.

How to eliminate wrong answers

Option A is wrong because a defective Bluetooth adapter would cause persistent or complete failure to connect, not intermittent disconnections only while typing. Option B is wrong because a low battery typically causes gradual performance degradation or failure to power on, not intermittent disconnects that correlate with typing posture. Option D is wrong because interference from a nearby Wi-Fi network would affect all Bluetooth devices in the area and would not be isolated to a specific typing motion; Wi-Fi and Bluetooth both use the 2.4 GHz band but adaptive frequency hopping (AFH) in Bluetooth mitigates most co-channel interference.

679
MCQmedium

A company's web server is accessible from the internal network but not from the internet. The server has a static IP of 192.168.1.10. The firewall is configured to allow HTTP and HTTPS traffic. What is the most likely missing configuration?

A.The server's default gateway is set to the firewall's LAN IP
B.The firewall's NAT is disabled
C.Port forwarding rules are not configured on the firewall
D.The server has a public IP address assigned
AnswerC

Port forwarding, also known as Destination NAT (DNAT) or inbound firewall rules, is absolutely critical for allowing external internet traffic to reach a specific internal server on a private network. When an external client attempts to connect to the public IP address of the firewall on a specific port (e.g., 80 for HTTP or 443 for HTTPS), the firewall must have a rule explicitly configured to translate that public IP and port to the private IP and port of the internal web server. Without these rules, the firewall, acting as a security barrier, will simply drop unsolicited incoming connection attempts, preventing external users from accessing the web server.

Why this answer

The server has a private IP (192.168.1.10), so for internet clients to reach it, the firewall must translate the public destination IP to the private server IP using port forwarding (a form of Destination NAT). Without port forwarding rules, the firewall will receive HTTP/HTTPS traffic on its public interface but not know which internal server to send it to, even though the firewall's ACL allows the traffic. Option C correctly identifies this missing configuration.

Exam trap

The trap here is that candidates often assume that simply allowing HTTP/HTTPS in the firewall's ACL is sufficient, forgetting that inbound traffic to a private IP requires a destination NAT (port forwarding) rule to map the public IP/port to the internal server.

How to eliminate wrong answers

Option A is wrong because the server's default gateway must be set to the firewall's LAN IP for the server to send replies back to the internet; if that were missing, internal clients might still reach the server, but internet replies would fail—however, the question states the server is accessible from the internal network, so the gateway is likely correct. Option B is wrong because NAT being disabled would prevent any translation of private addresses, but the core issue is the lack of a specific mapping (port forwarding) for inbound traffic; even with NAT enabled, without port forwarding, unsolicited inbound traffic to a private IP is not routed. Option D is wrong because the server has a private IP (192.168.1.10), and assigning a public IP directly to the server would be an alternative solution, but the question asks for the most likely missing configuration given the current setup—the server already has a static private IP, and the firewall is expected to perform NAT/port forwarding.

680
MCQhard

A virtual machine running a database server experiences frequent disk I/O bottlenecks. The host has multiple physical disks. Which configuration change would most effectively improve performance?

A.Increase the virtual disk size
B.Use a virtual disk on a network-attached storage (NAS)
C.Configure a pass-through disk for the VM
D.Enable disk compression on the virtual disk
AnswerC

Configuring a pass-through disk, also known as Raw Device Mapping (RDM) in some hypervisors, allows the virtual machine to directly access a physical disk or LUN on the host. This bypasses the hypervisor's virtualized I/O stack, significantly reducing latency and CPU overhead associated with I/O operations. Consequently, the VM achieves near-native disk performance, which is crucial for I/O-intensive applications like database servers experiencing frequent bottlenecks.

Why this answer

Pass-through disks give a VM direct access to a physical disk, bypassing the hypervisor's file system layer, reducing overhead and improving I/O performance for database workloads.

681
MCQeasy

A user reports that their smartphone battery drains quickly and the device feels warm to the touch, especially when using wireless charging. They are using a third-party wireless charger. What is the most likely cause of this issue?

A.The smartphone battery is defective and needs replacement.
B.The wireless charger is not properly matched to the device's charging standard, causing inefficient power transfer.
C.The device's operating system needs an update to support wireless charging.
D.The user is using a case that is too thick for wireless charging.
AnswerB

This is correct; mismatched charging standards lead to heat generation and slow charging, which can drain the battery faster.

Why this answer

Third-party wireless chargers may not fully comply with the Qi standard or may lack proper Foreign Object Detection (FOD). When the charger and device are mismatched, power transfer becomes inefficient, generating excess heat as wasted energy. This heat causes the battery to drain faster (due to thermal runaway in charging circuits) and makes the device feel warm.

Exam trap

The 220-1201 exam often tests the misconception that any third-party accessory is inherently safe or that heat always indicates a defective battery, when in reality mismatched charging standards are the primary cause of thermal issues in wireless charging scenarios.

How to eliminate wrong answers

Option A is wrong because a defective battery typically causes rapid drain even when not charging, and would not specifically correlate with warmth during wireless charging. Option C is wrong because OS updates do not enable or disable wireless charging hardware support; wireless charging is a hardware-level feature controlled by the charging IC and Qi protocol. Option D is wrong because a thick case would primarily reduce charging speed or prevent charging altogether, not cause significant heat generation and rapid battery drain specifically when using wireless charging.

682
MCQmedium

A technician is troubleshooting a network where users can access the internet but cannot connect to a specific internal application server by its hostname. Pinging the server's IP address works. The DNS server is configured correctly for external names. What is the most likely cause?

A.The DHCP server is out of IP addresses
B.The DNS server does not have an A record for the application server
C.NAT is misconfigured for the internal network
D.The proxy server is blocking the hostname
AnswerB

An A (Address) record maps a hostname to an IPv4 address. If the DNS server lacks an A record for the application server's hostname, client devices will be unable to resolve the server's name to its corresponding IP address. While the application server might be fully operational and reachable directly by its IP address, applications and users typically rely on hostnames for access, leading to a "server not found" error when attempting to connect via name. This scenario perfectly aligns with users being able to access the internet (implying general DNS functionality) but failing to reach a specific internal application by name.

Why this answer

Since users can access the internet and ping the server by IP, the network connectivity and external DNS resolution are working. The failure to resolve the internal server's hostname indicates that the DNS server lacks an A record for that specific hostname, preventing name-to-IP resolution for internal resources.

Exam trap

CompTIA often tests the distinction between connectivity issues (IP reachable) and name resolution issues (hostname unreachable) to trap candidates into misdiagnosing DNS problems as routing or NAT failures.

How to eliminate wrong answers

Option A is wrong because if the DHCP server were out of IP addresses, clients would fail to obtain an IP configuration and would not be able to access the internet or ping any IP. Option C is wrong because NAT is used for translating private IPs to public IPs for external access; internal-to-internal communication does not involve NAT, so misconfigured NAT would not affect hostname resolution to an internal server. Option D is wrong because a proxy server typically handles HTTP/HTTPS traffic and could block hostnames, but the question states users can access the internet, and pinging the server's IP works, indicating the issue is specifically with DNS resolution, not proxy filtering.

683
MCQeasy

A customer reports that their desktop PC emits a series of three long beeps and then nothing appears on the screen. The system was working fine yesterday. What is the most likely cause of this issue?

A.Faulty power supply unit
B.Loose or failed RAM module
C.Overheating CPU
D.Corrupted operating system files
AnswerB

Three long beeps are a widely recognized Power-On Self-Test (POST) error code, specifically indicating a problem with the system's Random Access Memory (RAM). During POST, the BIOS/UEFI performs initial hardware checks, and if it fails to detect or properly initialize the RAM modules, it will signal this critical error via a series of audible beeps. This could be due to a module being improperly seated, a faulty RAM stick, or an issue with the memory slot itself, preventing the system from loading the operating system.

Why this answer

Three long beeps during POST typically indicate a memory (RAM) failure. This is a common POST code for many BIOS manufacturers, and reseating or replacing the RAM modules is the first troubleshooting step. The beeps are a diagnostic signal from the motherboard that the system cannot proceed without functional memory.

684
MCQmedium

A technician is setting up a network for a university campus that spans several buildings across a 2-kilometer area. The network must support both wired and wireless connections for thousands of users. Which network type best describes this setup?

A.Wide Area Network (WAN)
B.Campus Area Network (CAN)
C.Personal Area Network (PAN)
D.Metropolitan Area Network (MAN)
AnswerB

A Campus Area Network (CAN) is specifically engineered to interconnect multiple Local Area Networks (LANs) within a limited geographical area, such as a university, corporate, or industrial campus. It typically spans a few kilometers, connecting various buildings and providing high-speed wired and wireless connectivity for a large number of users. This makes a CAN the ideal choice for setting up a network across a 2-kilometer campus, accommodating thousands of users.

Why this answer

A Campus Area Network (CAN) is specifically designed to interconnect multiple buildings within a limited geographic area, such as a university campus or corporate park, typically spanning up to a few kilometers. This setup requires high-speed backbone links (often fiber optic) to support thousands of users with both wired and wireless access, which aligns perfectly with the CAN definition.

Exam trap

The trap here is that candidates often confuse CAN with MAN because both involve multiple buildings, but the key distinction is the geographic scale: CAN is limited to a campus (typically <5 km), while MAN covers a city-wide area. Certification exams often test this by providing distance or scope clues like '2-kilometer area' to force the correct classification.

How to eliminate wrong answers

Option A is wrong because a Wide Area Network (WAN) covers large geographic areas (e.g., cities, countries) using leased lines or public infrastructure, which is excessive and unnecessary for a 2-kilometer campus. Option C is wrong because a Personal Area Network (PAN) is limited to a very short range (typically up to 10 meters) for connecting personal devices like Bluetooth headphones or smartphones, not a multi-building campus. Option D is wrong because a Metropolitan Area Network (MAN) spans a city or large metropolitan area (typically 5-50 km), which is larger than the 2-km campus described and often involves service provider connections rather than private campus cabling.

685
MCQmedium

A small office uses a single router with four switch ports. Users on port 4 cannot access the internet, but they can communicate with each other. Port 4's LED is solid green. What is the most likely cause?

A.Port 4 is administratively disabled.
B.The cable on port 4 is faulty.
C.Port 4 is assigned to a different VLAN without internet access.
D.The router's DHCP pool is exhausted.
AnswerC

This is the correct answer. If Port 4 is assigned to a different Virtual Local Area Network (VLAN) that lacks a configured default gateway or routing path to the internet, devices connected to it will be isolated from external networks. While local communication within that specific VLAN would still be possible, any attempt to reach resources outside its broadcast domain, such as the internet, would fail due to the absence of a proper routing mechanism.

Why this answer

This scenario tests understanding of VLANs and router configuration. Inter-VLAN routing is required for different VLANs to reach the internet. If port 4 is on a different VLAN without a route to the internet, users can talk locally but not externally.

686
MCQeasy

A small business wants to move its on-premises file server to the cloud to reduce hardware maintenance costs. They need full control over the operating system and applications running on the server. Which cloud service model should they choose?

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

Infrastructure as a Service (IaaS) offers fundamental computing resources over the internet, such as virtualized servers, storage, and networking components. This model provides the highest level of control to the user, allowing them to provision virtual machines, choose and install their own operating systems, configure storage, and deploy any applications they require. It effectively replaces on-premises hardware with virtualized equivalents, giving the business full administrative control over the OS and software stack.

Why this answer

This scenario requires the customer to manage the OS and applications, which is characteristic of IaaS. IaaS provides virtual machines where the user controls the OS and installed software, while the provider manages the physical hardware.

687
MCQhard

A network administrator needs to determine the exact model and firmware version of a switch located in a remote wiring closet without physically visiting the site. The switch is configured with an IP address on the management VLAN. Which tool can be used to query the switch's SNMP agent for this information?

A.Packet analyzer (e.g., Wireshark)
B.SNMP management tool
C.Port scanner (e.g., Nmap)
D.Wi-Fi analyzer
AnswerB

An SNMP management tool can send GET requests to the switch's SNMP agent to retrieve device information such as model and firmware version.

Why this answer

An SNMP management tool can query the switch's SNMP agent using GET requests to retrieve the exact model and firmware version from the system MIB (RFC 1213), specifically the sysDescr (1.3.6.1.2.1.1.1) and sysObjectID (1.3.6.1.2.1.1.2) OIDs. This allows remote, agent-based access without physical site visits, as the switch is reachable via its management VLAN IP address.

Exam trap

The exam often tests the distinction between passive monitoring tools (packet analyzers) and active management tools (SNMP managers), leading candidates to mistakenly choose Wireshark because they think it can 'query' a device, when in fact it only captures existing traffic.

How to eliminate wrong answers

Option A is wrong because a packet analyzer like Wireshark passively captures network traffic but cannot actively query an SNMP agent; it would only see SNMP responses if another tool initiated the query. Option C is wrong because a port scanner like Nmap can detect open ports (e.g., UDP 161 for SNMP) but cannot retrieve MIB object values like model or firmware version without an SNMP query engine. Option D is wrong because a Wi-Fi analyzer is designed to monitor wireless signal strength, channels, and interference, not to query wired switch management information via SNMP.

688
MCQeasy

A customer reports that their new SSD is not detected by the BIOS. The drive is properly connected to the SATA port and power supply. What is the most likely cause of this issue?

A.The SATA cable is faulty.
B.The SSD needs to be initialized in Disk Management.
C.The power supply unit is insufficient.
D.The SSD is incompatible with the motherboard.
AnswerA

A faulty SATA data cable is a very common cause for a storage drive, including an SSD, not being detected by the BIOS. Even if the drive is receiving power, a damaged or improperly seated data cable prevents the necessary communication between the SSD and the motherboard's SATA controller. Without this data pathway, the BIOS cannot enumerate the drive, making it appear as if no drive is connected at all, despite being physically present.

Why this answer

For a new SSD not detected by the BIOS despite proper connections, the most likely cause is a faulty SATA cable. The BIOS must detect the drive before the OS can see it; initialization in Disk Management is an OS-level step that requires the drive to already be recognized by the BIOS.

Exam trap

A common mistake is to assume that the drive not appearing in Windows means it needs initialization, but if the BIOS itself does not detect the drive, no OS tool can fix that.

689
MCQeasy

A customer reports that their external monitor connected via HDMI flickers intermittently. They have tried a different HDMI cable and a different monitor, but the issue persists. The laptop display works fine. Which component is most likely causing the problem?

A.The laptop's graphics driver
B.The HDMI cable
C.The external monitor
D.The laptop's HDMI port
AnswerD

Given that the laptop's internal display functions properly, and both the HDMI cable and the external monitor have been swapped out with known-good alternatives without resolving the issue, the laptop's HDMI output port becomes the most probable point of failure. A physical defect, bent pins, or an internal circuit board issue specific to that port could prevent it from transmitting video signals correctly, even if the GPU and its drivers are otherwise functional.

Why this answer

Since the issue persists after swapping both the HDMI cable and the external monitor, the problem is isolated to the laptop's HDMI port. A faulty or damaged HDMI port can cause intermittent signal loss due to poor physical contact, bent pins, or internal solder fractures, leading to flickering. The laptop's internal display works fine, ruling out the graphics driver as the primary cause.

Exam trap

The trap here is that candidates may incorrectly blame the graphics driver because they assume external display issues are always software-related, ignoring the physical integrity of the port. In CompTIA A+ troubleshooting, it's important to isolate the problem by swapping known-good components before concluding.

How to eliminate wrong answers

Option A is wrong because the laptop's internal display functions correctly, indicating the graphics driver is capable of rendering video without issues; a driver problem would typically affect both displays or cause system-wide artifacts. Option B is wrong because the customer already tried a different HDMI cable, and the flickering persisted, eliminating the cable as the variable. Option C is wrong because the customer tested a different external monitor and the issue remained, proving the monitor is not at fault.

690
MCQeasy

A user reports that their computer's clock is consistently off by several minutes, causing authentication failures with the domain. The network uses Active Directory. Which service should be checked first?

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

NTP synchronizes system clocks, preventing time-related authentication issues.

Why this answer

NTP (Network Time Protocol) is the correct service to check first because the symptom—a clock consistently off by several minutes causing authentication failures with an Active Directory domain—is a classic sign of time synchronization issues. Active Directory uses Kerberos for authentication, which requires the client and domain controller clocks to be within a default skew of 5 minutes (RFC 4120). If the time is off, Kerberos tickets are rejected, leading to authentication failures.

Exam trap

The trap here is that candidates often confuse time synchronization with DHCP or DNS, assuming those services handle all network configuration, but NTP is the root cause for Kerberos authentication failures due to time skew.

How to eliminate wrong answers

Option A is wrong because DHCP (Dynamic Host Configuration Protocol) assigns IP addresses, subnet masks, and other network configuration parameters, but it does not manage system time synchronization; while DHCP can provide an NTP server option (option 42), the core issue is the time sync service itself, not the address assignment. Option B is wrong because DNS (Domain Name System) resolves hostnames to IP addresses and is critical for domain discovery and service location, but it does not directly affect the system clock or Kerberos time skew requirements. Option D is wrong because RADIUS (Remote Authentication Dial-In User Service) is used for network access authentication (e.g., VPN, 802.1X), not for domain authentication within Active Directory, and it does not handle time synchronization.

691
MCQmedium

During a hardware installation, a technician needs to connect the front panel USB 3.0 ports of a new case to the motherboard. The motherboard has a 20-pin USB 3.0 header. Which cable from the case should be connected to this header?

A.A 9-pin USB 2.0 cable
B.A 4-pin power LED cable
C.A 10-pin audio cable
D.A 20-pin (19-pin) USB 3.0 cable
AnswerD

The 20-pin (often referred to as 19-pin due to a blocked keying pin) USB 3.0 cable is the correct and standard connector for interfacing front panel USB 3.0 ports with the motherboard. This cable provides the necessary SuperSpeed data lines (up to 5 Gbps) and power connections. Its specific physical design and pinout ensure proper electrical communication and mechanical fit with the motherboard's internal USB 3.0 header, enabling full functionality for connected USB 3.0 devices.

Why this answer

The USB 3.0 internal header is a 20-pin (or 19-pin) connector that carries data for up to two USB 3.0 ports. The case's USB 3.0 cable will have a matching connector. USB 2.0 headers are 9-pin, and the audio header is different.

The power LED is a separate 2-pin connector.

692
MCQmedium

A technician is setting up a dual-monitor configuration for a financial analyst who needs to see many columns of data side by side. The user wants the sharpest possible text and the highest pixel density. Which type of display panel should the technician recommend?

A.TN (Twisted Nematic) panel
B.IPS (In-Plane Switching) panel
C.VA (Vertical Alignment) panel
D.OLED (Organic Light Emitting Diode) panel
AnswerB

IPS panels provide excellent color accuracy, wide viewing angles, and consistent brightness, which are ideal for sharp text and data analysis.

Why this answer

IPS panels are the correct choice because they offer superior color accuracy, wide viewing angles, and high pixel density, which are essential for a financial analyst viewing many columns of data side by side. Unlike TN or VA panels, IPS technology maintains consistent brightness and color across the entire screen, ensuring sharp text without distortion when viewed from different angles. This makes IPS ideal for tasks requiring precise visual clarity and minimal color shift.

Exam trap

The trap here is that candidates may choose OLED for its high contrast and pixel density, overlooking its burn-in risk with static content, or choose TN for its fast response time, ignoring the critical need for viewing angle stability and text sharpness in multi-monitor setups.

How to eliminate wrong answers

Option A is wrong because TN panels have poor viewing angles and lower color accuracy, causing text to appear washed out or distorted when viewed off-center, which is unsuitable for side-by-side data analysis. Option C is wrong because VA panels, while offering better contrast than TN, suffer from slower response times and can exhibit color shifting at extreme angles, reducing text sharpness in multi-monitor setups. Option D is wrong because OLED panels, though offering high contrast and pixel density, are prone to burn-in and have a shorter lifespan when displaying static content like spreadsheets, making them less reliable for a financial analyst's prolonged use.

693
MCQeasy

A technician is installing a new VoIP phone for a user. The user's desk already has a Cat6 wall jack, but the phone requires both network connectivity and a separate power source. The technician has a limited number of power outlets nearby. What is the simplest solution?

A.Run a new power extension cord from the nearest outlet.
B.Use a Power over Ethernet (PoE) injector between the wall jack and the phone.
C.Replace the Cat6 cable with a USB-C cable for power.
D.Install a wireless bridge to eliminate the cable.
AnswerB

Using a Power over Ethernet (PoE) injector between the wall jack and the phone is the most appropriate solution. A PoE injector actively adds electrical power to the existing Ethernet cable, allowing the VoIP phone to receive both data and power over a single Cat6 cable. This eliminates the need for a separate power adapter at the phone's location, simplifying cabling, reducing clutter, and providing a clean, efficient power delivery method for the device.

Why this answer

This question tests knowledge of Power over Ethernet (PoE) as a cabling-related concept. The correct answer is to use a PoE switch or injector, which sends power over the Ethernet cable, eliminating the need for a separate power adapter.

694
MCQhard

A company's IT policy requires that all network traffic from the guest Wi-Fi be isolated from the internal corporate network. The guest network uses a separate SSID and VLAN. Which additional configuration is necessary to ensure complete isolation?

A.Enable DHCP snooping on the guest VLAN
B.Configure a router-on-a-stick with subinterfaces
C.Implement an ACL that denies traffic from the guest VLAN to the corporate VLAN
D.Set the guest network to use a different subnet mask
AnswerC

An Access Control List (ACL) is a set of rules configured on a router or Layer 3 switch that filters network traffic based on criteria such as source IP address, destination IP address, port number, and protocol. By implementing an ACL that explicitly denies all traffic originating from the guest VLAN's IP subnet and destined for the corporate VLAN's IP subnet, complete isolation is achieved. This ensures that guest devices cannot initiate communication with corporate resources, fulfilling the security policy.

Why this answer

Access Control Lists (ACLs) on the router or firewall can block traffic between VLANs. Even with separate VLANs, inter-VLAN routing must be explicitly denied to prevent guest devices from reaching the corporate network.

695
MCQmedium

A technician is replacing a cracked screen on a tablet. After removing the digitizer and LCD assembly, they notice the home button flex cable is torn. The tablet still has a physical home button. What should the technician do to ensure the repair is complete and the home button functions?

A.Solder the torn ends of the flex cable together.
B.Use electrical tape to hold the torn cable together.
C.Replace the home button flex cable with a new one.
D.Ignore the tear and reassemble the tablet.
AnswerC

The most reliable and professional repair involves replacing the damaged home button flex cable with an identical, new component. This ensures that all necessary electrical pathways are fully restored and that the mechanical integrity of the connection is sound, allowing the home button to regain its intended functionality without risk of intermittent issues, further damage, or compromised performance.

Why this answer

A torn flex cable cannot be reliably repaired by soldering or taping due to the fine pitch and multilayer construction of modern tablet flex cables. Replacing the entire home button flex cable assembly is the only method that restores the electrical continuity and mechanical integrity required for the physical home button to function properly.

Exam trap

CompTIA A+ often tests the misconception that a torn flex cable can be repaired with simple tools like solder or tape, when in fact the only proper solution is to replace the entire flex cable assembly.

How to eliminate wrong answers

Option A is wrong because soldering the torn ends of a flex cable is impractical; the traces are extremely thin, often embedded in multiple layers, and the heat from soldering can damage adjacent components or cause short circuits. Option B is wrong because electrical tape provides no electrical connection and will not bridge the broken traces, so the home button will remain non-functional. Option D is wrong because ignoring the tear and reassembling the tablet leaves the home button circuit open, meaning the button will not work and the repair is incomplete.

696
MCQhard

A technician is replacing the battery in a slim laptop where the battery is glued inside the chassis. After removing the bottom cover, the technician sees the battery is firmly attached with adhesive. What is the safest method to remove the battery without damaging the laptop?

A.Use a flathead screwdriver to pry the battery out forcefully.
B.Apply isopropyl alcohol around the battery edges to weaken the adhesive, then gently pry with a plastic spudger.
C.Heat the battery with a heat gun to soften the adhesive.
D.Use a suction cup to pull the battery straight up.
AnswerB

Applying isopropyl alcohol around the battery edges is the correct and safest method to weaken the adhesive without damaging the battery or surrounding components. Isopropyl alcohol effectively dissolves common electronic adhesives and evaporates quickly, leaving no residue. Following this, a plastic spudger provides the necessary leverage to gently pry the battery, preventing accidental punctures or short circuits that metal tools could cause.

Why this answer

Isopropyl alcohol (90% or higher) safely weakens the adhesive bond without damaging the battery or surrounding components. Using a plastic spudger to gently pry after applying alcohol minimizes the risk of puncturing the lithium-ion battery, which could cause a fire or chemical leak. This method is the industry-recommended approach for glued-in batteries in slim laptops.

Exam trap

The trap here is that candidates may think heat is safe because it works for other adhesives, but CompTIA tests the specific danger of thermal runaway in lithium-ion batteries, making heat a hazardous choice.

How to eliminate wrong answers

Option A is wrong because using a flathead screwdriver to forcefully pry the battery can puncture the lithium-ion cell, causing a short circuit, fire, or chemical leakage, and may also damage the motherboard or chassis. Option C is wrong because heating a lithium-ion battery with a heat gun can cause thermal runaway, leading to swelling, rupture, or explosion; batteries are heat-sensitive and should never be directly heated. Option D is wrong because a suction cup cannot generate enough force to overcome the adhesive bond without risking damage to the battery casing or internal components, and it provides no control over the separation angle.

697
MCQmedium

A technician is installing a new graphics card that requires additional power. The PSU has a 6+2 pin PCIe power connector. The graphics card has an 8-pin power input. How should the technician connect the power?

A.Connect only the 6-pin portion
B.Use a Molex to 8-pin adapter
C.Attach the 2-pin portion to the 6-pin to make an 8-pin connector
D.Connect a SATA power cable to the card
AnswerC

The 6+2 pin PCIe power connector is an industry-standard design specifically engineered to provide flexibility for graphics cards requiring either a 6-pin or an 8-pin power input. By attaching the detachable 2-pin portion to the 6-pin connector, it forms a complete 8-pin connector, ensuring the graphics card receives the precise voltage and amperage it needs for stable and optimal operation. This method utilizes the native power supply capabilities as intended.

Why this answer

The 6+2 pin PCIe connector is designed to be used as either a 6-pin or 8-pin by attaching the extra 2-pin section. This tests understanding of modular PSU connectors. Incorrect use of other connectors could damage the card.

698
MCQmedium

A user reports that a cloud-hosted application is running very slowly during peak hours. The application is hosted on an IaaS platform with a single virtual machine. Which of the following is the most likely cause?

A.The user's internet connection is saturated
B.The virtual machine is under-provisioned for the current workload
C.The cloud provider is experiencing a regional outage
D.The application's power supply is failing
AnswerB

Under-provisioning means the virtual machine (VM) lacks sufficient allocated resources, such as CPU cores, RAM, or I/O capacity, to handle the demands of the application during periods of high usage. When the workload increases significantly, the VM becomes resource-constrained, leading to processing delays, increased latency, and the observed application slowdowns and unresponsiveness during peak hours.

Why this answer

In IaaS, performance issues during peak hours often indicate that the virtual machine lacks sufficient resources (CPU, RAM) to handle increased load. Scaling up the VM or adding more instances can resolve this. Other factors like local internet or power are less likely to be the primary cause.

699
MCQhard

A network administrator is troubleshooting a connectivity issue between two servers. Server A has IP 192.168.10.25/25, and Server B has IP 192.168.10.200/25. Server A can ping its default gateway (192.168.10.1) but cannot ping Server B. What is the most likely cause?

A.Server A has a duplicate IP address.
B.The subnet mask is incorrect on one of the servers.
C.The servers are on different subnets and require a router to communicate.
D.The default gateway is misconfigured.
AnswerC

A /25 subnet mask (255.255.255.128) divides the 192.168.10.0/24 network into two subnets: 192.168.10.0/25 (hosts 1-126) and 192.168.10.128/25 (hosts 129-254). Server A's IP (192.168.10.25) falls within the first subnet, while Server B's IP (192.168.10.200) belongs to the second. Since they reside on different logical networks, a router is necessary to forward traffic between them, as direct layer 2 communication is not possible.

Why this answer

Server A (192.168.10.25/25) has a subnet mask of 255.255.255.128, placing it in the 192.168.10.0/25 subnet (range 0–127). Server B (192.168.10.200/25) is in the 192.168.10.128/25 subnet (range 128–255). These are different subnets, so Server A cannot reach Server B directly via Layer 2; a router (or Layer 3 switch) is required to forward traffic between them.

The fact that Server A can ping its default gateway (192.168.10.1) confirms its IP and mask are correctly configured for its own subnet.

Exam trap

The 220-1201 exam often tests the misconception that a /25 mask is simply a larger subnet that includes all addresses from .0 to .255, when in fact it creates two distinct subnets that require a router to communicate.

How to eliminate wrong answers

Option A is wrong because a duplicate IP address would cause intermittent connectivity or address conflict errors, not a consistent inability to ping Server B while still being able to ping the default gateway. Option B is wrong because both servers use the same /25 mask (255.255.255.128), so the mask is consistent; the issue is that the mask itself divides the /24 network into two subnets, separating the servers. Option D is wrong because Server A can successfully ping its default gateway (192.168.10.1), proving the gateway is reachable and correctly configured; the problem is that Server A has no route to Server B's subnet.

700
MCQeasy

During a network upgrade, a new switch is installed. After connecting all devices, one workstation cannot obtain an IP address via DHCP, while all other workstations on the same switch work fine. What is the first step to troubleshoot this issue?

A.Replace the network cable.
B.Check if the network cable is securely connected and the link lights are on.
C.Restart the DHCP service on the router.
D.Assign a static IP address to the workstation.
AnswerB

Verifying the physical connection and observing link lights is the foundational first step in network troubleshooting, aligning with the OSI model's Layer 1. A securely seated cable and active link lights on both the device and the switch port confirm basic physical connectivity and signal transmission. This quick check can immediately identify common issues like a loose cable, a disabled port, or a hardware fault, preventing unnecessary complex diagnostics.

Why this answer

When a single workstation fails to get an IP address but others succeed, the problem is likely with that workstation or its cable. Checking the physical connection is the quickest and easiest first step before moving to software or configuration checks.

701
MCQhard

A technician is configuring a new satellite internet connection for a rural home. After aligning the dish, the modem shows 'online' but the user cannot browse the web. What is the most likely cause?

A.The dish is not aligned properly.
B.The router's MTU setting is too high.
C.The modem's firmware is outdated.
D.The user's browser is incompatible.
AnswerB

Satellite internet connections often have a smaller Maximum Transmission Unit (MTU) path due to overhead from encapsulation and retransmission protocols. If the router's MTU is set to a standard Ethernet value like 1500 bytes, but the satellite path's effective MTU is lower (e.g., 1400 bytes), packets will be fragmented. Excessive fragmentation can lead to packet loss, retransmissions, and significantly degraded performance or complete failure for certain applications, even if the modem is online.

Why this answer

The modem shows 'online', indicating the satellite link is established, but the user cannot browse the web. This points to a Layer 3 or Layer 4 issue rather than a physical alignment problem. Satellite internet often uses a high MTU (e.g., 1500 bytes), but the link may have a lower effective MTU due to encapsulation overhead (e.g., PPPoE or VPN).

If the router's MTU is set too high, packets larger than the path MTU will be fragmented or dropped, causing web pages to fail to load while the modem remains online.

Exam trap

The 220-1201 exam often tests the misconception that an 'online' status guarantees full internet connectivity, when in reality it only confirms Layer 1 and Layer 2 synchronization, leaving higher-layer issues like MTU misconfiguration as the hidden culprit.

How to eliminate wrong answers

Option A is wrong because the modem shows 'online', which indicates the dish is aligned properly and the satellite signal is being received; misalignment would prevent the modem from reaching an online state. Option C is wrong because outdated modem firmware typically causes connectivity drops, slow speeds, or failure to sync, not a scenario where the modem shows online but web browsing fails. Option D is wrong because browser incompatibility is extremely rare and would not prevent all web browsing; it would manifest as rendering issues or specific site errors, not a complete inability to browse.

702
MCQhard

A technician is troubleshooting a color laser printer that prints documents with a yellow tint on all pages. The yellow toner cartridge is full, and the other colors are at normal levels. Which component is the most likely cause?

A.The fuser assembly is overheating.
B.The yellow toner cartridge's shutter is stuck open.
C.The printer's color calibration is incorrect.
D.The printer driver is set to grayscale.
AnswerB

If the yellow toner cartridge's shutter is stuck in the open position, it allows a continuous and uncontrolled flow of yellow toner onto the imaging drum. This constant deposition means that yellow toner will be picked up and transferred to the paper during every print cycle, regardless of the intended color composition. The result is a pervasive and uniform yellow tint across the entire page, as yellow is inadvertently added to all printed content.

Why this answer

A yellow tint across all pages suggests the yellow toner is being applied continuously. This could be due to a faulty yellow toner cartridge that leaks toner, or a stuck shutter. In some cases, the imaging drum for yellow may be damaged, but the cartridge itself is the first suspect.

703
MCQmedium

A user reports that their multifunction printer is producing prints with faint, streaky text. The printer uses a toner cartridge and has been in service for two years. The technician has already run a cleaning cycle. What should the technician check next?

A.Replace the fuser assembly
B.Check the toner cartridge level
C.Update the printer firmware
D.Inspect the transfer roller
AnswerB

Low toner levels directly lead to faint or streaky prints because there isn't enough toner powder available to uniformly adhere to the imaging drum and subsequently transfer to the paper. As the cartridge empties, the remaining toner may be unevenly distributed, causing areas of the print to appear significantly lighter or to exhibit vertical streaks where the developer roller cannot pick up sufficient toner.

Why this answer

This question tests troubleshooting of laser printer print quality issues. Faint, streaky text often indicates a low toner cartridge, especially after a cleaning cycle didn't help. The imaging drum or fuser could also be culprits, but checking toner level is the simplest next step.

704
MCQhard

A technician is called to a site where a large format plotter is producing prints with banding (horizontal lines of varying density). The plotter uses dye-sublimation ink. The technician has already cleaned the printhead and run a nozzle check, but the issue persists. What should the technician check next?

A.Replace the ink cartridges.
B.Check the media advance rollers for wear or slippage.
C.Update the printer driver.
D.Replace the fuser assembly.
AnswerB

Worn or slipping media advance rollers are a common mechanical cause of banding in printers. These rollers are responsible for precisely moving the paper through the printer in small, consistent increments between printhead passes. If they are worn or slipping, the paper's movement becomes inconsistent, leading to either overlapping or gapped print lines, which visually manifests as horizontal bands of varying density or color across the printed output.

Why this answer

Banding in dye-sublimation printers can be caused by inconsistent media advance, a failing printhead, or clogged ink lines. Since cleaning the printhead didn't help, the next step is to check the media advance mechanism, such as the rollers or encoder strip, which controls paper movement.

705
MCQhard

You are troubleshooting a network where users in one department cannot reach a critical server. You need to check if the server's IP address is reachable and measure the round-trip time. Which command-line tool provides this information?

A.ping
B.tracert
C.nslookup
D.netstat
AnswerA

The `ping` utility sends Internet Control Message Protocol (ICMP) Echo Request packets to a target host and listens for ICMP Echo Reply packets. This process effectively measures the round-trip time (RTT) for packets to reach the destination and return, thereby confirming basic IP-level connectivity and providing an initial assessment of network latency. It is the foundational tool for verifying if a remote device is alive and reachable on the network.

Why this answer

The `ping` command uses ICMP Echo Request and Echo Reply messages to test reachability of a target IP address and measures the round-trip time (RTT) in milliseconds. This directly matches the requirement to check if the server's IP address is reachable and to measure the RTT.

Exam trap

The trap here is that candidates often confuse tracert with ping, thinking tracert also provides reachability and RTT to the final destination, but tracert focuses on hop-by-hop path discovery and only shows RTT per hop, not a single end-to-end RTT measurement.

How to eliminate wrong answers

Option B (tracert) is wrong because it traces the route packets take to a destination by incrementing the TTL value, showing each hop's IP address and RTT, but it does not simply test reachability and RTT to the final destination in a single-shot manner like ping. Option C (nslookup) is wrong because it queries DNS servers to resolve domain names to IP addresses or vice versa, and does not test network-layer reachability or measure RTT. Option D (netstat) is wrong because it displays active network connections, routing tables, and interface statistics, but it does not send probe packets to test reachability of a remote IP address.

706
MCQeasy

A technician needs to boot a laptop from a USB drive to run a diagnostic tool. The USB is plugged in but the system skips it and boots from the internal SSD. Which UEFI setting is most likely preventing the USB boot?

A.Disable Secure Boot
B.Enable Fast Boot
C.Set SATA mode to RAID
D.Disable the TPM
AnswerA

Secure Boot is a UEFI firmware feature designed to enhance system security by preventing the loading of unauthorized operating systems or drivers during the boot process. It validates the digital signature of bootloaders and kernel modules against a database of trusted keys. When attempting to boot from a diagnostic USB drive or other external media that lacks a valid, trusted digital signature, Secure Boot will typically block the operation, necessitating its disablement to proceed.

Why this answer

If Secure Boot is enabled and the USB is not signed or UEFI-bootable, the system may ignore it. Alternatively, the boot order may not include USB. This tests understanding of boot security and order settings.

707
MCQmedium

A user reports that their PC powers on for a second then immediately shuts off. This repeats in a loop. What is the most likely hardware issue?

A.Defective CPU
B.Incorrectly installed motherboard standoffs causing a short
C.Overheated GPU
D.Corrupted BIOS
AnswerB

Incorrectly installed or misplaced motherboard standoffs can create an electrical short circuit between the motherboard's conductive traces and the metal computer case. This short can interfere with the power delivery system or critical data lines, triggering the power supply's short-circuit protection. This protection causes the system to immediately power off or enter a power-on/power-off loop to prevent permanent damage to components.

Why this answer

The power-on-then-off loop is a classic symptom of a short circuit or power issue, often caused by a loose standoff, improperly seated component, or a failing power supply. The most common cause is a short to ground from a motherboard standoff in the wrong location.

708
MCQhard

A technician is installing a new network in a school and must run cables through air handling plenums. What type of cable jacket is required for this installation?

A.PVC jacket
B.Plenum-rated jacket
C.Shielded jacket
D.Riser-rated jacket
AnswerB

A plenum-rated (CMP) jacket is specifically engineered with special fire-retardant materials, such as fluorinated polymers (e.g., FEP or PVDF), to meet stringent fire safety codes for installation in air-handling plenum spaces. These cables exhibit low-smoke production and low flame-spread characteristics when exposed to fire, preventing the rapid distribution of toxic fumes and fire throughout a building's ventilation system. This rating is crucial for occupant safety and compliance with building codes.

Why this answer

Plenum-rated jackets are required for cables installed in air handling plenums because they are made of low-smoke, low-flame materials (such as FEP or PFA) that do not emit toxic fumes or support combustion in the event of a fire. This complies with fire safety codes like the National Electrical Code (NEC) Article 725 and ensures that the air circulation system does not spread smoke or flames throughout the building.

Exam trap

The trap here is that candidates often confuse 'plenum-rated' with 'riser-rated' or assume that shielding (e.g., STP) provides fire protection, when in fact the jacket rating is solely about fire safety and smoke emission, not signal integrity or physical protection.

How to eliminate wrong answers

Option A is wrong because PVC (polyvinyl chloride) jackets produce dense, toxic smoke and can drip burning material when heated, making them unsafe for plenum spaces where air circulates. Option C is wrong because a shielded jacket refers to electromagnetic interference (EMI) protection (e.g., foil or braid shielding), not fire resistance; shielding does not address the fire code requirements for plenum installations. Option D is wrong because riser-rated jackets (CMR) are designed for vertical runs between floors and offer some fire resistance, but they do not meet the stricter low-smoke, low-flame standards required for plenum spaces.

709
MCQmedium

A company's network uses a router with a built-in 4-port switch. The IT manager wants to segment the network into two separate broadcast domains for security. What additional hardware is required?

A.A second router
B.A managed switch
C.A hub
D.A wireless access point
AnswerB

Correct. A managed switch allows configuration of VLANs, which logically separate broadcast domains on the same physical network, improving security.

Why this answer

A managed switch is required because it can be configured with VLANs (IEEE 802.1Q) to create multiple broadcast domains on a single physical switch. The built-in 4-port switch on the router cannot be segmented into separate broadcast domains without VLAN support, which only a managed switch provides.

Exam trap

The trap here is that candidates assume a router is always needed to create separate broadcast domains, but the CompTIA A+ exam tests that a managed switch with VLANs can do this at Layer 2 without additional routing hardware.

How to eliminate wrong answers

Option A is wrong because a second router would create separate IP subnets and broadcast domains, but it is overkill and not the simplest solution; a managed switch with VLANs can achieve the same goal without adding another routing device. Option C is wrong because a hub operates at Layer 1 and simply repeats all traffic to all ports, so it cannot segment broadcast domains at all. Option D is wrong because a wireless access point bridges wireless clients onto the same broadcast domain as the wired network, providing no segmentation.

710
MCQmedium

A network administrator is configuring a new firewall to allow remote employees to securely access internal resources. The requirement is to encrypt all traffic between the remote client and the internal network. Which protocol should be used?

A.SSL/TLS
B.IPsec
C.L2TP
D.HTTP
AnswerB

IPsec (Internet Protocol Security) is a robust suite of protocols operating at the network layer, specifically designed to secure IP communications by encrypting and authenticating each IP packet. It is the industry standard for creating secure VPN tunnels, supporting both site-to-site and remote access connections. A firewall commonly utilizes IPsec to establish secure, encrypted links to internal networks, ensuring data confidentiality and integrity across untrusted networks.

Why this answer

IPsec is the correct choice because it provides end-to-end encryption at the network layer (Layer 3), securing all IP traffic between a remote client and an internal network. It operates in tunnel mode to encapsulate the entire original IP packet, ensuring confidentiality, integrity, and authentication for remote access VPNs. SSL/TLS operates at the transport layer and is typically used for securing individual application sessions (e.g., HTTPS), not for encrypting all traffic from a remote client to an entire internal network.

Exam trap

A common misconception is that SSL/TLS is sufficient for full network-layer encryption, when in fact it only secures individual application sessions, whereas IPsec is the standard for encrypting all traffic between a remote client and an internal network.

How to eliminate wrong answers

Option A (SSL/TLS) is wrong because it secures only specific application-layer protocols (e.g., HTTPS, LDAPS) and does not provide network-layer encryption for all IP traffic; it is not designed for site-to-site or full-tunnel remote access VPNs. Option C (L2TP) is wrong because it is a tunneling protocol that does not include encryption by itself; it must be combined with IPsec (L2TP/IPsec) to provide confidentiality, and the question explicitly requires encryption. Option D (HTTP) is wrong because it is an unencrypted application-layer protocol used for web traffic and provides no security; it is the opposite of a secure remote access solution.

711
MCQmedium

During a network upgrade, a technician needs to connect a legacy printer that only has a USB port to the network. The printer is in a location without a nearby computer. Which device should the technician use to enable network printing?

A.USB hub
B.Wireless access point
C.External print server
D.Network switch
AnswerC

An external print server is a specialized hardware device specifically designed to connect a local printer, typically via a USB or parallel port, directly to a network. It features an Ethernet port for network connectivity and embedded firmware that manages print queues and protocols, allowing multiple network clients to send print jobs to the attached printer. This solution effectively transforms a non-network-ready printer into a shared network resource, making it accessible to all authorized users on the LAN without requiring a dedicated host computer.

Why this answer

A print server is designed to connect a USB printer to a network, allowing it to be shared without a dedicated computer. A USB hub would not provide network connectivity, and a wireless bridge could work but is less direct. The correct answer is an external print server.

712
MCQmedium

A user's smartphone can send and receive text messages but cannot access the internet over cellular data. Wi-Fi internet works fine. Which setting is most likely misconfigured?

A.The Wi-Fi hotspot is enabled.
B.The APN settings are incorrect.
C.Bluetooth is turned on.
D.The device is in roaming mode.
AnswerB

APN (Access Point Name) settings are critical configuration parameters that dictate how a mobile device connects to the internet via its cellular carrier's network. These settings specify the gateway and protocols required for data transmission. If the APN settings are incorrect, misconfigured, or missing, the device will be unable to establish a data connection, preventing internet access, while basic services like SMS and voice calls, which often use separate signaling channels, may continue to function normally.

Why this answer

The APN (Access Point Name) defines the gateway between the mobile network and the internet. If the APN settings are incorrect or missing, the device can still register on the cellular network for voice and SMS (which use the control plane) but cannot establish a data session (user plane) because the packet data network gateway cannot be reached. Wi-Fi internet works fine because it bypasses the cellular data path entirely.

Exam trap

The 220-1201 exam often tests the APN setting as the root cause for 'SMS works, no cellular data' because many candidates mistakenly think SMS and data use the same network path, but SMS uses the signaling channel (SS7/IMS) while data requires a separate PDP context through the APN.

How to eliminate wrong answers

Option A is wrong because enabling the Wi-Fi hotspot would share the device's cellular data connection, not block it; the symptom is that cellular data does not work at all, which is the opposite of a hotspot issue. Option C is wrong because Bluetooth is a short-range personal area network technology used for peripherals and file transfers, not for internet connectivity; turning Bluetooth on or off has no effect on cellular data access. Option D is wrong because roaming mode affects how the device connects to foreign networks when outside the home coverage area; if the device is not roaming (i.e., on its home network), this setting is irrelevant, and even when roaming, it would not prevent SMS while blocking data—roaming typically affects data, voice, and SMS together or not at all.

713
MCQmedium

A company is expanding its office to a new building 5 kilometers away and needs to connect the two LANs so employees can share files and access the same servers as if they were in one location. They want a dedicated, high-speed connection without using the public internet. Which network type should be implemented?

A.Local Area Network (LAN)
B.Wide Area Network (WAN)
C.Metropolitan Area Network (MAN)
D.Personal Area Network (PAN)
AnswerC

A Metropolitan Area Network (MAN) is specifically designed to interconnect multiple Local Area Networks (LANs) within a city or a large metropolitan area, making it ideal for connecting separate office buildings that are geographically dispersed but still within a reasonable urban range. These networks typically provide high-speed, dedicated connectivity over distances up to several tens of kilometers, perfectly suiting the requirement to connect two buildings 5 km apart with robust and efficient links. This architecture offers a balance between the limited scope of a LAN and the vastness of a WAN.

Why this answer

A Metropolitan Area Network (MAN) is designed to interconnect multiple LANs across a city or metropolitan region, typically up to 50 km, using dedicated fiber optic links such as Metro Ethernet or SONET/SDH. This provides the high-speed, private connection required without traversing the public internet, making it ideal for connecting two offices 5 km apart.

Exam trap

The 220-1201 exam often tests the distinction between MAN and WAN based on geographic scope; the trap here is that candidates see 'connecting two LANs' and immediately think WAN, ignoring that the 5 km distance fits the MAN definition, which is a specific exam objective for 220-1201.

How to eliminate wrong answers

Option A is wrong because a Local Area Network (LAN) is confined to a single building or campus (typically up to 100 meters with copper cabling) and cannot span 5 km between separate buildings. Option B is wrong because a Wide Area Network (WAN) is designed for long-distance connections across cities, countries, or continents, often using leased lines or MPLS, but it is overkill and not the most appropriate term for a metropolitan-scale link; the question specifies a 5 km distance, which falls under MAN scope. Option D is wrong because a Personal Area Network (PAN) covers only a few meters (e.g., Bluetooth or USB) and is entirely unsuitable for connecting two office LANs.

714
MCQmedium

A thermal printer used for shipping labels is producing faint, hard-to-read labels. The printer has plenty of thermal paper loaded. What is the most likely cause?

A.The paper is upside down
B.The printhead is dirty or worn
C.The printer driver is incorrect
D.The paper is expired
AnswerB

A dirty printhead accumulates dust, adhesive residue, or paper fibers, creating a barrier that obstructs efficient heat transfer from the printhead's heating elements to the thermal paper. Similarly, a worn printhead has abraded or damaged heating elements, reducing their ability to generate or transfer sufficient heat consistently. Both conditions directly impede the chemical reaction on the thermal paper, leading to insufficient darkening and producing faint, inconsistent, or incomplete labels.

Why this answer

Thermal printers rely on the printhead heating the paper. Faint output usually indicates a dirty or worn printhead. Cleaning the printhead with a thermal cleaning pen or alcohol swab often restores clarity.

If the printhead is worn, replacement may be needed.

715
MCQeasy

A user complains that their external USB hard drive is making a clicking sound and is no longer recognized by any computer. What is the most likely cause?

A.The USB cable is damaged.
B.The drive has suffered a logical failure.
C.The drive's enclosure is faulty.
D.The drive has experienced a mechanical failure.
AnswerD

Clicking sounds from a hard drive are a classic symptom of a severe mechanical failure within the drive's sealed unit. This often indicates issues like the read/write heads repeatedly attempting to find the service area or data tracks but failing, commonly referred to as a "head crash," or problems with the spindle motor that spins the platters. Such failures prevent proper data access and typically necessitate professional data recovery services or replacement of the drive.

Why this answer

Clicking sounds from a hard drive typically indicate a mechanical failure, such as a stuck read/write head or damaged platters. This is a classic sign of a failing drive, not a software or connection issue.

716
MCQmedium

A technician is troubleshooting a VoIP phone that cannot register with the call server. The phone has a valid IP address and can ping the call server by IP. Which protocol is most likely not functioning correctly?

A.SIP
B.RTP
C.DHCP
D.DNS
AnswerA

SIP (Session Initiation Protocol) is the crucial signaling protocol responsible for initiating, managing, and terminating VoIP calls. Its primary function in this context is to register the VoIP phone with the call server (often a SIP proxy or IP PBX), allowing the phone to announce its availability and receive incoming call information. If SIP traffic, typically on UDP/TCP ports 5060 or 5061, is blocked by a firewall, misconfigured on the phone, or the server address is incorrect, the phone cannot successfully register, preventing it from making or receiving any calls. This directly explains why the phone "cannot" function.

Why this answer

The phone has a valid IP address and can ping the call server by IP, which confirms that Layer 3 connectivity and DHCP are working. However, the phone cannot register with the call server, which requires the Session Initiation Protocol (SIP) to exchange registration messages (REGISTER request and 200 OK response). If SIP is misconfigured, blocked by a firewall, or the SIP proxy is unreachable, registration will fail even though basic IP connectivity exists.

Exam trap

A common pitfall on the CompTIA A+ exam is confusing Layer 3 reachability (ping) with application-layer registration (SIP). Candidates may incorrectly suspect DHCP or DNS when the real issue is a misconfigured or blocked SIP protocol.

How to eliminate wrong answers

Option B (RTP) is wrong because RTP is used for transporting actual voice media after a call is established, not for the registration process. Option C (DHCP) is wrong because the phone already has a valid IP address, indicating DHCP successfully provided an IP configuration. Option D (DNS) is wrong because the phone can ping the call server by IP address, so name resolution is not required for this test; DNS would only be needed if the phone were using a hostname to reach the server.

717
MCQmedium

A technician is installing a new thermal printer for a retail point-of-sale system. After connecting the printer and installing the driver, the printer prints garbled characters and random symbols. What is the most likely cause?

A.The thermal paper is loaded upside down
B.The printer driver is incorrect for the model
C.The printhead is dirty
D.The printer is out of paper
AnswerB

An incorrect printer driver acts as an incompatible translator between the operating system and the printer hardware. It sends control codes and data formatting instructions that the specific thermal printer model cannot properly interpret or execute. This miscommunication causes the printer to render characters, symbols, or even blank spaces in a seemingly random or "garbled" fashion, as it attempts to process commands it doesn't understand.

Why this answer

Garbled characters or random symbols often indicate a driver mismatch or incorrect printer language setting. Thermal printers typically use ESC/POS or similar commands. Installing the wrong driver or having the communication settings (baud rate, parity) misconfigured can cause the printer to misinterpret data.

718
MCQhard

A technician is called to a home where the customer reports that their cable internet works fine, but the TV service has pixelated channels. The technician suspects a signal issue. What is the most appropriate tool to measure the signal strength and quality on the coaxial line?

A.A tone generator and probe
B.A multimeter
C.A cable tester (signal level meter)
D.An optical time-domain reflectometer (OTDR)
AnswerC

A cable tester, specifically a signal level meter (SLM) or RF signal analyzer, is the correct tool for assessing the performance of coaxial cables. These devices are engineered to measure critical parameters such as signal strength (typically in dBmV), signal-to-noise ratio (SNR), modulation error ratio (MER), and bit error rate (BER). This allows a technician to accurately diagnose issues like weak signals, excessive noise, or signal degradation affecting television reception or internet connectivity.

Why this answer

A cable tester (signal level meter) is the correct tool because it measures both signal strength (in dBmV) and signal quality (SNR or MER) on a coaxial line, which directly diagnoses pixelation caused by poor signal levels or noise. The technician needs to verify that the RF signal from the cable provider meets the required thresholds (typically -10 to +10 dBmV for downstream) to ensure clear TV reception.

Exam trap

The 220-1201 exam often tests the distinction between tools used for RF coaxial signals versus fiber optics, leading candidates to confuse an OTDR (fiber) with a cable tester (coaxial) when the scenario clearly involves a cable TV service.

How to eliminate wrong answers

Option A is wrong because a tone generator and probe is used to trace and identify specific coaxial cables, not to measure signal strength or quality. Option B is wrong because a multimeter measures DC voltage, resistance, or continuity, but cannot measure RF signal levels or modulation quality on a coaxial line. Option D is wrong because an OTDR is designed to test fiber optic cables by measuring light loss and reflections, not coaxial RF signals.

719
MCQhard

A technician is setting up a small office network with a router, a switch, and a wireless access point. The router has only one LAN port. The technician needs to connect the switch and the WAP to the router, but the switch has no uplink port. Which hardware component should the technician use to connect both devices to the router?

A.Use a crossover cable to connect the router directly to the WAP.
B.Connect the router to the switch, then connect the WAP to the switch.
C.Use a hub between the router and the switch.
D.Configure the switch as a router to connect to the WAP.
AnswerB

Connecting the router to a switch, and then the WAP to the same switch, is the standard and most efficient method for expanding a small office network. The switch acts as a central distribution point, allowing multiple devices, including the WAP and other wired clients, to share the router's single LAN port. This configuration effectively expands the number of available network connections while maintaining proper network segmentation and efficient traffic management.

Why this answer

This question tests knowledge of network topology and the use of additional switches. Since the router has only one LAN port, a switch is needed to expand the number of available ports. The correct answer is to connect the router to the switch, and then connect the WAP to the switch.

The switch's ports are typically all the same, so no special uplink port is required (modern switches use Auto-MDIX).

720
MCQmedium

A user reports that their computer is running very slowly and they hear a repetitive clicking sound from the case. The technician checks the SMART status of the primary hard drive and sees a 'Reallocated Sectors Count' value that is critically high. What should the technician do next?

A.Run a disk defragmentation to improve performance.
B.Back up all important data immediately.
C.Replace the SATA cable and power connector.
D.Disable the paging file to reduce disk activity.
AnswerB

A high reallocated sectors count, reported by SMART (Self-Monitoring, Analysis, and Reporting Technology), is a critical indicator of physical degradation and impending hard drive failure. These sectors are areas of the disk that have become unreliable and have been replaced by spare sectors. Therefore, the immediate priority is to back up all important data to prevent permanent loss, as the drive's operational lifespan is severely compromised.

Why this answer

A high reallocated sectors count indicates the drive is failing and likely to suffer data loss. The priority is to back up critical data immediately, then replace the drive. Continuing to use the drive risks permanent data loss.

721
MCQhard

A technician is deploying tablets for use in a warehouse where workers wear gloves. The tablets need to be used for scanning barcodes and entering data. Which accessory is most critical for this environment?

A.A screen protector.
B.A Bluetooth keyboard.
C.A rugged case.
D.A capacitive stylus.
AnswerC

A rugged case is specifically engineered to provide superior physical protection for a tablet, crucial in environments prone to drops, impacts, and exposure to dust or moisture. These cases typically feature multi-layer construction with shock-absorbing materials, reinforced corners, and port covers to seal against ingress. This level of durability ensures the tablet can withstand the rigors of a warehouse, significantly extending its operational lifespan and reducing repair costs by safeguarding internal components and the display.

Why this answer

In a warehouse environment where workers wear gloves, the most critical accessory is a rugged case because it protects the tablet from drops, dust, and moisture common in industrial settings. While gloves prevent capacitive touchscreen use, a rugged case does not solve input issues but ensures device survival; however, the question asks for the most critical accessory for the environment, and without rugged protection, the tablet would fail quickly. The correct answer is C because it directly addresses the physical hazards of the warehouse, which are more fundamental than input method challenges.

Exam trap

CompTIA often tests the misconception that input method accessories (like a stylus or keyboard) are most critical in glove-wearing environments, but the exam emphasizes that device survival via rugged protection is the primary concern before usability can be considered.

How to eliminate wrong answers

Option A is wrong because a screen protector offers minimal protection against drops and impacts, and does not address the primary environmental hazards of a warehouse. Option B is wrong because a Bluetooth keyboard requires a flat surface and is impractical for mobile barcode scanning while standing or moving, and it does not solve the glove issue for direct touch input. Option D is wrong because a capacitive stylus requires a capacitive touchscreen and does not work with gloves unless the gloves are specifically designed for capacitive touch, which is not stated; moreover, a stylus is less efficient for rapid barcode scanning than a dedicated scanner.

722
MCQmedium

A user has a 27-inch 1440p monitor connected via DisplayPort. They report that text appears slightly blurry and images look less sharp than expected. The monitor's native resolution is set correctly in Windows. What should you check first?

A.Replace the DisplayPort cable with an HDMI cable.
B.Adjust the monitor's sharpness setting from the on-screen display (OSD) menu.
C.Enable and recalibrate ClearType in Windows.
D.Set the monitor to a lower resolution to see if text improves.
AnswerC

Enabling and recalibrating ClearType in Windows is the most effective solution for blurry text on an LCD monitor. ClearType is a Microsoft technology that uses subpixel rendering to smooth the edges of fonts, leveraging the individual red, green, and blue subpixels within each physical pixel to achieve finer detail than whole-pixel rendering allows. If ClearType is disabled or improperly calibrated for the specific display's pixel arrangement, text will appear noticeably jagged or blurry, especially at smaller font sizes.

Why this answer

Blurry text at the correct native resolution often means ClearType (Windows font smoothing) is disabled or misconfigured. ClearType improves text clarity on LCD monitors by sub-pixel rendering. Enabling or recalibrating ClearType in Control Panel typically resolves the issue.

723
MCQeasy

During a desktop build, you install a new M.2 NVMe SSD into the M.2 slot. When you power on the system, the BIOS does not detect the drive. The SSD is known to be working. What is the most likely motherboard-related cause?

A.The M.2 slot is SATA-only and the drive is NVMe
B.The CMOS battery needs replacement
C.The motherboard BIOS is corrupted
D.The CPU is not seated properly
AnswerA

M.2 slots are versatile but can be protocol-specific, supporting either SATA or NVMe (PCIe-based) communication. If a motherboard's M.2 slot is wired only for SATA, it lacks the necessary PCIe lanes and controller logic to interface with an NVMe drive. Consequently, an NVMe M.2 drive installed in a SATA-only M.2 slot will not be detected by the system BIOS or operating system, as the electrical and logical communication protocols are incompatible despite a potential physical fit.

Why this answer

M.2 slots can support either SATA, PCIe (NVMe), or both. If an M.2 slot is designed only for SATA M.2 drives, it will not provide the necessary PCIe interface for an NVMe drive, even if the drive physically fits. This fundamental incompatibility means the BIOS will not detect the NVMe drive.

Checking the motherboard manual for M.2 slot compatibility is crucial.

724
MCQmedium

A user reports that they cannot access a website hosted on a remote server. The technician finds that the firewall allows HTTP and HTTPS traffic, but the website uses a non-standard port. The user's browser shows 'connection refused'. Which tool can the technician use to verify if the remote port is open?

A.Ping
B.Telnet
C.Nslookup
D.Tracert
AnswerB

Telnet is a versatile command-line utility that can establish a raw Transmission Control Protocol (TCP) connection to a specified host and port number. By attempting to connect to a web server's IP address on its standard HTTP (port 80) or HTTPS (port 443) port, an administrator can directly verify if the server is actively listening for connections on that specific port. A successful connection, even if no data is subsequently exchanged, definitively indicates that the port is open and a service is running, thereby helping to isolate whether the problem lies with network connectivity to the port or a higher-level application issue.

Why this answer

Telnet can be used to test connectivity to a specific port (e.g., telnet example.com 8080). Ping uses ICMP, not TCP ports. Nslookup tests DNS resolution.

Tracert traces the route but does not test port status.

725
MCQhard

A technician is tasked with connecting a legacy parallel port printer to a modern motherboard that lacks a parallel port header. The motherboard has an LPT header (25-pin) but it is not populated with a bracket. What is the best way to add a parallel port?

A.Install a USB-to-parallel adapter
B.Use a PCIe parallel port expansion card
C.Purchase an LPT bracket that connects to the motherboard header
D.Solder wires directly to the motherboard's LPT header pins
AnswerC

Purchasing an LPT bracket that connects to the motherboard header is the most direct, cost-effective, and appropriate solution. This bracket simply provides the physical DB-25 parallel port connector, routing the signals from the motherboard's integrated LPT header to an available expansion slot opening on the computer case. It leverages existing motherboard capabilities without requiring additional drivers or consuming valuable expansion slots.

Why this answer

The LPT header on the motherboard provides the necessary signals for a parallel port. A bracket with a ribbon cable that connects to this header is the correct solution. A USB-to-parallel adapter would work but may have compatibility issues and is not the best use of the existing header.

A PCIe parallel card is an alternative but unnecessary if the header is present.

726
MCQeasy

A technician is setting up a new multifunction printer for a department. The device supports duplex printing, but the driver installation wizard does not show the duplex option. Users need to print on both sides of the paper. What should the technician do first?

A.Update the printer firmware to the latest version.
B.Check if the duplex unit is installed and properly connected.
C.Reinstall the printer driver using the manufacturer's full driver package.
D.Configure the duplex setting in the printer's web interface.
AnswerB

Many multifunction printers offer duplexing as an optional add-on unit, or it might be an integrated component that requires proper seating and connection. If the physical duplex unit is not correctly installed, securely connected, or even present, the printer's internal diagnostics and subsequently the installed printer driver will not detect its capability. Without hardware detection, the duplex option will simply not appear in any software interface, making this the essential first troubleshooting step.

Why this answer

The duplex unit is often a separate accessory that must be physically installed and enabled in the driver. The most logical first step is to verify the hardware is present and properly connected, as the driver may not detect it automatically.

727
MCQeasy

A customer reports that their new all-in-one printer can scan and copy locally, but they cannot send scanned documents to their email address. The printer is connected to the office network and can ping other devices. Which protocol is most likely misconfigured on the printer?

A.FTP
B.IMAP
C.SMTP
D.SNMP
AnswerC

SMTP (Simple Mail Transfer Protocol) is the industry standard protocol specifically designed for sending outgoing email messages. When a device, such as an all-in-one printer, needs to send an email, it connects to an SMTP server to deliver the message. A misconfiguration of SMTP settings, such as the server address, port number, or authentication credentials, would directly prevent the printer from successfully transmitting email.

Why this answer

The printer can scan and copy locally and is reachable on the network (ping works), but it cannot send scanned documents to an email address. This indicates the printer is configured to use SMTP (Simple Mail Transfer Protocol) to send the email, but the SMTP server settings (server address, port, authentication, or encryption) are likely incorrect or missing. SMTP is the standard protocol for sending outgoing email, which is exactly what the printer needs to deliver the scanned document as an email attachment.

Exam trap

The trap here is that candidates might confuse IMAP (used to read email) with SMTP (used to send email), especially when the question involves an email-related function like scanning to email.

How to eliminate wrong answers

Option A is wrong because FTP (File Transfer Protocol) is used for transferring files to/from a server, not for sending emails; the printer would use FTP only if it were configured to upload scans to an FTP server, not to email. Option B is wrong because IMAP (Internet Message Access Protocol) is used for retrieving and managing emails from a mail server, not for sending emails; the printer needs to send, not receive, email. Option D is wrong because SNMP (Simple Network Management Protocol) is used for network management and monitoring (e.g., querying printer status or traps), not for email transmission.

728
MCQmedium

A technician is replacing a power supply in a server that has been experiencing random lockups. The old PSU is an 80+ Bronze rated 650W unit. The technician selects an 80+ Gold rated 650W unit from the same brand. What is the primary benefit of this upgrade?

A.The Gold-rated PSU provides more wattage to the components.
B.The Gold-rated PSU produces less heat and is more efficient.
C.The Gold-rated PSU has better voltage regulation and ripple suppression.
D.The Gold-rated PSU will automatically fix the random lockups.
AnswerB

An 80 Plus Gold certification signifies that the power supply converts a higher percentage of the AC power drawn from the wall into usable DC power for the computer's components. This higher efficiency means less energy is wasted as heat during the conversion process. Consequently, a Gold-rated PSU will operate at lower internal temperatures and contribute less heat to the system, potentially allowing for quieter fan operation and improved overall thermal management compared to lower-efficiency units.

Why this answer

80+ Gold certification indicates higher efficiency (87-90% at typical loads) compared to Bronze (82-85%). This means less power is wasted as heat, which can improve reliability in a server environment and reduce cooling costs.

729
MCQeasy

A customer complains that their external USB hard drive is not recognized when plugged into any port on their laptop. The drive spins up and its LED lights up. The drive works fine on another computer. What is the most likely issue?

A.The USB port is physically damaged.
B.The external drive's enclosure has a faulty controller board.
C.The laptop is missing or has corrupted USB mass storage drivers.
D.The USB cable is defective.
AnswerC

If the USB mass storage driver is missing or corrupted, the laptop will provide power to the device but will not be able to enumerate it, so it will not appear in the OS. This explains why the drive spins up but is not recognized.

Why this answer

This question tests basic USB troubleshooting. The drive spins up and lights up, indicating power is reaching it, but it is not recognized. This often points to a driver issue on the laptop.

The other options are less likely because the drive works on another computer and the LED is on.

730
MCQeasy

A customer reports that their laptop can connect to the internet at home via Wi-Fi, but at a coffee shop it cannot connect to the guest network. They have not changed any settings. Which network type is most likely causing this issue?

A.Personal Area Network (PAN)
B.Local Area Network (LAN)
C.Wide Area Network (WAN)
D.Metropolitan Area Network (MAN)
AnswerB

The coffee shop's guest Wi-Fi is a LAN that the laptop is trying to join; the issue is likely with that LAN's configuration, not the internet (WAN).

Why this answer

(LAN) is correct because the coffee shop's guest network is a Local Area Network (LAN) that the laptop must join via Wi-Fi. Since the laptop works at home but not at the coffee shop, the issue is likely with the LAN configuration—such as a mismatched SSID, security type (e.g., WPA2 vs. WPA3), or IP address assignment (DHCP) on that specific LAN.

The user's unchanged settings may not be compatible with the coffee shop's LAN setup.

Exam trap

The trap for this question is that many candidates think a guest network is a WAN because it provides internet access, but the coffee shop's Wi-Fi is still a LAN, and the issue is with local network configuration.

How to eliminate wrong answers

Option A is wrong because a Personal Area Network (PAN) covers short-range connections like Bluetooth or USB, not Wi-Fi-based internet access at a coffee shop. Option C is wrong because a Wide Area Network (WAN) connects geographically dispersed networks (e.g., the internet itself), not the local Wi-Fi network at a coffee shop; the issue is with local connectivity, not WAN routing. Option D is wrong because a Metropolitan Area Network (MAN) spans a city or large campus, not a single coffee shop's guest Wi-Fi, which is a localized LAN.

731
MCQhard

A technician is troubleshooting a smartphone that cannot connect to any Wi-Fi network. The technician has already verified that the device's Wi-Fi adapter is enabled and that other devices can connect to the same networks. What should the technician check next?

A.Check if the device has a static IP address configured.
B.Check the device's MAC address filter on the router.
C.Check if the device's date and time are correct.
D.Check if the device's Bluetooth is interfering.
AnswerA

An incorrectly configured static IP address on a smartphone can prevent it from obtaining network access, even if it successfully associates with a Wi-Fi access point. If the static IP is outside the subnet range, duplicates another device's IP, or has an incorrect gateway/DNS, the device will fail to communicate with the router and the internet. This effectively makes it appear as if the device cannot connect to any Wi-Fi network, as it cannot establish proper network layer communication. The technician must verify the IP settings are set to DHCP or configured correctly for the specific network.

Why this answer

A static IP address can prevent a device from obtaining a valid IP from the DHCP server, causing connection failure. This is a common issue when a device has been manually configured with an IP that is not in the network's range or is already in use.

732
MCQmedium

A user reports that their laptop screen flickers intermittently, especially when the lid is moved. The flickering stops when an external monitor is connected. What is the most likely cause?

A.The graphics driver is outdated.
B.The inverter board is failing.
C.The display cable is loose or damaged.
D.The LCD panel is failing.
AnswerC

The internal display cable, often an eDP (embedded DisplayPort) or LVDS (Low-Voltage Differential Signaling) cable, runs through the laptop's hinge mechanism. Repeated opening and closing of the lid can cause wear, stress, or a loose connection at either the motherboard or the LCD panel interface. This intermittent connection disruption, directly correlating with physical movement, results in flickering exclusively on the built-in screen, as the signal path is compromised.

Why this answer

Intermittent flickering when moving the lid points to a loose or damaged display cable (LVDS or eDP) connecting the motherboard to the screen. The external monitor works because it bypasses this internal connection.

733
MCQmedium

A user's smartphone intermittently disconnects from a known Wi-Fi network when they move to a different room. The network uses a single access point. What is the most likely cause?

A.The smartphone is connecting to the 5 GHz band, which has poor wall penetration.
B.The access point is overloaded with too many clients.
C.The smartphone's MAC address is being filtered.
D.The smartphone's battery saver mode is turning off Wi-Fi.
AnswerA

The 5 GHz Wi-Fi band utilizes higher frequencies, which inherently have shorter wavelengths and are more susceptible to attenuation and absorption by physical obstacles like walls, floors, and furniture. This reduced penetration capability means that as the smartphone moves further from the access point or into different rooms, the signal strength can rapidly degrade below a usable threshold, causing intermittent disconnections. Unlike the 2.4 GHz band, 5 GHz signals struggle to maintain consistent connectivity through multiple barriers, directly explaining the intermittent disconnects tied to movement.

Why this answer

The 5 GHz band offers higher data rates but has significantly poorer wall penetration and range compared to the 2.4 GHz band. When the user moves to a different room, the signal from the single access point attenuates more rapidly at 5 GHz, causing intermittent disconnections. This is the most likely cause because the problem is location-dependent and occurs with a known network.

Exam trap

The 220-1201 exam often tests the misconception that 5 GHz is always superior, leading candidates to overlook its range and penetration limitations in favor of blaming client-side settings like battery saver or MAC filtering.

How to eliminate wrong answers

Option B is wrong because an overloaded access point would cause slow speeds or connection failures for all clients regardless of location, not intermittent disconnects only when moving to a different room. Option C is wrong because MAC address filtering would either permanently allow or block the device, not cause intermittent disconnections based on location. Option D is wrong because battery saver mode typically turns off Wi-Fi only when the screen is off or the device is idle, not when actively moving between rooms with the screen on.

734
MCQhard

A user reports that their cloud-based application is running slowly, and the IT team discovers that the application is hosted in a different geographic region than the user. Which cloud concept is most directly affecting performance?

A.Bandwidth
B.Elasticity
C.Latency
D.Fault tolerance
AnswerC

Latency is the time delay between when a data packet is sent from a source and when it is received at its destination, often measured in milliseconds (ms). In cloud-based applications, significant geographic distance between the end-user and the cloud server's data center directly increases this transmission delay, as data must travel further across the network infrastructure. This elevated latency results in a noticeable slowdown and unresponsiveness within the application, making it the primary factor for performance issues tied to server location.

Why this answer

This scenario tests understanding of latency in a global cloud context. When an application is hosted far from the user, the physical distance increases network latency, causing slow performance. Bandwidth could be a factor but is not directly tied to geographic distance, while elasticity and fault tolerance are unrelated to the location of the host.

735
MCQmedium

A technician is deploying 50 company-owned Android tablets for field workers. The tablets must only run a single custom business app and prevent users from accessing any other apps or settings. Which configuration method should the technician use?

A.Enable 'Developer options' and set the app as the default launcher.
B.Use a Mobile Device Management (MDM) solution to configure kiosk mode.
C.Perform a factory reset and install only the custom app.
D.Remove the Google Play Store app from the device.
AnswerB

Utilizing a Mobile Device Management (MDM) solution is the most effective and secure approach for configuring kiosk mode across 50 company-owned Android tablets. MDM platforms allow administrators to remotely enforce strict policies, locking devices to a single application and restricting access to system settings, notifications, and other unauthorized functions. This ensures a consistent, secure, and centrally manageable user experience, preventing misuse and maintaining device integrity.

Why this answer

A Mobile Device Management (MDM) solution with kiosk mode is the correct approach because it locks the device to a single app, disables access to system settings, and prevents users from launching other applications. MDM enforces this via device policy controllers (DPC) and Android's lock task mode, which cannot be bypassed by the user. This meets the requirement of deploying 50 tablets with a single custom business app and no access to other apps or settings.

Exam trap

The 220-1201 exam often tests the misconception that simply removing the Play Store or performing a factory reset is sufficient for locking down a device, when in reality only MDM-enforced kiosk mode provides the necessary system-level restrictions to prevent user access to other apps and settings.

How to eliminate wrong answers

Option A is wrong because enabling 'Developer options' and setting the app as the default launcher does not prevent users from accessing settings or other apps; they can still swipe down the notification shade, open the app drawer, or use the back button to exit. Option C is wrong because performing a factory reset and installing only the custom app does not restrict the user from installing additional apps or accessing system settings; the device remains fully functional with standard Android UI. Option D is wrong because removing the Google Play Store app does not block access to other pre-installed apps, system settings, or sideloaded apps; users can still use file managers, browsers, or other built-in apps.

736
MCQmedium

A technician is troubleshooting a laptop that cannot connect to a 5 GHz Wi-Fi network, but it connects to 2.4 GHz networks without issue. The laptop supports dual-band Wi-Fi. What is the most likely cause?

A.The 5 GHz router is too far from the laptop.
B.The laptop's Wi-Fi driver is outdated or misconfigured for 5 GHz.
C.The 5 GHz network is using WEP encryption.
D.The laptop's Wi-Fi card is only 2.4 GHz capable.
AnswerB

An outdated or corrupted Wi-Fi driver is a common cause for specific band connectivity issues. The driver acts as the interface between the operating system and the wireless adapter. If it lacks support for newer 5 GHz channels (e.g., DFS channels), fails to properly negotiate 802.11ac/ax protocols, or misinterprets band steering commands, the laptop may fail to detect or establish a stable connection to the 5 GHz network, even if the hardware is physically capable. Updating the driver is often the first troubleshooting step.

Why this answer

Since the laptop connects successfully to 2.4 GHz networks but fails on 5 GHz, the hardware is functional for 2.4 GHz, but the driver or configuration may not support the 5 GHz band properly. An outdated or misconfigured Wi-Fi driver is the most likely cause because it can fail to enable the 5 GHz radio or negotiate 802.11a/n/ac protocols correctly.

Exam trap

CompTIA often tests the misconception that a dual-band laptop always works on both bands equally, but the trap here is that driver or configuration issues can selectively disable one band, leading candidates to incorrectly blame range (A) or encryption (C).

How to eliminate wrong answers

Option A is wrong because if the 5 GHz router were too far, the laptop would still see the network (though with weak signal) or fail to connect due to range, but the symptom is a complete inability to connect to 5 GHz while 2.4 GHz works fine—range issues affect both bands, not selectively. Option C is wrong because WEP encryption is not band-specific; if the laptop supports WEP (which is deprecated but still functional on many adapters), it would affect both 2.4 GHz and 5 GHz connections equally, not just the 5 GHz band. Option D is wrong because the question explicitly states the laptop supports dual-band Wi-Fi, meaning the Wi-Fi card is capable of both 2.4 GHz and 5 GHz; a 2.4 GHz-only card would not connect to any 5 GHz network at all, but the symptom here is a failure to connect to a specific 5 GHz network, not a hardware limitation.

737
MCQmedium

A technician is troubleshooting a network drop that was working yesterday but now has no link light at the switch. The cable run is 80 meters and passes through a conduit. Which tool should be used first to isolate the problem?

A.A tone generator and probe.
B.A multimeter.
C.A cable tester.
D.A time-domain reflectometer (TDR).
AnswerC

A cable tester can check for continuity, shorts, and wiring faults, which is the first step in diagnosing a no-link issue.

Why this answer

A cable tester (often a wiremap tester) is the first tool to use when verifying basic connectivity and physical layer issues like broken wires, shorts, or miswiring. Since the link light is absent and the cable was working before, the most likely cause is a physical fault in the 80-meter run, and a cable tester can quickly confirm continuity and pinout without requiring advanced diagnostics.

Exam trap

The trap here is that candidates often jump to a TDR (Option D) because they think of distance-to-fault for a long run, but the question asks for the first tool to isolate the problem, and a simple cable tester is faster and more appropriate for verifying basic connectivity before using specialized equipment.

How to eliminate wrong answers

Option A is wrong because a tone generator and probe is used for tracing and identifying cables within a bundle or locating a specific cable in a patch panel, not for testing electrical continuity or faults that cause a missing link light. Option B is wrong because a multimeter can measure voltage, resistance, and continuity but cannot test for proper twisted-pair wiring, crosstalk, or impedance mismatches that affect Ethernet signaling at 80 meters. Option D is wrong because a time-domain reflectometer (TDR) is used to locate the distance to a fault (e.g., a break or short) but is an advanced tool typically employed after a cable tester confirms a fault exists; using it first is overkill and less efficient for initial troubleshooting.

738
MCQeasy

You are upgrading a customer's gaming PC to support faster memory. The motherboard supports DDR4-3200, but after installing two 8GB DDR4-3200 modules, the system only runs at 2133 MHz. What is the most likely reason?

A.The RAM modules are defective
B.The motherboard does not support dual-channel memory
C.XMP is not enabled in the BIOS
D.The CPU does not support DDR4-3200
AnswerC

Extreme Memory Profile (XMP) is an Intel-developed technology, also supported by AMD as DOCP (Direct Overclock Profile), that allows RAM modules to operate at speeds higher than the default JEDEC standards. When new, high-speed RAM is installed, the system's BIOS/UEFI typically defaults to a lower, universally compatible JEDEC speed, such as DDR4-2133 or DDR4-2400. Enabling XMP in the BIOS loads the manufacturer-defined overclocking profile, allowing the RAM to run at its advertised speed, like DDR4-3200.

Why this answer

By default, most motherboards run RAM at a standard JEDEC speed (often 2133 MHz) for stability. To achieve the rated speed of 3200 MHz, you must enable XMP (Extreme Memory Profile) in the BIOS. This is a common step that new builders overlook.

739
MCQhard

A technician is setting up a mobile workstation for a graphic designer who uses a laptop with a USB-C port that supports Thunderbolt 3. The designer needs to connect two 4K monitors, a wired Ethernet connection, and charge the laptop simultaneously. Which accessory should the technician choose?

A.A USB-C to dual HDMI adapter
B.A Thunderbolt 3 docking station
C.A USB 3.0 hub with HDMI and Ethernet
D.A KVM switch
AnswerB

A Thunderbolt 3 docking station is specifically engineered to provide a comprehensive, single-cable solution for mobile workstations. Leveraging its 40 Gbps bandwidth, it simultaneously supports dual 4K displays at 60Hz, delivers power to charge the laptop, and integrates essential ports like Gigabit Ethernet and multiple USB peripherals. This robust connectivity consolidates all necessary functions, making it ideal for high-performance desktop replacement scenarios.

Why this answer

A Thunderbolt 3 docking station is the correct choice because it provides sufficient bandwidth (up to 40 Gbps) to drive two 4K monitors simultaneously, includes a dedicated Ethernet port for wired networking, and delivers power delivery (PD) to charge the laptop—all through a single USB-C connection that is backward-compatible with Thunderbolt 3.

Exam trap

CompTIA often tests the misconception that any USB-C adapter or hub can support dual 4K displays and charging, but only a Thunderbolt 3 docking station provides the necessary bandwidth and power delivery capabilities for this specific combination of requirements.

How to eliminate wrong answers

Option A is wrong because a USB-C to dual HDMI adapter typically relies on DisplayPort Alternate Mode and may not support two 4K displays at 60 Hz simultaneously due to bandwidth limitations (USB 3.1 Gen 2 caps at 10 Gbps), and it lacks an Ethernet port. Option C is wrong because a USB 3.0 hub with HDMI and Ethernet operates at USB 3.0 speeds (5 Gbps), which is insufficient for dual 4K video streams and cannot deliver the power needed to charge the laptop. Option D is wrong because a KVM switch is designed to share a single set of peripherals between multiple computers, not to add video outputs or Ethernet connectivity to a single laptop.

740
MCQhard

A technician is troubleshooting an impact printer that is producing faint characters on multipart forms. The ribbon is new, and the print head is clean. The forms are properly aligned. Which adjustment should be made?

A.Increase the print head temperature
B.Replace the platen
C.Adjust the platen gap to bring the print head closer to the paper
D.Change the paper thickness setting to a thicker setting
AnswerC

Adjusting the platen gap to bring the print head closer to the paper is the correct action because it directly increases the impact force of the print pins. This enhanced force ensures that the pins strike the ink ribbon and paper with sufficient pressure to create clear, legible impressions, particularly crucial when printing on multipart forms where the impression must transfer through multiple carbon or carbonless layers effectively.

Why this answer

Faint characters on multipart forms with a new ribbon and clean print head indicate insufficient impact force. Impact printers have a platen gap adjustment that controls the distance between the print head and the platen. If the gap is too wide, the pins cannot strike through all layers effectively.

741
MCQhard

A technician is configuring a network for a new branch office. The branch has 50 users and needs to access resources at the main office via a secure tunnel over the internet. Which service is required to establish this connection?

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

A Virtual Private Network (VPN) establishes a secure, encrypted connection, often referred to as a "tunnel," over an unsecured network, such as the internet. This technology allows remote users or branch offices to securely access a private network, protecting data confidentiality and integrity by encapsulating and encrypting all traffic flowing through the tunnel. It effectively extends a private network across a public network, ensuring secure communication between disparate locations.

Why this answer

A VPN (Virtual Private Network) is required to create a secure, encrypted tunnel over the internet between the branch office and the main office. This allows the 50 users to access internal resources at the main office as if they were on the same local network, using protocols such as IPsec or SSL/TLS to ensure confidentiality and integrity of data in transit.

Exam trap

A common misconception is that NAT alone can provide security or remote access, but NAT only modifies address headers and does not encrypt traffic or authenticate users, making VPN the correct choice for secure tunneling.

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 on a local network, not to establish secure connectivity between remote sites. Option B is wrong because DNS (Domain Name System) resolves human-readable domain names to IP addresses, but does not provide encryption or tunneling for secure remote access. Option D is wrong because NAT (Network Address Translation) translates private IP addresses to a public IP address for internet access, but it does not create a secure tunnel or authenticate remote users; it is often used alongside VPNs but is not the service that establishes the secure connection.

742
MCQeasy

A user reports that their desktop PC emits a series of short beeps and fails to boot. The monitor shows no display, and the keyboard and mouse LEDs are off. What is the most likely cause?

A.Faulty power supply unit
B.Loose or faulty RAM module
C.Defective hard drive
D.Overheated CPU
AnswerB

A loose or faulty RAM module is a very common cause for a desktop PC to emit specific beep codes during the Power-On Self-Test (POST). The BIOS/UEFI firmware performs memory checks early in the boot process, and if RAM is not detected, is improperly seated, or is defective, it will generate a distinct beep code pattern (e.g., three short beeps, one long and two short, depending on the BIOS manufacturer) to signal a memory error before video output is initialized. Reseating the modules or replacing faulty ones often resolves this issue.

Why this answer

A series of short beeps during POST typically indicates a memory (RAM) failure. The lack of display and peripheral response points to a hardware fault that prevents the system from completing POST, and RAM is the most common culprit.

743
MCQmedium

A technician is configuring a cloud-based backup solution for a client's critical data. The client requires that data be stored in a way that allows quick recovery of individual files from any point in the last 30 days. Which cloud storage model is most appropriate?

A.Block storage
B.File storage
C.Object storage
D.Cold storage
AnswerC

Object storage manages data as discrete, self-contained units called objects, each comprising the data itself, a unique identifier, and extensive custom metadata. This architecture inherently supports robust versioning, where every modification or upload of an object automatically creates a new, retrievable version. Its scalability, cost-effectiveness, and built-in features like granular version control and lifecycle management make it the optimal choice for cloud-based backup solutions requiring the ability to recover previous file versions efficiently.

Why this answer

Object storage is ideal for storing and retrieving individual files with versioning capabilities, enabling point-in-time recovery. It is scalable and commonly used for backup. Block storage is for raw volumes, and file storage is for shared file systems, but object storage offers the best granularity for file-level recovery over time.

744
MCQmedium

A user complains that a virtual machine running on a laptop shuts down unexpectedly when the laptop is unplugged from power. The host has power management settings set to 'Balanced'. What is the most likely cause?

A.The VM's virtual BIOS is set to power off on AC loss
B.The host's power plan is set to 'Balanced', causing the host to sleep when unplugged
C.The VM is configured with insufficient RAM
D.The laptop's battery is failing and cannot supply power
AnswerB

The host laptop's power plan directly dictates its behavior when operating on battery power. A 'Balanced' power plan is designed to conserve energy, often configured to automatically put the system into a sleep or hibernate state after a period of inactivity when unplugged. When the host enters such a low-power state, any running virtual machines are abruptly suspended or shut down, leading to the observed complaint.

Why this answer

Power management settings can put the host to sleep or reduce performance, causing the VM to crash or shut down. The VM relies on the host's power state; changing the plan to 'High Performance' prevents sleep.

745
MCQmedium

A small office has a single public IP address and uses a router to provide internet access to 20 devices. Users report that some websites load slowly or time out, while others work fine. The router's NAT table shows many entries. Which protocol is most likely being exhausted, causing these intermittent issues?

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

Network Address Translation (NAT) allows multiple private IP addresses within a local network to share a single public IP address for outbound internet access. When the NAT device's translation table, which maps internal private IP/port combinations to external public IP/port combinations, becomes exhausted, it cannot create new entries for subsequent outbound connection requests. This leads to new connections timing out or failing for some websites while existing or less demanding connections might still function, perfectly matching the "intermittent slowness and timeouts to some sites" symptom.

Why this answer

The router's NAT table has many entries, indicating that the single public IP address is being heavily used to translate private IPs for 20 devices. When the NAT table exhausts its available port mappings (typically 65,535 per public IP, but often limited by router resources), new outbound connections cannot be established, causing some websites to time out while existing connections continue to work. This is a classic symptom of NAT overload (PAT) exhaustion.

Exam trap

The trap here is that candidates confuse NAT exhaustion with DNS failure, but DNS would cause all sites to fail, whereas NAT exhaustion causes intermittent failures as the table fills and empties.

How to eliminate wrong answers

Option A is wrong because DNS resolves domain names to IP addresses; if DNS were exhausted or failing, all websites would fail to load, not just some intermittently. Option B is wrong because DHCP assigns IP addresses to devices; if DHCP were exhausted, devices would fail to obtain an IP address entirely, not experience intermittent slow loading. Option D is wrong because ICMP is used for diagnostic tools like ping and traceroute; ICMP exhaustion would affect those tools, not general web browsing.

746
MCQmedium

A user reports that their VoIP phone works but the connected PC cannot access the network. The phone is connected to the wall jack, and the PC is connected to the phone's passthrough port. What is the most likely cause?

A.The PC's network cable is faulty.
B.The VoIP phone's passthrough port is disabled.
C.The switch port is not configured for the data VLAN, so the PC cannot get an IP address.
D.The PC's network adapter is set to a static IP address that conflicts with the phone.
AnswerC

This is the most probable cause. VoIP phones commonly operate on a dedicated Voice VLAN, while PCs require access to a separate Data VLAN. If the switch port connecting the VoIP phone is configured only for the Voice VLAN (e.g., as an access port for the voice VLAN or with an incorrect native VLAN), the PC's data traffic, attempting to join the Data VLAN, would be dropped. Consequently, the PC would fail to obtain an IP address via DHCP, even though the phone successfully communicates on its designated VLAN.

Why this answer

The VoIP phone and PC share a single physical switch port via the phone's passthrough port. For the PC to access the network, the switch port must be configured as a trunk (or access port with voice VLAN) carrying both the voice VLAN (for the phone) and the data VLAN (for the PC). If the switch port is not configured for the data VLAN, the PC will not receive an IP address from the DHCP server and cannot communicate on the network, even though the phone works because it uses its own voice VLAN.

Exam trap

The 220-1201 exam often tests the misconception that a working phone implies the entire port is correctly configured, when in fact the phone can operate on its own voice VLAN even if the data VLAN is missing or misconfigured, leaving the PC stranded.

How to eliminate wrong answers

Option A is wrong because a faulty PC cable would typically cause a link light issue or complete loss of connectivity, but the scenario states the phone works (which uses the same physical cable from the wall jack) and the PC is connected via the phone's passthrough port, so the cable from the wall is fine. Option B is wrong because if the passthrough port were disabled, the PC would have no link at all, but the question implies the PC cannot access the network (likely no IP address) rather than a physical disconnection. Option D is wrong because a static IP conflict with the phone would cause an IP address conflict error on the PC, not a failure to obtain an IP address; the phone typically uses a separate voice VLAN and does not compete for the same subnet as the PC.

747
MCQmedium

A customer complains that their VoIP phone intermittently drops calls. A technician checks the network and finds high latency and jitter during peak hours. Which network service should be configured to prioritize VoIP traffic?

A.DHCP
B.QoS
C.DNS
D.VPN
AnswerB

QoS prioritizes VoIP traffic to maintain call quality by reducing latency and jitter.

Why this answer

B is correct because Quality of Service (QoS) is the network service designed to manage bandwidth and prioritize time-sensitive traffic like VoIP. By marking VoIP packets (e.g., with DSCP EF or CoS 5) and applying queuing mechanisms such as LLQ or CBWFQ, QoS reduces latency and jitter during congestion, directly addressing the intermittent call drops during peak hours.

Exam trap

The trap here is that candidates often confuse network services like DHCP (address assignment) and DNS (name resolution) with traffic management. QoS is the correct service to prioritize VoIP traffic and reduce latency/jitter during congestion.

How to eliminate wrong answers

Option A is wrong because DHCP (Dynamic Host Configuration Protocol) is used for automatic IP address assignment and network configuration, not for traffic prioritization or congestion management. Option C is wrong because DNS (Domain Name System) resolves domain names to IP addresses and has no role in prioritizing or shaping network traffic. Option D is wrong because a VPN (Virtual Private Network) encrypts and tunnels traffic for security, but it does not prioritize VoIP packets; in fact, VPN overhead can increase latency and jitter if not properly configured with QoS.

748
MCQhard

A technician is troubleshooting a server that uses a RAID 6 array with six 4 TB HDDs. One drive fails, and after replacement, the rebuild process is taking much longer than expected. The array is still online. What is the most likely reason for the slow rebuild?

A.The replacement drive is of a different RPM.
B.The RAID controller is faulty.
C.The array is performing background consistency checks.
D.The large capacity of the drives and the double parity overhead are causing the slow rebuild.
AnswerD

RAID 6 rebuilds are inherently slow due to the necessity of calculating two independent parity blocks (P and Q) for each data stripe. This process requires reading data from all remaining operational drives to reconstruct the missing data, performing intensive computational parity calculations, and then writing the reconstructed data and updated parity to the new drive. With 4 TB drives, the immense volume of data amplifies these I/O and CPU demands, making the rebuild a prolonged and resource-intensive operation.

Why this answer

RAID 6 uses double parity, requiring more calculations during rebuild. Additionally, large-capacity drives (4 TB) take longer to rebuild because the entire drive surface must be read and written. The rebuild process also competes with normal I/O, slowing it further.

749
MCQhard

A company needs to deploy a virtualized environment where each VM must be isolated from others for security reasons, but all VMs share the same physical network. Which virtual networking configuration should be used?

A.Use a virtual switch with port groups assigned to different VLANs
B.Configure each VM with a different MAC address
C.Use bridged networking for all VMs
D.Assign each VM a static IP address from a different subnet
AnswerA

Using a virtual switch with port groups assigned to distinct VLANs is the correct approach for network segmentation in a virtualized environment. Each port group can be configured with a specific VLAN ID, ensuring that virtual machines connected to different port groups are logically isolated at Layer 2. This prevents direct communication between VMs in different VLANs without a router, effectively segmenting traffic and enhancing security and network organization.

Why this answer

VLANs provide network isolation at Layer 2, allowing VMs on the same physical network to be separated logically. This is a common security practice in virtualized environments.

750
MCQmedium

A user reports that they can receive emails but cannot send any. The email client is configured with SMTP on port 25. The IT team confirms that port 25 is blocked by the ISP. Which alternative port should be used for SMTP submission?

A.Port 110
B.Port 143
C.Port 587
D.Port 993
AnswerC

Port 587 is the standard SMTP submission port, often allowed by ISPs.

Why this answer

Port 587 is the standard SMTP submission port defined in RFC 6409 for email clients to send outgoing mail. Unlike port 25, which is used for SMTP relay between mail servers and is often blocked by ISPs to prevent spam, port 587 is specifically designated for client-to-server submission and typically supports STARTTLS encryption. Using port 587 bypasses the ISP's block on port 25 while adhering to modern email security practices.

Exam trap

CompTIA often tests the misconception that any port associated with email (like POP3 on 110 or IMAP on 143) can be used for sending, when in fact only SMTP-specific ports (25, 587, or 465) handle outgoing mail.

How to eliminate wrong answers

Option A is wrong because port 110 is used for POP3 (Post Office Protocol 3), which retrieves incoming emails from a mail server, not for sending emails. Option B is wrong because port 143 is used for IMAP (Internet Message Access Protocol), which manages incoming emails on the server, not for SMTP submission. Option D is wrong because port 993 is used for IMAP over SSL/TLS (IMAPS), which secures incoming email retrieval, not for sending emails via SMTP.

Page 9

Page 10 of 13

Page 11