Courseiva

CompTIA A+ Core 2 220-1202 (220-1202) — Questions 151225

495 questions total · 7pages · All types, answers revealed

Page 2

Page 3 of 7

Page 4
151
MCQhard

During a security audit, a technician discovers that an unauthorized person accessed a restricted server room by pretending to be a fire inspector. The person had a fake ID and clipboard. Which social engineering technique was used, and what is the best mitigation?

A.Tailgating; install mantraps at entrances.
B.Phishing; implement email filtering.
C.Pretexting; enforce visitor check-in and verification procedures.
D.Baiting; disable USB ports on workstations.
AnswerC

Pretexting is a social engineering tactic where an attacker invents a fabricated scenario or identity to manipulate a target into divulging information or granting access. Enforcing strict visitor check-in and verification procedures directly counters pretexting by requiring visitors to present valid identification and verifying their stated purpose against official records or scheduled appointments. This process, often combined with requiring escorts for all visitors, prevents unauthorized individuals from gaining physical access under false pretenses.

Why this answer

The attacker used a fabricated identity (fake ID and clipboard) to create a false scenario—pretending to be a fire inspector—which is the hallmark of pretexting. The best mitigation is to enforce visitor check-in and verification procedures, such as requiring government-issued ID validation and escort policies, to prevent unauthorized access based on fabricated roles.

Exam trap

CompTIA often tests the distinction between pretexting and tailgating, where candidates confuse impersonation with simply following someone through a door; the trap here is that the fake ID and clipboard clearly indicate a fabricated identity (pretexting), not physical piggybacking.

How to eliminate wrong answers

Option A is wrong because tailgating involves an unauthorized person following an authorized person through a secured door without consent, not using a fake identity or pretext. Option B is wrong because phishing is a digital attack using fraudulent emails or messages to steal credentials, not an in-person impersonation with a fake ID. Option D is wrong because baiting involves offering something enticing (e.g., a free USB drive) to trick a victim into installing malware, not impersonating an authority figure to gain physical access.

152
MCQmedium

A small business owner wants to allow their remote employees to securely access a specific internal application without giving them full network access. Which remote access technology should the technician recommend?

A.Site-to-site VPN
B.Remote Desktop Services
C.Application gateway
D.SSH tunneling
AnswerC

An application gateway, often functioning as a reverse proxy, provides secure and controlled access to specific web applications. It sits in front of the application servers, inspecting incoming traffic and forwarding legitimate requests to the appropriate backend application while blocking malicious attempts. This method allows remote users to securely access a single application without exposing the entire internal network or requiring a full VPN connection, aligning perfectly with the need for granular, application-level access.

Why this answer

An application gateway (reverse proxy) is the correct choice because it provides granular, application-layer access control, allowing remote employees to reach a specific internal application without granting them full network-level access. Unlike VPNs that create a tunnel to the entire network, an application gateway authenticates and proxies only the designated application traffic, often using protocols like HTTPS and enforcing policies at Layer 7.

Exam trap

The trap here is that candidates often confuse 'remote access' with 'full network connectivity' and choose a VPN (site-to-site or client-based) because they think encryption alone solves the access control problem, overlooking the need for application-specific, least-privilege access.

How to eliminate wrong answers

Option A is wrong because a site-to-site VPN connects entire networks (e.g., branch office to headquarters), giving remote employees full network access, not just to a single application. Option B is wrong because Remote Desktop Services provides a full desktop session or individual applications via RDP, but it exposes the entire desktop environment or multiple apps, not a single internal application with granular access control. Option D is wrong because SSH tunneling creates an encrypted tunnel for specific TCP ports, but it requires manual configuration, exposes the underlying network if misconfigured, and does not provide application-layer filtering or authentication for a single web application.

153
MCQmedium

A user reports that their Windows 10 PC frequently crashes with a blue screen error. You want to analyze the memory dump files to identify the faulty driver. Which tool should you use to view and analyze these dump files?

A.Event Viewer
B.Windows Memory Diagnostic
C.Performance Monitor
D.Task Manager
AnswerA

Event Viewer logs system errors, including blue screen events, and provides details about the crash, including the dump file path.

Why this answer

Event Viewer is the correct tool because it logs system events, including blue screen errors (BugCheck events), and provides access to memory dump files. You can view the details of a crash under 'Windows Logs > System' and filter by event ID 1001, which includes the path to the dump file and the module that caused the failure. This allows you to identify the faulty driver by analyzing the dump file directly or by using additional tools like WinDbg.

Exam trap

The trap here is that candidates often confuse Windows Memory Diagnostic (a RAM tester) with a tool for analyzing crash dumps, or they assume Task Manager or Performance Monitor can provide crash analysis, but only Event Viewer logs the crash event and points to the dump file location.

How to eliminate wrong answers

Option B is wrong because Windows Memory Diagnostic is a tool for testing physical RAM for hardware errors, not for analyzing memory dump files from crashes. Option C is wrong because Performance Monitor is used to collect and analyze real-time performance data (e.g., CPU, disk usage) over time, not to view or analyze crash dump files. Option D is wrong because Task Manager provides a snapshot of running processes, performance metrics, and startup programs, but it cannot display or analyze memory dump files from blue screen errors.

154
MCQmedium

A technician is configuring a company-issued Android phone for a new employee. The employee will use the phone for both work (email, calendar) and personal activities. The company requires that work data be securely containerized and managed without affecting the employee's personal apps. Which Android feature should the technician enable?

A.Set up a separate User account for work.
B.Enable the Work Profile via the device's Settings under Accounts.
C.Use Screen Pinning to lock the device to the email app.
D.Install a third-party MDM agent only.
AnswerB

Enabling the Work Profile via the device's Settings under Accounts is the correct and most efficient method for configuring a company-issued Android phone. This feature creates a secure, managed container for all work-related applications, data, and accounts, keeping them entirely separate from personal content on the same device. IT administrators can enforce specific security policies and manage applications within this profile without intruding on the user's personal data or privacy, offering a seamless and secure experience.

Why this answer

Android's Work Profile (part of Android Enterprise) creates a separate, managed profile on the device for work apps and data. This allows IT to enforce policies (like encryption and remote wipe) on the work profile without affecting the personal profile. Multi-User mode is for separate users, not a single user with two contexts, and Screen Pinning is for single-app lockdown.

155
MCQmedium

A technician is tasked with installing a new hard drive in a server rack. The rack is located in a cramped, dusty storage room with poor lighting. Which safety practice should the technician prioritize before beginning the installation?

A.Use a step stool to reach the server rack safely.
B.Wear a dust mask and use a flashlight to improve visibility.
C.Remove the server from the rack and place it on the floor for easier access.
D.Disconnect all power cables in the rack to eliminate electrical hazards.
AnswerB

Wearing a dust mask is crucial Personal Protective Equipment (PPE) to prevent respiratory irritation and potential long-term health issues from inhaling airborne dust particles common in server environments. Simultaneously, using a flashlight directly counters the "poor lighting" condition, ensuring the technician has clear visibility of intricate components and connections. This combination minimizes the risk of installation errors, accidental damage, and personal injury, promoting a safe and accurate installation.

Why this answer

The scenario describes a cramped, dusty storage room with poor lighting, which creates two immediate hazards: inhalation of dust particles and reduced visibility. Wearing a dust mask protects the technician's respiratory system from airborne particulates, while using a flashlight ensures they can see clearly to avoid accidental contact with components or cables. These measures directly address the environmental risks before any work begins.

Exam trap

CompTIA often tests the candidate's ability to prioritize environmental and personal safety over convenience or overkill measures, and the trap here is that test-takers may choose Option D (disconnecting all power) thinking it is the safest approach, but it is excessive and not the most immediate priority given the specific conditions described.

How to eliminate wrong answers

Option A is wrong because using a step stool does not address the primary hazards of dust inhalation and poor visibility; it only helps with height, which is not the main concern in a cramped space. Option C is wrong because removing the server from the rack and placing it on the floor increases the risk of physical damage to the server and creates a tripping hazard, and it does not mitigate the dust or lighting issues. Option D is wrong because disconnecting all power cables in the rack is an extreme and unnecessary step that could disrupt other critical systems; the technician should only isolate the specific device they are working on, following proper lockout/tagout procedures.

156
MCQeasy

A technician is deploying 20 new laptops to a department. The manager asks the technician to install the software quickly, but the technician knows that a full deployment includes user training and data migration. Which action BEST demonstrates professional communication?

A.Agree to the manager's request and rush the installation to avoid conflict.
B.Explain the standard deployment process and offer a revised timeline that includes training.
C.Install the software and let the users figure out the rest on their own.
D.Tell the manager that training is not part of the technician's job.
AnswerB

This is the most professional and effective approach. By clearly articulating the standard deployment process, which includes critical steps like imaging, software installation, data migration, and user training, the technician manages the manager's expectations realistically. Proposing a revised timeline that incorporates adequate training ensures users can effectively utilize the new equipment, minimizing post-deployment support issues and maximizing productivity from the outset, leading to a smoother transition.

Why this answer

It demonstrates professional communication by clearly explaining the standard deployment process—which includes user training and data migration—and offering a revised timeline. This aligns with the CompTIA A+ objective of managing expectations and ensuring a complete, effective rollout rather than a rushed, incomplete installation.

Exam trap

The trap here is that candidates may think agreeing to the manager's request (Option A) avoids conflict, but CompTIA often tests that professional communication requires setting realistic expectations and explaining the full scope of work, not just immediate compliance.

How to eliminate wrong answers

Option A is wrong because agreeing to rush the installation ignores the necessary steps of user training and data migration, leading to potential user confusion and data loss, which violates professional responsibility. Option C is wrong because installing software without training or support leaves users to figure out the system on their own, which is unprofessional and can cause productivity loss and security risks. Option D is wrong because telling the manager that training is not part of the technician's job dismisses a core component of a full deployment and fails to communicate the technician's role in ensuring successful adoption.

157
MCQeasy

A user complains that their Windows 11 laptop's battery drains quickly even when idle. They have checked the Task Manager and no unusual processes are running. Which built-in tool should you use to generate a detailed report of battery usage and health?

A.Resource Monitor
B.Performance Monitor
C.Powercfg /batteryreport
D.Windows Memory Diagnostic
AnswerC

The `powercfg /batteryreport` command is specifically designed to generate a detailed HTML report containing critical battery information. This report includes the battery's design capacity, its last full charge capacity, recent usage history, and estimated battery life, providing essential data to identify degradation, excessive drain, or other battery-related issues.

Why this answer

Powercfg /batteryreport is the correct built-in tool because it generates a comprehensive HTML report detailing battery capacity history, usage patterns, and estimated life. This command analyzes the system's power efficiency and battery health, which directly addresses the user's complaint of rapid drain even when idle, without relying on running processes visible in Task Manager.

Exam trap

The trap here is that candidates often confuse Resource Monitor or Performance Monitor as tools for battery analysis, but neither provides the specific battery health and usage history that powercfg /batteryreport does.

How to eliminate wrong answers

Option A is wrong because Resource Monitor provides real-time monitoring of CPU, memory, disk, and network usage, but it does not generate a historical or health-focused battery report. Option B is wrong because Performance Monitor tracks system performance counters over time, but it lacks specific battery health and usage reporting capabilities. Option D is wrong because Windows Memory Diagnostic is designed to test RAM for errors, not to analyze battery performance or health.

158
MCQhard

A technician is configuring a remote desktop solution for a user who needs to access a Linux server from a Windows 10 workstation. The technician wants to use a secure, encrypted connection. Which remote access technology should the technician configure on the Linux server?

A.RDP
B.VNC
C.SSH
D.Telnet
AnswerC

Secure Shell (SSH) is the industry standard for secure remote command-line access and administration of Linux servers. It establishes an encrypted connection between the client and server, protecting data integrity and confidentiality through strong cryptographic algorithms. SSH also provides robust authentication mechanisms, such as password or public-key authentication, making it the most appropriate and secure choice for managing Linux systems remotely. This protocol is fundamental for secure system administration in professional environments.

Why this answer

SSH (Secure Shell) is the correct choice because it provides encrypted, authenticated remote shell access to Linux/Unix servers over an insecure network. It uses TCP port 22 and supports strong encryption algorithms (e.g., AES, ChaCha20) and public-key authentication, making it the standard secure remote access protocol for Linux systems.

Exam trap

The trap here is that candidates often confuse RDP (a Windows-centric GUI protocol) with SSH (a Linux-centric secure shell protocol), or mistakenly think VNC is inherently secure, when in fact SSH is the only option that provides built-in encryption and is the standard for secure Linux remote access.

How to eliminate wrong answers

Option A is wrong because RDP (Remote Desktop Protocol) is a proprietary Microsoft protocol primarily used for remote GUI access to Windows systems, not Linux servers, and while it can be encrypted, it is not the native secure remote access method for Linux. Option B is wrong because VNC (Virtual Network Computing) typically transmits data in cleartext by default and requires additional tunneling (e.g., over SSH) to be secure; it is not inherently encrypted and is not the standard secure remote access technology for Linux servers. Option D is wrong because Telnet transmits all data, including credentials, in plaintext over TCP port 23, providing no encryption or security, and is obsolete for secure remote administration.

159
MCQmedium

During a software deployment, a technician must dispose of 50 unused software license CDs. The CDs are still sealed. What is the most environmentally friendly way to handle them?

A.Throw them in the general office trash bin.
B.Shred them and put the pieces in the recycling bin.
C.Donate them to a local school or non-profit that can use them.
D.Burn them in an incinerator to generate energy.
AnswerC

Donating functional optical media, such as software installation discs or educational content, to local schools or non-profit organizations is an excellent and environmentally responsible disposal method. This practice promotes reuse, significantly extending the lifecycle of the media and reducing the demand for new manufacturing. It directly minimizes electronic waste (e-waste) by diverting items from landfills and provides valuable resources to organizations that can benefit from them, aligning with sustainability principles.

Why this answer

Donating or recycling the CDs through a media recycling program is the best approach. CDs are made of polycarbonate and can be recycled, but they should not go into regular trash. This question tests knowledge of proper disposal of electronic media.

160
MCQhard

A company is migrating from Windows 10 to Windows 11 on 50 computers. After the upgrade, several users report that a critical line-of-business application no longer works. The application ran fine on Windows 10. You need to get it working without rolling back the entire OS. What is the most efficient solution?

A.Roll back all 50 computers to Windows 10 using the recovery partition.
B.Reinstall the application on each computer in Windows 10 compatibility mode.
C.Enable Hyper-V on each computer and run the application in a Windows 10 virtual machine.
D.Use the Windows 11 'Reset this PC' feature to reinstall Windows 11 and then reinstall the application.
AnswerB

Reinstalling the application and configuring it to run in Windows 10 compatibility mode is the most efficient and least disruptive solution. This built-in Windows feature uses compatibility shims to emulate the environment of an older operating system, often resolving minor API calls or system behavior differences that cause issues. It allows the company to retain the benefits of Windows 11 while addressing the specific application's needs without a full OS downgrade.

Why this answer

Windows 11 includes a Windows 10 compatibility mode that can be applied to individual applications. Using the Application Compatibility Toolkit (ACT) or the built-in compatibility troubleshooter to set the application to run in Windows 10 compatibility mode is the most efficient fix, as it does not require a full OS rollback.

161
MCQmedium

A company policy requires that all web traffic be filtered to block known malicious sites. You need to implement this on the network without installing software on each client. What should you configure?

A.Enable Windows Defender Firewall on each workstation
B.Configure a DNS filtering service on the router or DNS server
C.Install a browser extension on all computers
D.Set the browser security level to high
AnswerB

Configuring a DNS filtering service on the router or a dedicated DNS server is the most effective and scalable solution for enforcing company web traffic policies. This service intercepts DNS requests, resolving known malicious or policy-violating domains to a block page or non-existent IP address before the connection can even be established. By centralizing this control, all devices on the network automatically adhere to the policy without individual client configuration, making it difficult for users to bypass.

Why this answer

A DNS filtering service works at the network level by resolving domain names against a blocklist of known malicious sites. By configuring this on the router or DNS server, all client traffic is filtered transparently without requiring any software installation on individual workstations, which satisfies the policy requirement.

Exam trap

A common trap on the CompTIA A+ exam is confusing host-based and network-based security controls. Candidates may choose a host-based solution (like firewall or browser settings) instead of recognizing that DNS filtering is a network-level, agentless method that meets the 'no client software' constraint.

How to eliminate wrong answers

Option A is wrong because Windows Defender Firewall filters traffic based on ports and IP addresses, not domain names, and it cannot block specific malicious websites by URL. Option C is wrong because installing a browser extension requires software installation on each client, which violates the 'without installing software on each client' requirement. Option D is wrong because setting the browser security level to high only restricts browser features (e.g., scripts, ActiveX) and does not block access to specific malicious sites by domain or URL.

162
MCQmedium

A small business uses a shared iMac for customer check-ins. The manager wants to restrict which apps users can open and prevent changes to system settings without creating separate user accounts. Which macOS feature should you configure to meet this requirement?

A.Enable FileVault full-disk encryption
B.Configure Parental Controls (Screen Time) for the user account
C.Use the Guest User account
D.Apply a firmware password
AnswerB

Configuring Parental Controls, now integrated within Screen Time in macOS, is the most effective solution for this scenario. This feature allows an administrator to precisely define which applications a standard user account can access, block specific apps entirely, set time limits for app usage, and restrict modifications to critical system settings. By applying these granular restrictions to the shared customer account, the business can ensure customers only interact with approved applications and cannot alter the system configuration.

Why this answer

Parental Controls (Screen Time) allows administrators to restrict app usage and system settings changes on a per-user basis without creating separate user accounts. This feature can limit which applications a user can open and prevent modifications to system preferences, meeting the manager's requirement directly.

Exam trap

The trap here is that candidates often confuse Guest User accounts with managed restrictions, not realizing that Guest User only provides a clean session without persistent data but no app or settings controls.

How to eliminate wrong answers

Option A is wrong because FileVault provides full-disk encryption to protect data at rest, not application or settings restrictions. Option C is wrong because the Guest User account allows temporary access with no persistent data but does not provide granular controls to restrict specific apps or prevent system setting changes. Option D is wrong because a firmware password prevents unauthorized users from booting from external devices or accessing recovery mode, but it does not restrict app usage or system settings within macOS.

163
MCQeasy

A user reports that their laser printer is producing faint, streaky prints and has a strong ozone smell. The printer has been in use for three years. What is the most important safety procedure to follow before attempting to service the printer?

A.Replace the toner cartridge immediately.
B.Unplug the printer and discharge the high-voltage power supply.
C.Clean the corona wire with isopropyl alcohol.
D.Reset the printer to factory defaults.
AnswerB

This is the paramount safety procedure when working inside a laser printer. Laser printers utilize high-voltage components, such as the fuser assembly and transfer corona, which can store dangerous electrical charges in capacitors even after the device is powered down. Unplugging the printer removes the primary power source, and discharging the high-voltage power supply ensures that residual charges are safely dissipated, preventing severe electric shock during subsequent troubleshooting or maintenance.

Why this answer

The strong ozone smell indicates a high-voltage issue, likely with the corona wire or power supply. Before servicing, you must unplug the printer and discharge the high-voltage power supply to prevent electric shock, as laser printers store lethal voltages in capacitors even when powered off.

Exam trap

CompTIA often tests the distinction between troubleshooting steps and mandatory safety procedures, trapping candidates who confuse cleaning or replacing parts with the prerequisite of power isolation and discharge.

How to eliminate wrong answers

Option A is wrong because replacing the toner cartridge does not address the safety hazard of high-voltage discharge and is a troubleshooting step, not a safety procedure. Option C is wrong because cleaning the corona wire with isopropyl alcohol is a maintenance task that should only be performed after power is disconnected and high voltage is discharged; doing it first risks electric shock. Option D is wrong because resetting to factory defaults is a software configuration step that does not eliminate the risk of high-voltage shock and does not resolve the physical safety concern.

164
MCQeasy

During a security audit, a Linux server is found to have a configuration file that is world-writable. The file /etc/app/config.cfg must only be readable and writable by the root user. Which command should the administrator run?

A.chmod 777 /etc/app/config.cfg
B.chmod 644 /etc/app/config.cfg
C.chmod 600 /etc/app/config.cfg
D.chmod 400 /etc/app/config.cfg
AnswerC

Octal 600 assigns read and write permissions exclusively to the file's owner, typically the 'root' user for system configuration files. Crucially, it explicitly revokes all permissions – read, write, and execute – for both the file's group and all other users on the system. This configuration ensures that only the designated administrator can view or modify the file's contents, providing the highest level of confidentiality and integrity for a critical configuration file.

Why this answer

`chmod 600` sets the file permissions to read and write for the owner (root) and no permissions for group or others. This satisfies the requirement that only root can read and write `/etc/app/config.cfg`, as root is the owner of the file.

Exam trap

The trap here is that candidates may confuse the numeric permission values, often picking `644` (thinking it restricts write access) or `400` (thinking read-only is sufficient), while overlooking the explicit requirement for both read and write by root.

How to eliminate wrong answers

Option A is wrong because `chmod 777` grants read, write, and execute permissions to everyone (owner, group, others), making the file world-writable and world-executable, which violates the security requirement. Option B is wrong because `chmod 644` grants read and write to the owner but read-only to group and others, meaning non-root users can still read the file, which does not meet the 'only root' condition. Option D is wrong because `chmod 400` grants read-only to the owner (root) and no permissions to group or others, but the requirement explicitly states the file must be both readable and writable by root, so write permission is missing.

165
MCQeasy

A technician needs to deploy a configuration change to 50 Windows 10 computers using a script. The script must check if a specific registry key exists before modifying it. Which scripting construct should be used?

A.A for loop
B.A while loop
C.An if-else statement
D.A try-catch block
AnswerC

An if-else statement is the most appropriate control structure for this scenario because it explicitly allows a script to evaluate a specific condition, such as the existence of a registry key. If the condition evaluates to true (e.g., the key exists), a defined block of code is executed. Optionally, an 'else' block can be executed if the condition is false, providing a clear path for conditional logic and ensuring the configuration change is applied only when necessary or handled differently if the key is absent.

Why this answer

The script needs to conditionally execute code based on whether a registry key exists. An if-else statement is the correct construct for this because it evaluates a condition (e.g., Test-Path 'HKLM:\Software\MyKey') and executes one block if true (modify the key) and another if false (skip or create). Loops are for repetition, not conditional branching, and try-catch handles runtime errors, not existence checks.

Exam trap

The trap here is that candidates confuse conditional logic (if-else) with error handling (try-catch), thinking that checking for existence requires exception handling, when in fact a simple conditional test is the correct and more efficient approach.

How to eliminate wrong answers

Option A is wrong because a for loop is designed for iterating over a sequence or a fixed number of times, not for making a single conditional decision about a registry key's existence. Option B is wrong because a while loop repeats a block of code as long as a condition is true, which is unnecessary for a one-time check and could cause an infinite loop if misused. Option D is wrong because a try-catch block is used to handle exceptions (runtime errors) such as access denied or missing paths, not to test for the existence of a registry key before modification.

166
MCQmedium

A technician is assisting a user who is visibly upset because their critical presentation file was deleted accidentally. The user is speaking loudly and interrupting. What is the best way to handle this situation professionally?

A.Politely ask the user to calm down and speak more quietly so you can understand the issue.
B.Interrupt the user to explain that files can often be recovered from the Recycle Bin or backup.
C.Listen without interrupting, then say, "I can see this is urgent. Let's check the Recycle Bin first, and if it's not there, we have backups."
D.Transfer the user to a supervisor because the user is being difficult.
AnswerC

This response exemplifies best practices in customer service by first validating the user's emotional state with empathy ("I can see this is urgent"). It then immediately transitions into a clear, logical, and reassuring technical troubleshooting plan, starting with common, quick solutions like the Recycle Bin. Furthermore, it provides a confident fallback solution (backups), which effectively de-escalates the situation and instills user confidence in the technician's ability to resolve the issue.

Why this answer

It demonstrates active listening and empathy while immediately addressing the technical issue. The technician first allows the user to vent without interruption, then acknowledges the urgency and proposes a clear, step-by-step recovery plan starting with the Recycle Bin (a common first-resort recovery method) and escalating to backups if needed. This approach de-escalates the emotional situation while efficiently moving toward a solution, which is key for professional customer service in IT support.

Exam trap

CompTIA often tests the candidate's ability to balance empathy with technical action; the trap here is that candidates may choose Option B (interrupting with a solution) because they focus solely on technical correctness, ignoring the professionalism and communication skills required to de-escalate an emotional user.

How to eliminate wrong answers

Option A is wrong because telling an upset user to 'calm down' can be perceived as dismissive and may escalate the situation; it does not address the technical problem. Option B is wrong because interrupting the user, even with a valid technical solution, can increase frustration and prevent the technician from gathering full details about the file deletion (e.g., whether it was permanently deleted or from a specific location). Option D is wrong because transferring a user solely for being upset avoids the technician's responsibility to handle emotional situations professionally and delays resolution; it should only be done if the issue is beyond the technician's scope or authority.

167
MCQhard

A user reports that their Windows 10 PC is unable to connect to network shares on a server, but internet access works fine. You suspect the 'Workstation' service is not running. Which administrative tool should you use to verify and start this service?

A.Task Manager > Startup tab to check if the service is enabled.
B.Network and Sharing Center to run the network troubleshooter.
C.Services console to locate the 'Workstation' service and start it.
D.Device Manager to reinstall the network adapter driver.
AnswerC

The Services console (services.msc) is the definitive administrative tool for managing all Windows services. The 'Workstation' service (also known as LanmanWorkstation) is crucial for enabling client-side Server Message Block (SMB) protocol functionality, allowing a Windows PC to connect to and access shared folders, printers, and other resources on a network. If this service is stopped, the client cannot establish SMB connections, directly preventing access to network shares. Starting this service through the console restores the necessary functionality.

Why this answer

The 'Workstation' service (LanmanWorkstation) is a core Windows service that enables the computer to initiate outbound SMB connections to network shares. The Services console (services.msc) is the correct administrative tool to check the status of this service and start it if it is stopped. Option C directly addresses the need to verify and manage this service.

Exam trap

The trap here is that candidates may confuse a service issue with a driver or network configuration problem, leading them to choose Device Manager or Network and Sharing Center instead of the Services console.

How to eliminate wrong answers

Option A is wrong because the Task Manager Startup tab only manages programs that launch at user logon, not Windows services; the 'Workstation' service is a system service controlled via the Services console or SC command. Option B is wrong because Network and Sharing Center runs network troubleshooters that diagnose connectivity issues like IP configuration or DNS, but cannot start or stop Windows services. Option D is wrong because Device Manager is used to manage hardware drivers; reinstalling the network adapter driver would not resolve a service that is stopped, and the issue is not driver-related.

168
MCQmedium

An organization is moving to a cloud-based system and needs to dispose of several tape backup cartridges that contain years of financial data. The tapes are LTO-5 and are still readable. Which destruction method is most appropriate?

A.Overwrite the tapes with a bulk eraser or degausser.
B.Perform a quick format of the tapes using a tape drive.
C.Reuse the tapes for non-sensitive data after deleting the files.
D.Burn the tapes in an industrial incinerator.
AnswerA

A bulk eraser or degausser applies a strong, fluctuating magnetic field to the entire tape, effectively randomizing the magnetic domains that store data. This process completely neutralizes the magnetic patterns, rendering all previously recorded data unreadable and unrecoverable by any means, including advanced forensic techniques. Degaussing is a highly effective and industry-standard method for securely sanitizing magnetic storage media like tapes, ensuring compliance with data privacy regulations.

Why this answer

A degausser or bulk eraser generates a powerful magnetic field that disrupts the magnetic domains on the LTO-5 tape media, rendering the previously stored data unrecoverable. This method is the most appropriate for LTO-5 tapes because it physically destroys the magnetic encoding without requiring a compatible tape drive, and it is faster and more reliable than attempting to overwrite the entire tape. For secure disposal of magnetic media containing sensitive financial data, degaussing is the industry-standard approach when physical destruction is not mandated.

Exam trap

CompTIA A+ often tests the misconception that a quick format or file deletion is sufficient for secure data destruction on magnetic media, when in fact only degaussing or physical destruction ensures the data is irrecoverable.

How to eliminate wrong answers

Option B is wrong because a quick format only erases the file system index or directory structure, not the underlying data on the tape; the financial data remains recoverable with forensic tools. Option C is wrong because simply deleting files or reusing the tapes after file deletion does not remove the residual magnetic signature of the original data, leaving it vulnerable to recovery using specialized equipment. Option D is wrong because while incineration would physically destroy the tapes, it is unnecessarily extreme, costly, and environmentally hazardous for LTO-5 cartridges; degaussing is the appropriate and sufficient method for magnetic media that does not require physical destruction.

169
MCQmedium

A helpdesk technician receives a call from an employee who says their smart card stopped working for building access. The employee is in a hurry and asks the technician to remotely disable the card and issue a temporary PIN for the day. What should the technician do first?

A.Disable the smart card and provide a temporary PIN as requested.
B.Ask the employee to visit the security office in person with a photo ID.
C.Reset the smart card remotely and test it with a badge reader.
D.Send a temporary PIN via email to the employee's company address.
AnswerB

In-person verification with a photo ID ensures the request is legitimate before making changes.

Why this answer

Smart card credentials for physical access are typically managed by a separate physical security system (e.g., an access control server), not the helpdesk's IT identity management system. The technician cannot remotely disable the card or issue a temporary PIN without proper authorization and verification of the caller's identity. The standard procedure is to require in-person verification with a photo ID at the security office to prevent social engineering attacks.

Exam trap

The trap here is that candidates assume the helpdesk has full control over all credential types (logical and physical) and can perform remote operations on smart cards, when in fact physical access systems are usually separate and require in-person identity verification.

How to eliminate wrong answers

Option A is wrong because disabling a smart card and issuing a temporary PIN without verifying the caller's identity violates security policy and could allow an attacker to gain unauthorized physical access. Option C is wrong because the technician cannot reset or test a smart card remotely; smart cards are physical tokens that require local interaction with a reader, and remote testing is not possible. Option D is wrong because sending a temporary PIN via email is insecure; email is not encrypted end-to-end by default and could be intercepted, and the PIN should be delivered through a secure out-of-band method.

170
MCQeasy

A technician is installing a new power supply in a desktop computer. After unplugging the system, what should the technician do before touching any internal components?

A.Wear a grounding strap and immediately open the case.
B.Press and hold the power button for 10 seconds to drain residual charge, then wear an ESD strap.
C.Spray the interior with compressed air to remove dust before touching anything.
D.Remove the CMOS battery first to ensure no power remains.
AnswerB

This discharges the capacitors and reduces shock risk; the ESD strap then prevents static damage.

Why this answer

Pressing and holding the power button for 10 seconds after unplugging the system discharges the remaining charge in the power supply capacitors and other components, reducing the risk of electric shock or damage. Wearing an ESD strap then provides a path to ground for static electricity, protecting sensitive internal components from electrostatic discharge.

Exam trap

CompTIA often tests the misconception that simply unplugging the system makes it safe to work inside, or that removing the CMOS battery is the correct way to eliminate all power, when in fact the primary danger is the residual charge in the power supply capacitors.

How to eliminate wrong answers

Option A is wrong because immediately opening the case and wearing a grounding strap without first draining residual charge from capacitors can expose the technician to a shock hazard; the power supply can hold a dangerous charge for minutes after being unplugged. Option C is wrong because spraying compressed air into the interior before discharging residual power can blow dust into sensitive areas and does not address the immediate safety step of draining stored energy. Option D is wrong because removing the CMOS battery does not discharge the main power supply capacitors; the CMOS battery only powers the real-time clock and BIOS settings, and its removal does not eliminate the high-voltage charge in the PSU.

171
MCQmedium

A company is relocating and needs to dispose of 50 old desktop computers with HDDs that contain sensitive client data. The policy requires data destruction to be verifiable and the drives to be physically destroyed. Which method meets these requirements?

A.Use a degausser and then donate the drives to a school.
B.Overwrite each drive with three passes of random data.
C.Send the drives to a certified e-waste recycler for shredding.
D.Reformat each drive and install a fresh OS for reuse.
AnswerC

Sending the drives to a certified e-waste recycler for shredding ensures complete physical destruction of the storage media, rendering any data absolutely unrecoverable. This method directly satisfies a company policy requiring physical destruction and provides an auditable chain of custody, often including a certificate of destruction from the recycler. This approach also adheres to environmental regulations for electronic waste disposal, ensuring responsible and secure asset retirement.

Why this answer

Physical destruction methods like shredding or crushing provide verifiable destruction (e.g., through a certificate of destruction) and ensure the drives cannot be reused, meeting strict security policies. Degaussing also destroys data but may not physically destroy the drive.

172
MCQhard

A company's security policy requires that all workstations use a host-based firewall to block incoming connections except for specific allowed applications. A technician needs to configure this on a Windows 10 PC. Which tool should they use?

A.Windows Defender Antivirus settings
B.Windows Defender Firewall with Advanced Security
C.Group Policy Editor
D.Network and Sharing Center
AnswerB

This Microsoft Management Console (MMC) snap-in, accessible via wf.msc, is the definitive tool for granularly configuring the host-based firewall on a Windows workstation. It allows technicians to create highly specific inbound and outbound rules based on applications, service ports, protocols (TCP/UDP), IP addresses, and even user or computer accounts. This advanced interface is essential for implementing detailed security policies that require precise control over network traffic flow, such as allowing specific applications while blocking others.

Why this answer

The Windows Defender Firewall with Advanced Security (wf.msc) is the correct tool because it provides granular control over inbound rules, allowing the technician to block all incoming connections by default and then create explicit allow rules for specific applications. This meets the security policy requirement for a host-based firewall that blocks incoming traffic except for permitted applications.

Exam trap

CompTIA often tests the distinction between basic firewall settings (accessible via Control Panel) and the Advanced Security console, where candidates mistakenly choose the simpler interface or confuse firewall management with antivirus or group policy tools.

How to eliminate wrong answers

Option A is wrong because Windows Defender Antivirus settings manage malware protection, not firewall rules; it cannot create or modify inbound connection rules. Option C is wrong because Group Policy Editor (gpedit.msc) is used to configure system-wide policies across a domain, not for per-workstation firewall rule management on a standalone Windows 10 PC. Option D is wrong because Network and Sharing Center is a network status and troubleshooting interface; it does not provide the advanced inbound rule configuration needed to block all incoming connections except specific applications.

173
MCQhard

During a security audit, a technician finds that a user's workstation was infected with malware after the user inserted a USB drive found in the parking lot. The drive was labeled 'Employee Salary Info Q4'. What social engineering principle did the attacker exploit?

A.Scarcity
B.Baiting
C.Pretexting
D.Tailgating
AnswerB

Baiting is a social engineering attack where an attacker leaves a physical device, such as a USB flash drive, CD/DVD, or even a malicious mobile charging station, infected with malware in a public or semi-public location. The goal is to entice an unsuspecting victim, driven by curiosity or the desire for free content, to pick up the device and insert it into their computer or connect to it, thereby executing the malicious payload. This method directly exploits human curiosity and the inherent trust in physical objects to compromise a system.

Why this answer

Baiting is the correct answer because the attacker exploited the victim's curiosity by leaving a malware-infected USB drive in a visible location, labeled with an enticing message ('Employee Salary Info Q4'). When the user inserted the drive, the malware executed automatically (e.g., via Autorun.inf in Windows), compromising the workstation. This is a classic baiting attack, which relies on offering something desirable to trick the victim into performing a risky action.

Exam trap

The trap here is that candidates confuse baiting with pretexting because both involve deception, but baiting specifically uses a physical lure (like a USB drive) to trigger an action, whereas pretexting relies on a fabricated story or identity to gain information.

How to eliminate wrong answers

Option A (Scarcity) is wrong because scarcity involves creating a false sense of urgency or limited availability (e.g., 'Only 5 licenses left!'), not leaving a physical device to be found. Option C (Pretexting) is wrong because pretexting requires the attacker to fabricate a false identity or scenario (e.g., pretending to be IT support) to extract information, not relying on the victim's curiosity about a found object. Option D (Tailgating) is wrong because tailgating involves an unauthorized person physically following an authorized person into a restricted area, not leaving a malicious device for the victim to pick up and use.

174
MCQeasy

After deploying a new application to 50 workstations, several users report that the application crashes on launch. You need to quickly check if the application is running on a remote computer. Which command should you use?

A.regsvr32 /s C:\App\core.dll
B.ipconfig /flushdns
C.chkdsk C:
D.tasklist /S remotePC
AnswerD

The `tasklist /S remotePC` command is specifically designed to display a list of all running processes on a specified remote computer. By providing the hostname or IP address of the `remotePC`, an administrator can effectively query the target workstation and identify if the newly deployed application's executable is present in the process list. Its presence directly confirms that the application is actively running, making it an ideal tool for remote application status verification.

Why this answer

The `tasklist /S remotePC` command lists all running processes on the specified remote computer. If the application's process appears in the list, it indicates that the application is running. This is a quick way to verify execution status without needing to inspect DLL registration manually.

The other options either run locally (`regsvr32`, `ipconfig`, `chkdsk`) or perform unrelated tasks.

175
MCQeasy

A user calls the help desk, frantic because their banking app shows an unauthorized transfer of $500. They say they received a call earlier from 'bank security' asking them to install a remote access tool to 'verify their account'. What type of social engineering attack did the user fall victim to?

A.Phishing
B.Vishing
C.Smishing
D.Shoulder surfing
AnswerB

Vishing, or voice phishing, is a social engineering tactic that utilizes telephone calls to trick individuals into divulging personal or financial information, installing malware, or performing other actions detrimental to their security. Attackers often impersonate legitimate organizations, such as banks, government agencies, or tech support, creating a sense of urgency or fear to manipulate the victim. This method directly matches the scenario where a user is frantic after a phone call-initiated attack.

Why this answer

The user received a phone call (voice channel) and was tricked into installing remote access software, which is the hallmark of vishing (voice phishing). Unlike phishing, which uses email or malicious links, vishing exploits telephone systems and social engineering to gain unauthorized access or sensitive information.

Exam trap

CompTIA A+ 220-1202 often tests the distinction between vishing and phishing by emphasizing the communication medium (voice call vs. email), so candidates mistakenly choose phishing when the attack vector is a phone call rather than a digital message.

How to eliminate wrong answers

Option A is wrong because phishing typically involves deceptive emails or websites that trick users into clicking a link or entering credentials, not a phone call requesting software installation. Option C is wrong because smishing uses SMS text messages to deliver malicious links or requests, not a live voice call. Option D is wrong because shoulder surfing relies on physically observing a user's screen or keystrokes, not a remote phone-based interaction.

176
MCQhard

A technician needs to deploy a custom configuration profile to 20 Mac computers in a small office without using a third-party MDM. The profile must enforce Wi-Fi settings and disable iCloud. Which macOS tool can create and sign this configuration profile?

A.Apple Configurator
B.System Settings > Profiles
C.Terminal with 'profiles' command
D.Profile Manager in macOS Server
AnswerA

Apple Configurator is the correct tool because it provides a graphical user interface specifically designed for creating, editing, and digitally signing custom configuration profiles (.mobileconfig files) for both macOS and iOS/iPadOS devices. This standalone utility is ideal for technicians needing to deploy specific settings, restrictions, or network configurations to a small number of devices without the overhead of a full Mobile Device Management (MDM) solution.

Why this answer

Apple Configurator is the correct tool because it can create and sign custom configuration profiles (.mobileconfig files) for macOS without requiring a third-party MDM. It allows a technician to specify Wi-Fi settings and restrictions like disabling iCloud, then export the signed profile for manual deployment to the 20 Macs via USB or email.

Exam trap

Candidates often confuse Apple Configurator (which creates and signs profiles) with built-in tools like System Settings or the 'profiles' terminal command, which only install or manage existing profiles—not create or sign them.

How to eliminate wrong answers

Option B is wrong because System Settings > Profiles is only for viewing and manually installing profiles that are already signed, not for creating or signing them. Option C is wrong because the Terminal 'profiles' command can install, remove, or list profiles but cannot create or sign a new configuration profile from scratch. Option D is wrong because Profile Manager in macOS Server requires a running MDM service and is considered a third-party MDM solution, which the question explicitly excludes.

177
MCQmedium

A user reports that their Windows 10 PC is unable to connect to shared network folders on the office server. You need to verify that the necessary network discovery and file sharing services are running. Which administrative tool should you open to check the status of services like 'Function Discovery Resource Publication' and 'SSDP Discovery'?

A.Network and Sharing Center
B.Device Manager
C.Services.msc
D.Task Manager
AnswerC

The Services Microsoft Management Console (MMC) snap-in, `services.msc`, is the dedicated tool for viewing, starting, stopping, pausing, resuming, and configuring the startup type of all Windows services. This includes critical services like 'Function Discovery Resource Publication' and 'SSDP Discovery,' which are essential for network discovery functionality. It provides granular control over these background processes, making it the correct utility for diagnosing and resolving service-related issues.

Why this answer

The 'Services.msc' (Services console) is the dedicated Microsoft Management Console (MMC) snap-in used to start, stop, and configure Windows services. To verify that 'Function Discovery Resource Publication' (which publishes the machine's resources for network discovery) and 'SSDP Discovery' (which implements the Simple Service Discovery Protocol for UPnP devices) are running, you must open the Services console. Network and Sharing Center only shows connection status and sharing settings, not the underlying service state.

Exam trap

The trap here is that candidates often confuse the 'Network and Sharing Center' (which displays network discovery settings) with the actual service management console, not realizing that the service state must be verified separately in Services.msc because the GUI toggle in Network and Sharing Center only changes the firewall rules, not the underlying service status.

How to eliminate wrong answers

Option A is wrong because Network and Sharing Center is a GUI for viewing network status, setting up new connections, and managing sharing profiles; it does not display or allow control of individual Windows services like 'Function Discovery Resource Publication' or 'SSDP Discovery'. Option B is wrong because Device Manager is used to manage hardware drivers and devices, not software services; it has no interface for service state or startup type. Option D is wrong because Task Manager shows running processes and performance metrics, but it does not list system services by their service name or provide controls for service startup type; it only shows a limited view of processes under the 'Services' tab, not the full service management console.

178
MCQmedium

A technician is writing a PowerShell script to check the last boot time of a remote computer. The script uses Get-CimInstance Win32_OperatingSystem. The script works locally but fails with an access denied error when targeting a remote machine. Both computers are domain-joined and the technician has admin rights. What is the most likely issue?

A.The remote computer does not have PowerShell installed.
B.The remote computer has Windows Firewall blocking WMI traffic.
C.The script uses an incorrect namespace.
D.The technician is not a member of the Remote Management Users group.
AnswerB

For remote WMI queries to succeed, the Windows Firewall on the target computer must be configured to allow inbound WMI traffic. This typically involves enabling specific firewall rules, such as "Windows Management Instrumentation (WMI)" or "Remote Administration (WMI-In)", which permit DCOM and RPC connections over the necessary ports. If these rules are not enabled, the firewall will block the communication attempts, resulting in a connection failure for Get-CimInstance.

Why this answer

Get-CimInstance uses the WS-Management (WSMan) protocol, which relies on WinRM. By default, Windows Firewall blocks inbound WinRM traffic on port 5985 (HTTP) and 5986 (HTTPS). Even though the technician has admin rights and both machines are domain-joined, the remote firewall must allow WinRM traffic for the CIM session to succeed.

The local success is because no firewall traversal is needed.

Exam trap

CompTIA often tests the misconception that access denied errors are always due to permissions or group membership, when in fact network-level firewall blocking of WinRM/WMI traffic is a frequent real-world cause.

How to eliminate wrong answers

Option A is wrong because PowerShell is not required on the remote machine for Get-CimInstance; it uses WMI via WinRM, which only requires the WMI service to be running. Option C is wrong because the default namespace for Win32_OperatingSystem is root/cimv2, which is correct and not the cause of an access denied error. Option D is wrong because the Remote Management Users group is not required for WMI access; membership in the local Administrators group on the remote computer is sufficient for WMI queries.

179
MCQmedium

A technician is troubleshooting a remote user's inability to connect to the corporate network via VPN. The user can ping the VPN server's public IP address. Which step should the technician take next to isolate the issue?

A.Reboot the user's modem
B.Check the VPN client logs for errors
C.Disable the user's firewall
D.Reinstall the VPN client software
AnswerB

Checking the VPN client logs is the most effective and efficient diagnostic step for troubleshooting VPN connection failures. These logs provide detailed information, including specific error codes, timestamps, and messages related to authentication attempts, certificate validation, tunnel negotiation, and network connectivity issues. Analyzing these entries allows a technician to pinpoint the exact cause of the failure, such as incorrect credentials, firewall blocks, or incompatible security parameters, guiding precise corrective actions.

Why this answer

Since the user can reach the VPN server, the issue is likely at the authentication or configuration layer. Checking the VPN client logs provides detailed error messages that can pinpoint the problem.

180
MCQmedium

A technician is writing a PowerShell script to retrieve the IP configuration of all computers in a domain and output the results to a CSV file. The script must run on a management workstation and target remote machines. Which cmdlet should the technician use to execute commands on remote computers?

A.Invoke-Command
B.Enter-PSSession
C.Get-WmiObject
D.Out-File
AnswerA

This cmdlet is the primary tool for executing script blocks or individual commands on one or more remote computers using PowerShell Remoting. It establishes a non-interactive session, runs the specified code, and efficiently returns the results to the calling machine, making it ideal for large-scale data collection and automation tasks across an enterprise network.

Why this answer

Invoke-Command is the correct cmdlet because it is designed to execute PowerShell commands or script blocks on one or more remote computers and return the results to the local session. This allows the technician to run the IP configuration retrieval script against all domain computers from the management workstation and then pipe the output to Export-Csv.

Exam trap

CompTIA often tests the distinction between interactive remote sessions (Enter-PSSession) and one-off command execution (Invoke-Command), leading candidates to choose Enter-PSSession when the requirement is to run a script against multiple computers and capture output.

How to eliminate wrong answers

Option B (Enter-PSSession) is wrong because it creates an interactive, persistent session with a single remote computer, which is not suitable for running a script against multiple remote machines and capturing output to a CSV file. Option C (Get-WmiObject) is wrong because while it can retrieve WMI data from remote computers using the -ComputerName parameter, it is not a cmdlet for executing arbitrary PowerShell commands or script blocks; it is a specific cmdlet for WMI queries. Option D (Out-File) is wrong because it is used to send output to a text file on the local machine, not to execute commands on remote computers.

181
MCQmedium

A customer brings in a laptop that they want to recycle, but they are concerned about personal data. The laptop has a 256GB SSD and the customer wants to keep the laptop functional for resale. Which method should the technician recommend?

A.Remove the SSD and physically destroy it, then sell the laptop without a drive.
B.Use a degausser on the SSD.
C.Perform a standard format and reinstall Windows.
D.Use the 'Reset this PC' option with the 'Remove everything and clean the drive' setting.
AnswerD

The 'Reset this PC' option, specifically with the 'Remove everything and clean the drive' setting, is the most appropriate method for securely erasing data from an SSD while maintaining laptop functionality. This feature performs a secure wipe by overwriting all data sectors multiple times, often leveraging the SSD's built-in TRIM command and secure erase capabilities. This process renders previous data virtually unrecoverable, ensuring privacy before resale.

Why this answer

To use the built-in 'Reset this PC' with the 'Remove everything and clean the drive' option, which performs a secure wipe on SSDs. This ensures data is overwritten while keeping the laptop usable. Simple deletion or formatting is insufficient, and physical destruction would make the laptop unusable.

182
MCQmedium

A company is migrating to new laptops and needs to dispose of 50 old hard drives securely. The drives contain proprietary software and client data. The IT manager wants a method that is both environmentally friendly and compliant with data protection laws. Which disposal method should be chosen?

A.Donate the drives to a local charity after wiping them with a free tool.
B.Use a certified e-waste recycler that offers secure destruction and recycling.
C.Physically break the drives with a drill and dispose of them in the regular trash.
D.Perform a quick format and sell the drives online.
AnswerB

A certified e-waste recycler provides a secure and compliant solution for end-of-life data storage devices. These facilities adhere to strict industry standards, often employing physical destruction methods like shredding or degaussing, which guarantee irreversible data sanitization. This approach ensures sensitive corporate data cannot be recovered, simultaneously meeting regulatory compliance requirements and promoting environmentally responsible disposal of electronic components, thereby minimizing ecological impact.

Why this answer

Certified e-waste recyclers follow strict data destruction standards (e.g., NIST SP 800-88) and environmental regulations (e.g., R2 or e-Stewards certification). This ensures the drives are physically destroyed or degaussed to prevent data recovery, while responsibly recycling materials, meeting both security and compliance requirements.

Exam trap

Candidates often think that physical destruction (e.g., drilling) is sufficient for security, but the trap is that it must be combined with proper disposal (e.g., through a certified recycler) to be both environmentally compliant and legally defensible.

How to eliminate wrong answers

Option A is wrong because free wiping tools may not overwrite data to a secure standard (e.g., only a single pass or not covering hidden areas like HPA/DCO), and donating drives still risks residual data exposure if the tool fails or is misused. Option C is wrong because physically breaking drives with a drill does not guarantee complete destruction of all platters or chips, and disposing of them in regular trash violates environmental laws and can lead to data recovery from remaining fragments. Option D is wrong because a quick format only removes the file system pointers, leaving all data intact and easily recoverable with forensic tools, and selling drives online exposes proprietary software and client data to unauthorized parties.

183
MCQmedium

A small business owner wants to ensure that if a laptop is stolen, the data on the drive cannot be read. The laptop runs Windows 11 Pro. What is the most appropriate remediation?

A.Set a strong BIOS password
B.Enable BitLocker on the system drive
C.Install an antivirus with anti-theft features
D.Use a cloud backup service
AnswerB

BitLocker encrypts the entire drive, rendering data inaccessible without the key, even if the drive is removed.

Why this answer

BitLocker is the native full-disk encryption feature in Windows 11 Pro that encrypts the entire system drive, including the operating system, applications, and all user data. If the laptop is stolen, the data on the drive remains unreadable without the recovery key or TPM authentication, even if the drive is removed and attached to another computer. This directly addresses the requirement to prevent data access after theft.

Exam trap

The trap here is that candidates often confuse a BIOS password with drive encryption, thinking it secures the data, but BIOS passwords only control boot access and do not protect against physical drive removal and forensic analysis.

How to eliminate wrong answers

Option A is wrong because a BIOS password only prevents unauthorized booting or BIOS changes but does not encrypt the drive; the data can still be read by removing the drive and connecting it to another system. Option C is wrong because antivirus with anti-theft features typically provides location tracking, remote lock, or wipe capabilities, but it does not encrypt the drive at rest, so data remains accessible if the drive is removed. Option D is wrong because a cloud backup service protects against data loss but does not prevent an attacker from reading data already stored on the laptop's drive.

184
MCQmedium

A technician is tasked with deploying 50 Android tablets for a field sales team. The tablets need to have a consistent set of apps, settings, and security policies. The technician wants to avoid manually configuring each device. Which Android feature should the technician use?

A.Samsung DeX
B.Google Backup
C.Android Enterprise (Zero-Touch Enrollment)
D.Developer Options > OEM Unlocking
AnswerC

Android Enterprise, particularly with Zero-Touch Enrollment, is the ideal solution for deploying a large fleet of Android tablets. This system allows organizations to pre-configure devices through an authorized reseller, so when a new tablet is unboxed and connected to the internet, it automatically enrolls into the designated Mobile Device Management (MDM) solution. This seamless process enables IT administrators to remotely apply consistent security policies, configure network settings, and push required applications to all 50 devices without manual intervention on each tablet, ensuring standardized and secure deployment.

Why this answer

Android Enterprise Zero-Touch Enrollment allows IT administrators to provision devices automatically by associating them with a management provider (e.g., Samsung Knox, VMware Workspace ONE) via the manufacturer's portal. When the tablets are powered on and connected to Wi-Fi, they download a policy that enforces apps, settings, and security configurations without any manual intervention. This is the correct solution for deploying 50 tablets consistently.

Exam trap

The trap here is that candidates confuse Google Backup (a personal restore tool) with enterprise provisioning, or think Samsung DeX can manage device settings, when in fact only Android Enterprise Zero-Touch Enrollment automates bulk deployment of apps and policies.

How to eliminate wrong answers

Option A is wrong because Samsung DeX is a desktop-like interface for productivity, not a mass provisioning or enrollment feature. Option B is wrong because Google Backup is designed to restore personal user data (e.g., contacts, app data) from the cloud, not to enforce enterprise-wide policies or install a consistent set of apps across multiple devices. Option D is wrong because Developer Options > OEM Unlocking is used to unlock the bootloader for custom ROMs or rooting, which is a security risk and irrelevant to enterprise enrollment and policy deployment.

185
MCQeasy

A user reports that their Windows 10 computer runs a script every time they log in that maps a network drive, but the drive mapping fails intermittently. The script uses the 'net use' command. Which scripting element should be added to handle the failure gracefully and retry the mapping?

A.A comment line explaining the net use syntax
B.A variable to store the drive letter
C.An exit code check and a loop to retry the mapping
D.A 'pause' command after the net use line
AnswerC

Checking the exit code, often via ERRORLEVEL in batch or $LastExitCode in PowerShell, allows a script to programmatically determine the success or failure of the preceding command. When combined with a loop, the script can detect a failure and then re-attempt the net use command multiple times. This approach provides crucial fault tolerance, enabling the script to overcome transient network issues or temporary server unavailability until the mapping succeeds or a predefined retry limit is reached.

Why this answer

This question tests basic error handling in scripting. Adding error-checking logic, such as checking the exit code of 'net use' and retrying if it fails, makes the script more robust. A simple 'if errorlevel' or 'if %errorlevel% neq 0' construct allows the script to retry the command instead of failing silently.

186
MCQmedium

A customer calls to report that their laptop won't turn on. The technician suspects a dead battery. Which of the following responses demonstrates proper troubleshooting and professionalism?

A.Tell the customer to buy a new battery immediately.
B.Ask the customer to plug in the charger and see if any lights appear.
C.Say that the motherboard is likely dead and needs replacement.
D.Tell the customer to bring the laptop to the shop without further questions.
AnswerB

This is the most logical and effective initial troubleshooting step. By instructing the customer to connect the AC adapter, the technician can quickly ascertain if the laptop receives external power and if the charging circuitry or power-on sequence initiates, indicated by status lights. This action helps differentiate between a completely dead battery, a faulty AC adapter, or a more severe internal hardware failure, guiding subsequent diagnostic efforts.

Why this answer

A systematic approach to troubleshooting shows competence. Starting with simple checks and explaining each step keeps the customer informed and involved.

187
MCQeasy

During a software deployment, a technician must explain to a non-technical manager why a critical security update requires an immediate reboot of all workstations, even though it interrupts work. The manager is concerned about productivity loss. How should the technician communicate this?

A."The update fixes a vulnerability that could let attackers steal company data. A reboot is required to apply it. The risk of a breach outweighs the short downtime."
B."Just schedule the reboot for after hours and it won't affect productivity."
C."It's IT policy. We have to do this. Please inform your team."
D."The update is mandatory, but you can delay it for a week if needed."
AnswerA

This response effectively communicates the critical nature of the update by explaining the direct business impact: preventing data theft due to a vulnerability. It clearly states the technical requirement (reboot) and provides a strong justification by weighing the risk of a security breach against the short operational downtime. This approach demonstrates a technician's ability to translate technical issues into understandable business terms, fostering informed decision-making and cooperation from non-technical stakeholders.

Why this answer

It directly addresses the manager's concern about productivity loss by clearly explaining the security risk (data theft via an unpatched vulnerability) and why the reboot is necessary to apply the update. This approach uses risk-benefit language that a non-technical manager can understand, aligning with the CompTIA A+ objective of communicating technical requirements to stakeholders in business terms.

Exam trap

CompTIA often tests the candidate's ability to prioritize security over convenience and to communicate technical risks in business terms, so the trap here is choosing a technically correct but poorly communicated answer (like B or C) that fails to address the manager's legitimate productivity concerns.

How to eliminate wrong answers

Option B is wrong because it suggests scheduling the reboot for after hours, which may not be feasible if the security update requires an immediate reboot to close a critical vulnerability that is actively being exploited; delaying the reboot even a few hours could expose the network to attack. Option C is wrong because citing 'IT policy' without explaining the technical reason fails to build trust or address the manager's productivity concern, and it does not provide the necessary context for why the reboot cannot be deferred. Option D is wrong because allowing a one-week delay for a critical security update is irresponsible; the vulnerability could be exploited in the wild within hours, and delaying the patch violates security best practices and potentially compliance requirements.

188
MCQhard

A technician is investigating a security incident where multiple workstations on the same network are showing signs of infection: slow performance, unusual network traffic, and the presence of a file named 'svch0st.exe' in the Startup folder. The technician suspects a worm that spreads through network shares. What is the most effective containment strategy?

A.Run a full antivirus scan on all workstations simultaneously.
B.Disable network shares and isolate infected workstations from the network.
C.Update the antivirus definitions on one workstation and scan it.
D.Reboot all workstations into Safe Mode with Networking.
AnswerB

Disabling network shares and isolating infected workstations are critical immediate steps for containing a spreading worm. This action directly cuts off common propagation vectors, such as shared folders and network services, preventing the worm from infecting additional machines or escalating its impact. By segmenting the network and quarantining compromised systems, the technician effectively halts the spread, allowing for a more controlled and effective remediation process.

Why this answer

Disabling network shares and isolating infected workstations from the network is the most effective containment strategy because the worm spreads through network shares (SMB protocol). By cutting off the propagation vector (network shares) and isolating infected hosts, you prevent the worm from reaching other workstations, even if the malware is still active locally. This aligns with the immediate containment phase of incident response, which prioritizes stopping the spread over remediation.

Exam trap

The 220-1202 exam often tests the distinction between remediation (cleaning the infection) and containment (stopping the spread), and the trap here is that candidates choose a remediation action like scanning or updating definitions instead of the immediate containment step of disabling the propagation vector.

How to eliminate wrong answers

Option A is wrong because running a full antivirus scan on all workstations simultaneously does not stop the worm from actively spreading through network shares during the scan; the worm can continue to infect new systems while scans are running, and scanning without isolation is ineffective for containment. Option C is wrong because updating antivirus definitions on one workstation and scanning only that single system ignores the fact that the worm is already on multiple workstations and actively spreading via network shares; this does not contain the outbreak. Option D is wrong because rebooting all workstations into Safe Mode with Networking still leaves network shares enabled and the workstations connected to the network, allowing the worm to continue spreading via SMB; Safe Mode with Networking does not disable file sharing or isolate the systems.

189
MCQhard

A technician is investigating a security breach where sensitive customer data was exfiltrated. The only malware found is a hidden driver that intercepts keystrokes and sends them to a remote server. Which malware type is responsible, and what is the best removal strategy?

A.Spyware; remove by running a standard antivirus scan.
B.Keylogger; use a rescue disk to boot and run an anti-rootkit scanner.
C.Ransomware; restore from backup.
D.Adware; uninstall suspicious programs from Control Panel.
AnswerB

A keylogger operating as a rootkit embeds itself deeply within the operating system's kernel, allowing it to intercept keystrokes while remaining hidden from standard security software. Using a rescue disk allows the system to boot into a clean, uncompromised environment, bypassing the rootkit's stealth mechanisms. From this clean state, an anti-rootkit scanner can effectively detect and remove the malicious kernel-level components without the rootkit actively defending itself.

Why this answer

The malware is a hidden driver that intercepts keystrokes and sends them to a remote server, which is the classic behavior of a keylogger. Because it is a driver, it likely operates at the kernel level, making it a rootkit. Standard antivirus scans may miss it because the OS is compromised, so the best removal strategy is to boot from a rescue disk (clean OS) and run an anti-rootkit scanner to detect and remove the driver without the rootkit hiding itself.

Exam trap

The CompTIA A+ exam often tests the misconception that any malware that steals data is spyware, but the specific mechanism (hidden driver intercepting keystrokes) points to a keylogger, and the trap is that candidates overlook the need for a rescue disk because they assume a standard antivirus scan can remove kernel-level threats.

How to eliminate wrong answers

Option A is wrong because spyware typically collects browsing habits or personal data without necessarily intercepting keystrokes, and a standard antivirus scan is often ineffective against kernel-level drivers that hide from the OS. Option C is wrong because ransomware encrypts files and demands payment, not exfiltrates data via keystroke interception; restoring from backup does not remove the hidden driver. Option D is wrong because adware displays unwanted ads and is usually removed via Control Panel, but a hidden driver keylogger requires specialized tools like anti-rootkit scanners, not simple uninstallation.

190
MCQeasy

A customer reports that their laptop was stolen from a locked office over the weekend. The office door uses a standard key lock, and the laptop was not physically secured. Which physical security control would have most likely prevented this theft?

A.Use a smart card reader on the door
B.Install a security camera in the hallway
C.Attach a cable lock to the laptop
D.Enable BitLocker on the laptop
AnswerC

Attaching a cable lock directly to the laptop provides a robust physical security measure by anchoring the device to a fixed, immovable object. This significantly impedes the physical removal of the laptop, making it much harder and more time-consuming for a thief to steal without specialized tools or causing noticeable damage. It directly prevents the easy physical displacement of the asset.

Why this answer

This question tests knowledge of physical security controls that deter theft. A cable lock physically attaches the laptop to a desk, making it difficult to remove quickly. Key locks on doors alone are insufficient if someone gains access; cable locks provide a secondary layer of defense.

191
MCQeasy

A user reports that they can no longer connect to the company network from home using VPN. They confirm their internet connection is working and that they can browse websites. Which of the following should a technician check first to resolve the VPN connectivity issue?

A.Check if the VPN client software is up to date
B.Verify the user's VPN username and password
C.Restart the VPN server at the data center
D.Reinstall the network adapter drivers
AnswerB

Incorrect or expired user credentials, including the username and password, are an extremely common and easily overlooked cause of VPN connection failures. Authentication is the initial gateway to establishing a secure tunnel, and any mismatch or invalidation of these details will prevent the client from authenticating with the VPN server. Verifying these details with the user and potentially testing them is a fundamental and efficient first troubleshooting step, as it addresses a frequent point of failure without impacting other systems.

Why this answer

The user's internet connection is working (they can browse websites), which rules out general network connectivity issues. The most common cause of VPN authentication failure is incorrect or expired credentials, so verifying the username and password is the quickest and most logical first step before escalating to more complex troubleshooting.

Exam trap

CompTIA often tests the principle of 'start with the simplest and most likely cause'—the trap here is that candidates jump to advanced fixes like updating software or restarting servers, overlooking the basic credential check that resolves the majority of single-user VPN failures.

How to eliminate wrong answers

Option A is wrong because checking if the VPN client software is up to date is a secondary step; outdated client software typically causes compatibility or feature issues, not authentication failures, and the user's ability to browse indicates the client is at least launching. Option C is wrong because restarting the VPN server at the data center is a drastic, disruptive action that should only be taken after ruling out client-side and authentication issues; it is not a first-line troubleshooting step for a single user. Option D is wrong because reinstalling network adapter drivers addresses hardware or driver-level connectivity problems, but the user's internet is working, so the network adapter is functioning correctly.

192
MCQmedium

A user complains that their Android phone's battery drains extremely fast after a recent OS update. They have already tried restarting the device. What is the most likely cause and solution?

A.The update installed a malware app; perform a factory reset.
B.The update reset battery optimization settings; re-enable them.
C.The device is performing background indexing; wait a day or two.
D.The battery is failing due to the update; replace the battery.
AnswerC

After a major Android system update, devices often perform extensive background tasks such as re-indexing files, optimizing installed applications for the new OS version, rebuilding caches, and synchronizing data. These intensive processes utilize the CPU, storage, and network, leading to temporarily increased power consumption and noticeable battery drain. Allowing the device a day or two to complete these essential post-update operations typically resolves the issue as the system stabilizes and returns to normal power usage patterns.

Why this answer

After a major OS update, Android devices often perform background indexing of files, media, and app data to optimize search and performance. This process is CPU- and I/O-intensive, causing increased battery drain for 24–48 hours. The correct solution is to wait a day or two for indexing to complete, as restarting alone does not stop this background task.

Exam trap

CompTIA often tests the misconception that any post-update battery drain is due to malware or a failing battery, when in fact background system processes like indexing are the most common cause.

How to eliminate wrong answers

Option A is wrong because malware is not a typical consequence of an official OS update from the device manufacturer or carrier; a factory reset is an extreme and unnecessary step for temporary post-update battery drain. Option B is wrong because OS updates do not reset battery optimization settings; they may change default app permissions or background restrictions, but the core optimization settings remain intact. Option D is wrong because a battery does not suddenly fail due to a software update; battery degradation is gradual and unrelated to OS version changes.

193
MCQhard

A technician is troubleshooting a user's slow computer. The user mentions they received a call from 'Windows Support' saying their computer had a virus. The user gave the caller remote access to 'fix' it. Now, the computer is running slower and has strange pop-ups. What is the most likely consequence of this social engineering attack?

A.The computer is now part of a botnet used for DDoS attacks.
B.The attacker installed a keylogger to steal credentials and sensitive data.
C.The computer's BIOS has been corrupted.
D.The hard drive has been physically damaged.
AnswerB

A keylogger is a highly effective form of spyware designed to record every keystroke made on the compromised system. This allows an attacker to covertly capture sensitive information such as usernames, passwords, credit card numbers, and other personal data as the user types it. The exfiltrated data can then be used for identity theft, unauthorized financial transactions, or gaining access to other online accounts, directly leading to significant personal and financial compromise.

Why this answer

The attacker gained remote access to the user's computer under the guise of tech support. Once in, they installed a keylogger to capture keystrokes, which is a common payload in such social engineering attacks. This allows the attacker to steal credentials, banking information, and other sensitive data, explaining the continued slow performance and pop-ups.

Exam trap

CompTIA A+ often tests the distinction between generic malware effects (like botnet membership) and the specific, high-value goal of credential theft in social engineering scenarios, leading candidates to choose a broader but less precise answer.

How to eliminate wrong answers

Option A is wrong because while a botnet infection is possible, the immediate and most likely consequence of a tech support scam is credential theft via a keylogger, not necessarily DDoS participation. Option C is wrong because BIOS corruption requires specific, targeted firmware-level access and is not a typical outcome of a remote desktop session; the attacker would need to reboot into a special mode or use a BIOS flashing tool. Option D is wrong because physical hard drive damage cannot occur through remote access; the symptoms are caused by malicious software, not hardware failure.

194
MCQmedium

A technician is configuring a new virtual machine for a developer. The developer needs to run multiple isolated environments for testing, but the host machine has limited storage space. Which type of virtual disk configuration should the technician use to minimize storage usage while still allowing the VM to grow as needed?

A.Thick provisioning
B.Thin provisioning
C.Fixed-size disk
D.Dynamic disk
AnswerB

Thin provisioning is a virtual disk allocation method that allocates storage space on an as-needed basis, allowing the virtual machine's disk to grow incrementally as data is written to it. Initially, only a small amount of physical storage is consumed on the host, with additional blocks being allocated from the storage pool only when the VM actually writes new data. This approach significantly minimizes storage usage by avoiding the pre-allocation of unused space, making it ideal for environments where storage efficiency and oversubscription are critical.

Why this answer

Thin provisioning (Option B) allocates storage on demand, writing only the data blocks that are actually used, which minimizes initial storage consumption while allowing the virtual disk to grow dynamically up to its maximum configured size. This is ideal for the developer's scenario of multiple isolated test environments on a host with limited storage space.

Exam trap

The A+ exam often tests the distinction between thin provisioning and dynamic disks, where candidates mistakenly choose 'dynamic disk' because it sounds like it grows, but it is a Windows RAID-like volume manager, not a virtual disk provisioning type.

How to eliminate wrong answers

Option A is wrong because thick provisioning pre-allocates the entire virtual disk size at creation, consuming maximum storage immediately and defeating the goal of minimizing storage usage. Option C is wrong because a fixed-size disk is synonymous with thick provisioning, requiring the full allocated space upfront with no ability to grow dynamically. Option D is wrong because 'dynamic disk' is a Windows disk management concept unrelated to virtual disk provisioning; the correct VMware/Hyper-V term for on-demand allocation is thin provisioning.

195
MCQmedium

A user complains that their Remote Desktop session to a Windows 10 Pro workstation frequently disconnects after a few minutes of inactivity. The workstation is on a local network. Which setting should the technician modify on the host computer to prevent this?

A.Disable the screensaver
B.Increase the idle session limit in Remote Desktop settings
C.Change the power plan to High Performance
D.Enable Network Level Authentication
AnswerB

Increasing the idle session limit directly addresses the problem of premature disconnections. Remote Desktop Services on the host system incorporates specific policies, often configured via Group Policy or local security policy, that dictate how long an active session can remain idle before being automatically disconnected or terminated. By extending this configured timeout value, the Remote Desktop host will allow the user's session to persist for a longer duration of inactivity, preventing early disconnections.

Why this answer

The Remote Desktop Session Host (RDSH) has a configurable idle session limit that disconnects sessions after a period of inactivity. By default, Windows 10 Pro may enforce a short idle timeout (often 1-5 minutes) to conserve resources. Increasing this limit in the Remote Desktop Session Host settings (under Local Group Policy or the Remote Desktop Services configuration) prevents the automatic disconnection the user is experiencing.

Exam trap

The trap here is that candidates confuse the idle session timeout with power management or screensaver settings, assuming that preventing the screen from turning off will keep the RDP session alive, when in fact the disconnect is controlled by a dedicated Remote Desktop timeout policy.

How to eliminate wrong answers

Option A is wrong because disabling the screensaver prevents the screen from locking or turning off, but it does not affect the Remote Desktop idle session timeout, which is controlled by RDSH policies, not display settings. Option C is wrong because changing the power plan to High Performance prevents the computer from sleeping or reducing power, but the idle disconnect is a session-level timeout set in Remote Desktop services, not a power management feature. Option D is wrong because Network Level Authentication (NLA) is a security feature that requires pre-authentication before a full RDP connection is established; it does not control session disconnection due to inactivity.

196
MCQmedium

During a wireless site survey, a technician discovers that an employee has set up a personal wireless router in their cubicle, connected to the corporate network. This rogue access point is broadcasting an open SSID. Which security risk is most immediately concerning?

A.The rogue AP may cause radio frequency interference with the corporate WLAN.
B.The rogue AP provides an unencrypted entry point for attackers to access the corporate network.
C.The rogue AP will consume additional power from the corporate UPS.
D.The rogue AP's DHCP server may conflict with the corporate DHCP server.
AnswerB

A rogue access point, especially one configured without encryption or authentication (an open SSID), creates a critical vulnerability by providing an unauthorized and unsecured entry point directly into the corporate network. Attackers can easily connect to this unencrypted network, bypass perimeter defenses, and then launch various attacks, such as sniffing traffic, performing man-in-the-middle attacks, or attempting to access internal resources and sensitive data, posing an immediate and severe security breach.

Why this answer

The most immediate security risk of a rogue access point broadcasting an open SSID is that it provides an unencrypted entry point into the corporate network. Any attacker within range can associate with the open SSID and, because the AP is connected to the corporate LAN, gain direct access to internal resources without authentication or encryption, bypassing perimeter security controls.

Exam trap

The 220-1202 exam often tests the distinction between operational nuisances (interference, DHCP conflicts, power draw) and actual security threats, so the trap here is that candidates may focus on the technical annoyance of a rogue AP rather than the critical security implication of an unencrypted entry point.

How to eliminate wrong answers

Option A is wrong because while a rogue AP can cause RF interference, that is a performance issue, not a security risk, and the question specifically asks about the most immediately concerning security risk. Option C is wrong because power consumption from a single small AP is negligible and does not represent a meaningful security threat. Option D is wrong because a DHCP conflict is a network configuration problem that can cause connectivity issues, but it is not a security vulnerability; the open SSID allowing unauthorized network access is far more critical.

197
MCQeasy

A user reports that their workstation cannot connect to the company file server after a scheduled network maintenance window last night. The technician checks the change management records and finds no mention of any changes to the file server. What is the most likely cause of the issue?

A.The file server requires a firmware update
B.The maintenance window affected a network switch that the file server relies on
C.The user’s account password has expired
D.The file server’s hard drive has failed
AnswerB

A maintenance window implies changes were made to systems or infrastructure. If an undocumented or unannounced change occurred on a critical network device, such as a switch, router, or firewall, that provides the network path to the file server, it would directly explain a sudden loss of network access for user workstations. Even if the file server itself was untouched, its network connectivity could be severed or reconfigured incorrectly, leading to the workstation's inability to establish a connection post-maintenance.

Why this answer

The scheduled network maintenance window is the key clue: it likely involved changes to network infrastructure such as switches, routers, or VLAN configurations. If a network switch that the file server depends on was modified or rebooted during maintenance, the workstation would lose connectivity even though the file server itself was untouched. Change management records only track changes to the file server, not to network devices, so the absence of file server changes does not rule out a network-level cause.

Exam trap

CompTIA often tests the concept that change management records only reflect changes to the specific device in question, not to the broader network infrastructure, leading candidates to overlook network-level causes like a switch misconfiguration during maintenance.

How to eliminate wrong answers

Option A is wrong because a firmware update is a planned change that would be documented in change management; it is not a typical outcome of a maintenance window and would not suddenly cause a connectivity issue without prior notice. Option C is wrong because an expired password would prevent authentication but not block network connectivity to the file server; the user would still be able to ping or reach the server at the transport layer. Option D is wrong because a hard drive failure would cause the file server to become unresponsive or fail to boot, but the user would likely see a 'server not found' error rather than a simple connectivity loss, and such a failure is unrelated to the scheduled maintenance window.

198
MCQmedium

A technician is replacing a damaged power supply in a desktop PC. After removing the old unit, the technician notices a large capacitor on the motherboard is bulging. What should the technician do to safely handle this situation?

A.Proceed with installing the new power supply and ignore the bulging capacitor.
B.Use a screwdriver to short the capacitor leads to discharge it.
C.Wear insulated gloves and carefully remove the motherboard for replacement.
D.Apply electrical tape over the bulging capacitor to contain it.
AnswerC

Wearing insulated gloves is a crucial safety measure when handling internal computer components, especially near potentially charged capacitors, as it protects against accidental electrical shock. A bulging capacitor signifies a severe defect in the motherboard's power delivery system, making the entire board unreliable and potentially dangerous. Replacing the entire motherboard is the most effective and safest solution because it completely eliminates the faulty component and its associated risks, ensuring system stability and preventing future issues. This approach prioritizes technician safety and system integrity.

Why this answer

A bulging capacitor indicates a failed or failing component that can leak electrolyte, cause further damage, or even burst. The safest course is to wear insulated gloves to avoid electric shock or chemical exposure and replace the entire motherboard, as the capacitor cannot be safely repaired in the field. Ignoring it or attempting makeshift fixes risks short circuits, fire, or injury.

Exam trap

The trap here is that candidates may think a bulging capacitor is harmless or can be safely discharged with a screwdriver, but the exam tests the correct safety protocol of replacing the damaged component with proper personal protective equipment.

How to eliminate wrong answers

Option A is wrong because ignoring a bulging capacitor can lead to electrolyte leakage, short circuits, or catastrophic failure that may damage the new power supply or other components. Option B is wrong because shorting capacitor leads with a screwdriver can cause a dangerous spark, electric shock, or damage to the motherboard traces; capacitors should be discharged through a proper resistor or allowed to self-discharge. Option D is wrong because applying electrical tape does not address the internal failure, and the capacitor may still leak, burst, or cause a short circuit under load.

199
MCQmedium

A user reports that a shared file on a Linux server is not accessible to their team. The file permissions are -rwxr----- and the user is a member of the group 'staff'. The file's group owner is 'admin'. Which command should the administrator run to allow the staff group to read the file?

A.chmod 755 file
B.chmod g+r file
C.chgrp staff file
D.chown user:staff file
AnswerC

The `chgrp staff file` command directly changes the group ownership of the specified file from its current group (e.g., 'admin') to the 'staff' group. By doing so, any existing group permissions (e.g., read, write, execute) associated with the file will now apply to all members of the 'staff' group. This precisely resolves the access issue for the user's team by aligning the file's group ownership with their team's group, granting them the intended access without altering owner or 'others' permissions.

Why this answer

The file's current permissions (-rwxr-----) grant the owner full access and the group 'admin' read-only access, but the user is in the 'staff' group, not 'admin'. To allow the 'staff' group to read the file, the file's group owner must be changed to 'staff' using `chgrp staff file`. This ensures that the group read permission (r--) applies to members of the 'staff' group.

Exam trap

The trap here is that candidates often confuse 'chmod g+r' (which modifies permissions for the current group) with changing the group ownership, leading them to overlook the core issue that the file's group owner is 'admin', not 'staff'.

How to eliminate wrong answers

Option A is wrong because `chmod 755 file` sets permissions to -rwxr-xr-x, which would give read and execute to everyone, including users outside the intended group, and does not address the group ownership mismatch. Option B is wrong because `chmod g+r file` adds read permission for the current group owner ('admin'), not for the 'staff' group; the user is in 'staff', so this command does not grant access to the user's group. Option D is wrong because `chown user:staff file` changes both the owner and group to 'user' and 'staff', which is excessive and could disrupt other access controls; the requirement is only to change the group ownership to 'staff', not the file owner.

200
MCQhard

During a major software rollout, a technician discovers that the deployment script modifies a registry key that is also used by a legacy application. The change was not included in the original change request. What should the technician do?

A.Proceed with the deployment since the registry change is necessary for the new software.
B.Modify the script to skip the registry change and continue.
C.Stop the deployment and submit a new change request for the registry modification.
D.Document the registry change after the deployment is complete.
AnswerC

Stopping the deployment immediately prevents the execution of an unapproved and potentially harmful registry modification. Submitting a new change request ensures that the proposed registry alteration undergoes proper review, impact assessment, testing, and approval by all relevant stakeholders, thereby mitigating risks to both the new software and existing legacy applications, and maintaining system integrity.

Why this answer

Any unapproved change to a system, even if necessary, must follow the change management process. The technician discovered that the deployment script modifies a registry key shared with a legacy application, which was not included in the original change request. Stopping the deployment and submitting a new change request ensures proper review, risk assessment, and approval before altering a shared resource that could impact the legacy application.

Exam trap

The trap here is that candidates may think a necessary change can be made immediately without approval, confusing 'necessary' with 'authorized,' but CompTIA emphasizes that all changes must follow the change management process regardless of urgency.

How to eliminate wrong answers

Option A is wrong because proceeding without approval violates change management policy and could cause unexpected failures in the legacy application due to the unplanned registry modification. Option B is wrong because skipping the registry change may break the new software deployment, as the script likely depends on that key for functionality, and modifying the script without authorization is also a change management violation. Option D is wrong because documenting the change after deployment bypasses the required pre-approval process and does not mitigate the risk of impacting the legacy application during the rollout.

201
MCQhard

During a routine security audit, a technician discovers that a user's computer has a program that opens a backdoor on port 4444 and allows remote control. The program was installed alongside a free PDF converter the user downloaded last week. Which malware type is this, and what is the most effective removal method?

A.Worm; use a network-based firewall to block port 4444.
B.Trojan horse; boot into Safe Mode and run a full anti-malware scan.
C.Ransomware; pay the ransom to regain control.
D.Rootkit; perform a clean installation of Windows.
AnswerB

A Trojan horse is a type of malware that masquerades as legitimate software, often bundled with freeware, to trick users into installing it. Once executed, it performs malicious activities, such as opening backdoors for remote access. Booting into Safe Mode loads only essential system services and drivers, preventing the Trojan from fully executing or hiding its processes, thereby making it more vulnerable to detection and removal by a full anti-malware scan.

Why this answer

The program is a Trojan horse because it disguises itself as a legitimate PDF converter while secretly installing a backdoor. The most effective removal method is to boot into Safe Mode, which loads only essential drivers and services, preventing the Trojan from running, and then perform a full anti-malware scan to detect and remove the malicious files.

Exam trap

The A+ exam often tests the distinction between a Trojan horse and a worm by emphasizing that a Trojan requires user action to install, whereas a worm spreads autonomously, leading candidates to incorrectly choose 'worm' when they see a backdoor on a specific port.

How to eliminate wrong answers

Option A is wrong because a worm self-replicates and spreads across networks without user interaction, whereas this malware required the user to download and install it alongside a PDF converter. Option C is wrong because ransomware typically encrypts files and demands payment for decryption, not opening a backdoor for remote control. Option D is wrong because a rootkit hides deep in the operating system, often at the kernel level, and requires a clean installation to ensure removal; however, this program is a user-level Trojan that can be removed via Safe Mode scanning without full reinstallation.

202
MCQmedium

A company has a policy that all workstations must automatically lock after 10 minutes of inactivity. A user complains that their computer does not lock automatically. Which setting should you check and remediate?

A.Check the power plan settings for sleep timeout
B.Verify that the screen saver is enabled and set to 'On resume, display logon screen' with a 10-minute wait
C.Ensure Windows Update is fully installed
D.Disable the Fast Startup feature
AnswerB

Enabling the screen saver and configuring it to 'On resume, display logon screen' with a specified wait time directly addresses the security requirement for locking a workstation after inactivity. This setting explicitly triggers the Windows security mechanism, requiring the user to re-authenticate with their credentials to regain access to their session. A 10-minute wait period is a common corporate standard, ensuring that unattended workstations are secured promptly against unauthorized access, thereby meeting the company's policy for workstation security.

Why this answer

The automatic lock behavior in Windows is controlled by the screen saver settings. When 'On resume, display logon screen' is enabled with a 10-minute wait, the screen saver triggers after inactivity and locks the workstation by requiring authentication upon resume. This is the standard mechanism for enforcing a lock timeout, not the power plan sleep timeout.

Exam trap

CompTIA often tests the distinction between sleep/screen saver/lock settings, and the trap here is that candidates confuse the power plan sleep timeout with the screen saver lock timeout, assuming sleep automatically locks the workstation.

How to eliminate wrong answers

Option A is wrong because the power plan sleep timeout controls when the system enters a low-power sleep state, not the lock screen; a computer can be idle and unlocked without sleeping. Option C is wrong because Windows Update installation status does not affect the screen saver or lock timeout behavior; missing updates would not prevent automatic locking. Option D is wrong because Fast Startup is a boot optimization feature that affects shutdown and startup, not idle-time locking; disabling it has no impact on the lock timeout.

203
MCQeasy

A user reports that their MacBook Pro running macOS Ventura is unable to open any applications after a recent system update. They see a spinning beach ball when clicking app icons. Which macOS tool should you use first to diagnose and resolve this issue?

A.Terminal
B.Activity Monitor
C.Disk Utility
D.System Information
AnswerB

Activity Monitor is the primary macOS utility for real-time system resource monitoring, making it the correct first step to diagnose an unresponsive application. It provides a comprehensive overview of CPU, memory, energy, disk, and network usage for all running processes. This allows a technician to quickly identify applications consuming excessive resources or those that are frozen, enabling direct termination of the problematic process to restore system responsiveness.

Why this answer

Activity Monitor is the correct first tool because it allows you to inspect running processes, CPU usage, memory pressure, and disk activity. The spinning beach ball indicates a hung or unresponsive process, likely caused by a kernel extension or system daemon failing after the update. Activity Monitor can identify the offending process (e.g., a high CPU or stuck I/O process) so you can force quit it or gather logs for further troubleshooting.

Exam trap

CompTIA A+ exams often test the misconception that Disk Utility is the universal fix for post-update issues, but the spinning beach ball is a process-level symptom, not a filesystem problem, so Activity Monitor is the correct initial diagnostic tool.

How to eliminate wrong answers

Option A is wrong because Terminal is a command-line interface that requires prior knowledge of specific commands (e.g., `top`, `kill`, `fs_usage`) and is not the first diagnostic tool for a GUI-level hang; it is more advanced and less accessible for initial triage. Option C is wrong because Disk Utility is used for repairing disk permissions, verifying disk integrity, and managing volumes, but the issue here is a process hang, not a filesystem corruption or disk error. Option D is wrong because System Information provides hardware and software configuration details but does not show real-time process activity or resource usage, making it useless for diagnosing a spinning beach ball caused by a stuck application.

204
MCQmedium

A technician is preparing to replace a failed hard drive in a server that hosts a critical database. The change requires a planned downtime of two hours. Which documentation must the technician review before proceeding?

A.The server's warranty information.
B.The approved change request and the backout plan.
C.The network topology diagram.
D.The employee handbook.
AnswerB

The approved change request is paramount as it formally authorizes the work, details the scope, potential impact, and scheduled downtime, ensuring the technician operates within established IT governance and avoids unauthorized modifications. Concurrently, the backout plan is essential for risk mitigation, outlining the precise steps to revert the system to its pre-change state if the new hard drive fails or the replacement process encounters unforeseen issues, thereby minimizing service disruption and data loss.

Why this answer

Before performing any hardware replacement that requires planned downtime, the technician must review the approved change request to confirm the change has been authorized and to understand the scope, risk, and implementation steps. The backout plan is equally critical as it provides the documented steps to revert the server to its previous state if the replacement fails, ensuring database integrity and minimizing extended downtime. This aligns with ITIL change management best practices and CompTIA A+ 220-1202 objectives for documentation review during hardware maintenance.

Exam trap

The trap here is that candidates confuse operational documentation (like network diagrams or warranty info) with the change management artifacts (change request and backout plan) that are mandatory before any planned downtime, leading them to choose a plausible but incorrect option.

How to eliminate wrong answers

Option A is wrong because warranty information is irrelevant to the immediate task of replacing a failed hard drive; it would be consulted after the fact for potential RMA, not before the procedure. Option C is wrong because a network topology diagram shows how devices are connected but does not contain the authorization, risk assessment, or rollback steps needed for a planned hardware change. Option D is wrong because the employee handbook covers company policies and conduct, not the technical change management documentation required for server maintenance.

205
MCQmedium

A user reports that their computer is running slowly and they suspect a virus. After scanning, the technician finds malware that has encrypted several files. The technician decides to wipe the drive and reinstall the OS. What should be done to ensure the malware is completely removed before data destruction?

A.Run a quick format and then reinstall the OS.
B.Use a secure erase utility that overwrites the entire drive including the boot sector.
C.Delete the encrypted files and run a registry cleaner.
D.Use System Restore to revert to a previous state.
AnswerB

A secure erase utility performs a low-level overwrite of the entire storage device, including the Master Boot Record (MBR) or GUID Partition Table (GPT), all partitions, and every data sector. This comprehensive process ensures that any persistent malware, such as bootkits or rootkits that embed themselves in the boot sector or unallocated space, is completely eradicated. By completely sanitizing the drive, it provides a clean slate for a fresh operating system installation, effectively eliminating the source of the reported slow performance if caused by deeply embedded malicious software.

Why this answer

Some malware can persist in the boot sector or firmware. A full wipe of the entire drive (including the boot sector) using a secure erase or low-level format ensures no malware remnants remain. A simple format may leave boot-sector malware intact.

206
MCQeasy

During a network upgrade, a technician needs to dispose of several old CRT monitors. Which disposal method complies with environmental regulations?

A.Place them in the regular dumpster for pickup.
B.Sell them to a scrap metal dealer.
C.Take them to an e-waste recycling center.
D.Remove the glass and dispose of the plastic casing separately.
AnswerC

Taking CRTs to an e-waste recycling center is the correct and safest method for disposal. These specialized facilities are designed and certified to properly handle and process hazardous electronic waste. They employ specific techniques to dismantle CRTs, separating leaded glass, mercury, and phosphors from recyclable materials like plastics, copper, and circuit boards, ensuring that toxic substances are contained and processed according to strict environmental regulations.

Why this answer

CRT monitors contain hazardous materials like lead, phosphorus, and other heavy metals that require specialized handling. Taking them to an e-waste recycling center ensures compliance with environmental regulations such as the Resource Conservation and Recovery Act (RCRA) and local e-waste laws, as these facilities are equipped to safely dismantle and recycle the toxic components.

Exam trap

CompTIA often tests the misconception that 'recycling' or 'selling to scrap' is always acceptable, but the trap here is that only certified e-waste recycling centers are legally authorized to handle CRT monitors due to their hazardous material content, while scrap dealers and general recycling are not compliant.

How to eliminate wrong answers

Option A is wrong because placing CRT monitors in a regular dumpster violates environmental regulations due to the leaded glass and other hazardous substances, which can leach into landfills and contaminate soil and groundwater. Option B is wrong because selling CRT monitors to a scrap metal dealer is not compliant unless the dealer is a certified e-waste recycler; general scrap dealers often lack the permits and processes to handle the toxic components safely, and the monitors may contain non-metallic hazardous materials. Option D is wrong because removing the glass and disposing of the plastic casing separately does not address the hazardous nature of the leaded glass, which still requires proper e-waste recycling; moreover, this practice is typically illegal without proper certification and equipment to prevent environmental release.

207
MCQmedium

A small business has no formal change management process. A technician installs a new antivirus program on a server, which later conflicts with the existing backup software, causing backups to fail. Which principle of change management was most clearly violated?

A.The change was not tested in a staging environment
B.The change was not approved by the change advisory board
C.The change was not documented or communicated to stakeholders
D.The technician did not create a rollback plan
AnswerC

Documentation and communication are foundational elements of even the most rudimentary change management practices, regardless of business size. Without a record of what was changed, when, and by whom, troubleshooting becomes significantly more challenging, and the impact on other systems or users remains unknown. Failing to document or communicate changes directly violates the core principle of transparency and control inherent in any structured approach to modifications.

Why this answer

The scenario describes a small business with no formal change management process. The core failure is that the technician installed new antivirus software without documenting the change or communicating it to stakeholders (such as the backup administrator or other IT staff). If the change had been documented and communicated, the potential conflict with the existing backup software could have been identified and avoided.

This directly violates the principle that all changes must be documented and communicated to relevant parties, even in the absence of a formal CAB or staging environment.

Exam trap

CompTIA often tests the distinction between formal processes (like CAB approval or staging environments) and the fundamental principle of communication and documentation, leading candidates to overthink and select a more 'technical' or 'formal' answer when the scenario clearly lacks any formal structure.

How to eliminate wrong answers

Option A is wrong because while testing in a staging environment is a best practice, the question explicitly states there is 'no formal change management process,' and the primary violation is the lack of communication and documentation, not the absence of a staging environment. Option B is wrong because a Change Advisory Board (CAB) is a formal governance body typically used in larger organizations; a small business without a formal process would not have a CAB, so failing to get CAB approval is not the most clearly violated principle. Option D is wrong because although a rollback plan is important, the technician could have avoided the conflict entirely by simply communicating the change to stakeholders; the lack of a rollback plan is a secondary issue, not the core violation of change management principles.

208
MCQmedium

A company's security policy requires that all Windows 10 workstations automatically install critical updates as soon as they are released. However, users must not be forced to restart during work hours. Which Windows Update setting should you configure to meet these requirements?

A.Defer feature updates
B.Set Active Hours to cover the workday
C.Set the connection as metered
D.Configure Windows Update to 'Notify to schedule restart'
AnswerB

Setting Active Hours allows Windows to understand when the user is actively using the computer, preventing automatic restarts during these specified times. Updates will still download and install automatically in the background throughout the day or night. The system will then perform the necessary restart outside of the defined Active Hours, ensuring updates are applied without disrupting user productivity during the workday, thus meeting the policy's requirement for automatic installation without user action.

Why this answer

Configuring Active Hours in Windows Update allows you to specify the time range during which the system should not automatically restart after installing updates. By setting Active Hours to cover the entire workday, critical updates can be downloaded and installed automatically, but the required restart is deferred until outside those hours, meeting both the security policy and the user experience requirement.

Exam trap

CompTIA often tests the distinction between controlling update installation versus controlling restart behavior; the trap here is that candidates may confuse 'deferring updates' with 'scheduling restarts,' or think that marking a connection as metered is a valid way to manage restart timing, when it actually blocks all automatic updates.

How to eliminate wrong answers

Option A is wrong because 'Defer feature updates' delays the installation of non-security feature updates, not critical security updates, and does not control restart timing. Option C is wrong because setting the connection as metered prevents all automatic downloads of updates, including critical ones, which violates the policy requiring automatic installation. Option D is wrong because 'Notify to schedule restart' only alerts the user to schedule a restart but does not enforce automatic installation of critical updates; it relies on user action, which may delay installation and violate the policy.

209
MCQeasy

A junior admin needs to list all files in the current directory, including hidden files, with detailed information such as permissions, owner, and size. Which command should they use?

A.ls -l
B.ls -a
C.ls -la
D.ll
AnswerC

This command correctly combines the `-l` (long format) and `-a` (all files) options, providing a complete and detailed listing. `ls -la` displays comprehensive information for every file and directory, including permissions, number of links, owner, group, size, and last modification timestamp, even for those conventionally hidden by a leading dot. This combination fully satisfies the requirement to list all files with detailed attributes.

Why this answer

The `ls -la` command combines the `-l` (long format) and `-a` (all files, including hidden ones) options. This fulfills the requirement to list all files in the current directory, including hidden files (those starting with a dot), with detailed information such as permissions, owner, group, size, and modification time.

Exam trap

A common mistake is to think that either `ls -l` (shows details but not hidden files) or `ls -a` (shows hidden files but no details) is sufficient. The correct answer is `ls -la` which combines both options.

How to eliminate wrong answers

Option A is wrong because `ls -l` lists files in long format but does not include hidden files (those starting with a dot). Option B is wrong because `ls -a` lists all files including hidden ones but does not provide detailed information such as permissions, owner, or size. Option D is wrong because `ll` is often an alias for `ls -l` (not `ls -la`) in many distributions, so it would not show hidden files unless specifically aliased to include `-a`; it is not a standard command and its behavior is not guaranteed across systems.

210
MCQmedium

A technician is tasked with removing a persistent malware infection that survives reboots and re-infects the system even after a full antivirus scan in Safe Mode. The malware appears to hide in the Master Boot Record (MBR). Which removal method should the technician use?

A.Run a system file checker (sfc /scannow) from within Windows.
B.Use the Windows Recovery Environment to run bootrec /fixmbr.
C.Perform a clean installation of Windows without formatting the drive.
D.Disable System Restore and delete all restore points.
AnswerB

Using the Windows Recovery Environment (WinRE) to run `bootrec /fixmbr` is the correct approach because this command specifically targets and overwrites the Master Boot Record (MBR) with a clean, standard MBR. This action effectively eradicates any malware that has infected or modified the MBR, preventing it from loading during system startup. Performing this operation from WinRE ensures the operating system is not running, allowing for a clean and unhindered repair of the critical boot sector.

Why this answer

The malware is hiding in the Master Boot Record (MBR), which is the first sector of the boot drive and loads before the operating system. Running `bootrec /fixmbr` from the Windows Recovery Environment (WinRE) overwrites the MBR code with a clean Windows bootloader, effectively removing the malware that persists there. This method targets the infection at its source, unlike antivirus scans that run after the OS loads and cannot access the MBR while it is in use.

Exam trap

The 220-1202 exam often tests the misconception that antivirus scans in Safe Mode can remove all malware, but the trap here is that MBR-based infections load before the OS and require boot-level repair tools like `bootrec /fixmbr` to be eradicated.

How to eliminate wrong answers

Option A is wrong because `sfc /scannow` only checks and repairs protected system files within the Windows installation, not the MBR; it cannot remove malware that resides in the boot sector. Option C is wrong because performing a clean installation of Windows without formatting the drive leaves the MBR intact, allowing the malware to survive and re-infect the new OS installation. Option D is wrong because disabling System Restore and deleting restore points only removes backup copies of system files and registry, not the MBR; the malware in the boot sector remains unaffected.

211
MCQmedium

A user reports that their Windows 10 PC is running slowly and the hard drive light is constantly active. You suspect the indexing service is consuming resources. Which Control Panel applet allows you to modify which folders are indexed, or to rebuild the index?

A.File Explorer Options
B.System > Advanced system settings > Performance
C.Indexing Options
D.Administrative Tools > Services
AnswerC

Indexing Options is the dedicated control panel applet for managing the Windows Search service's indexing process. It provides comprehensive tools to specify which folders and file types are included or excluded from the search index, modify advanced indexing settings, and crucially, rebuild the entire search index database. Rebuilding the index is a common troubleshooting step to resolve issues like slow searches, incomplete results, or index corruption.

Why this answer

The Indexing Options applet (C) is the correct Control Panel tool for managing the Windows Search index. It allows you to add or remove folders from the index and provides a button to rebuild the index, which can resolve performance issues caused by a corrupted or overly broad index. The constantly active hard drive light indicates the indexing service is actively processing files, and modifying or rebuilding the index directly addresses this resource consumption.

Exam trap

CompTIA often tests the distinction between managing a service's behavior (Indexing Options) versus managing the service's running state (Services.msc), leading candidates to choose Administrative Tools > Services when the question specifically asks about modifying indexed folders or rebuilding the index.

How to eliminate wrong answers

Option A is wrong because File Explorer Options (formerly Folder Options) controls file browsing settings like showing hidden files, folder views, and search behavior, but it does not manage the indexing service or allow you to modify indexed folders or rebuild the index. Option B is wrong because System > Advanced system settings > Performance opens the Performance Options dialog, which configures visual effects, processor scheduling, and virtual memory, not indexing settings. Option D is wrong because Administrative Tools > Services lets you start, stop, or disable the Windows Search service, but it does not provide a GUI to modify which folders are indexed or to trigger a rebuild; those actions require the Indexing Options applet.

212
MCQmedium

A company uses AppLocker to control which applications can run on Windows 10 workstations. A user needs to run a portable application from a USB drive for a presentation, but it is blocked by AppLocker. The user has local admin rights. What is the best way to allow this specific application while maintaining security?

A.Temporarily disable AppLocker service.
B.Add the user to the 'Power Users' group.
C.Create a new AppLocker path rule for the USB drive.
D.Run the application as Administrator.
AnswerC

Creating a new AppLocker path rule specifically for the USB drive's location (e.g., "E:\*" or "E:\ApplicationName.exe") is the most appropriate and secure solution. This method allows the desired application to execute from the specified removable media while maintaining all other AppLocker restrictions for other applications and locations. It provides granular control, ensuring the company's security posture remains intact for all other software.

Why this answer

AppLocker enforces application control policies regardless of user privileges, including local admin rights. Creating a new path rule for the USB drive allows the specific portable application to run while keeping AppLocker active and maintaining security for other executables. This is the correct approach because it grants a targeted exception without disabling the entire control mechanism.

Exam trap

The trap here is that candidates assume local admin rights can override AppLocker restrictions, but AppLocker operates at a lower security layer that applies to all users, including administrators.

How to eliminate wrong answers

Option A is wrong because temporarily disabling the AppLocker service removes all application control, exposing the system to unauthorized software and violating security policy. Option B is wrong because the 'Power Users' group does not bypass AppLocker rules; AppLocker evaluates rules based on file path, publisher, or hash, not group membership. Option D is wrong because running the application as Administrator does not override AppLocker; AppLocker blocks execution before the process starts, regardless of the user's privilege level.

213
MCQeasy

A customer complains that their iPhone's Wi-Fi keeps disconnecting and reconnecting. They have already rebooted the phone and the router. Which of the following is the MOST likely cause?

A.The phone's SIM card is faulty.
B.The Wi-Fi network password was changed recently.
C.The phone's Wi-Fi profile is corrupted.
D.The phone's operating system needs a full restore via iTunes.
AnswerC

A corrupted Wi-Fi profile stores incorrect or damaged configuration data, such as the SSID, security type, or password, preventing the device from maintaining a stable connection. This corruption can lead to intermittent disconnections as the phone struggles to properly authenticate or negotiate network parameters with the access point. Forgetting the network and re-establishing the connection forces the creation of a new, clean profile, often resolving these transient connectivity issues.

Why this answer

This scenario tests knowledge of common mobile Wi-Fi issues. After basic steps, forgetting and reconnecting to the network often resolves profile corruption or authentication problems.

214
MCQmedium

A technician is assigned to install new accounting software on a user's computer. The user is a senior manager who is very busy. The technician arrives and the manager says, 'Just make it work, I don't have time for questions.' Which action is MOST professional?

A.Proceed with the installation without asking any questions to respect their time.
B.Explain that you need just two quick questions to avoid problems later, and keep it brief.
C.Insist on a full meeting to discuss requirements.
D.Install the software and leave a note with questions for later.
AnswerB

This option demonstrates professionalism by acknowledging the user's time constraints while prioritizing a correct and functional installation. By briefly explaining the necessity of a few targeted questions, the technician ensures critical configuration details, such as server locations, user permissions, or specific data migration paths, are accurately captured upfront. This proactive communication minimizes the likelihood of post-installation issues, reduces potential downtime, and builds user confidence in the technician's competence.

Why this answer

The most professional action because it balances respect for the manager's time with the need to gather critical information. Asking two quick, targeted questions—such as verifying the software version compatibility with the OS or confirming the required database connection string—can prevent installation failures or post-installation issues that would waste even more of the manager's time. This approach demonstrates proactive problem-solving and aligns with CompTIA's emphasis on effective communication and professionalism.

Exam trap

CompTIA often tests the misconception that respecting a user's time means avoiding all questions, when in fact asking a few targeted, efficient questions demonstrates professionalism and prevents larger issues.

How to eliminate wrong answers

Option A is wrong because proceeding without any questions risks installing incompatible software or misconfiguring settings, which could lead to system instability or data loss, ultimately wasting more of the manager's time. Option C is wrong because insisting on a full meeting is unnecessarily disruptive and fails to respect the manager's stated time constraints, creating a negative user experience. Option D is wrong because installing the software and leaving a note with questions for later may result in the manager ignoring the note, leading to unresolved issues that could require a second visit or cause operational delays.

215
MCQeasy

A customer complains that their Windows 11 desktop suddenly shows a blue screen with the error 'CRITICAL_PROCESS_DIED' every time they try to launch a specific video editing application. Other programs work fine. What is the most likely cause and the best first troubleshooting step?

A.Run a memory diagnostic to check for faulty RAM.
B.Update the graphics card driver.
C.Reinstall the video editing application.
D.Perform a system restore to a point before the issue started.
AnswerC

Reinstalling the application replaces corrupted files that are specific to that program, which is the most direct solution for an app-specific crash.

Why this answer

The error 'CRITICAL_PROCESS_DIED' indicates that a critical system process terminated unexpectedly. Since the issue occurs only when launching a specific video editing application and other programs work fine, the problem is isolated to that application's files or dependencies. Reinstalling the application is the most direct first step to replace corrupted or missing components without affecting other system settings.

Exam trap

The CompTIA A+ exam often tests the trap that candidates confuse a system-wide error with a hardware or driver issue, when the error is actually application-specific and best resolved by reinstalling the affected software.

How to eliminate wrong answers

Option A is wrong because faulty RAM typically causes random crashes, blue screens during various operations, or memory-related errors like 'MEMORY_MANAGEMENT', not a process-specific error tied to a single application. Option B is wrong because a graphics driver issue would likely cause display artifacts, rendering problems, or crashes in multiple graphics-intensive applications, not exclusively in one video editing app. Option D is wrong because performing a system restore is a more invasive step that reverts system-wide changes and should be reserved for issues affecting multiple applications or system stability, not a single application's launch failure.

216
MCQmedium

A technician is cleaning the inside of a desktop computer that has accumulated a large amount of dust. What is the safest method to remove the dust?

A.Use a standard household vacuum cleaner with a brush attachment.
B.Use compressed air to blow the dust out of the case.
C.Use a damp cloth to wipe down the components.
D.Use a soft brush to sweep the dust out.
AnswerB

Compressed air is the industry-standard and recommended method for removing dust from computer interiors because it effectively dislodges particulate matter from intricate components without physical contact. When used correctly, holding the can upright and in short, controlled bursts, it prevents propellant discharge and minimizes static buildup. It is crucial to hold fan blades stationary while blowing to prevent over-spinning, which can damage bearings or generate back-electromotive force (back-EMF) that could harm the motherboard's fan controller circuitry.

Why this answer

Compressed air is the safest method because it dislodges dust without physical contact, avoiding electrostatic discharge (ESD) or mechanical damage to sensitive components. Unlike other methods, it does not introduce moisture or static buildup, and it can reach tight spaces between heatsinks and circuit boards.

Exam trap

The trap here is that candidates assume a vacuum cleaner is safe because it 'sucks' dust away, but CompTIA tests the understanding that vacuum cleaners generate dangerous static charges and lack the precision needed for delicate electronics.

How to eliminate wrong answers

Option A is wrong because household vacuum cleaners generate static electricity and can create ESD that damages sensitive electronics; they also lack sufficient filtration to prevent recirculation of fine dust. Option C is wrong because a damp cloth introduces moisture, which can cause short circuits, corrosion, or oxidation on exposed contacts and PCB traces. Option D is wrong because a soft brush can generate static charge through friction and may dislodge components or bend delicate pins if not used with extreme care.

217
MCQmedium

A user reports that their computer's hard drive is making clicking noises and they cannot access certain files. You want to check the disk for errors and attempt to repair any bad sectors. Which command should you run from an elevated command prompt?

A.chkdsk /f
B.chkdsk /r
C.sfc /scannow
D.diskpart
AnswerB

The chkdsk /r command is specifically engineered to locate bad sectors on the hard drive's physical surface and attempt to recover any readable information from those sectors. It then marks these identified bad sectors, preventing the operating system from writing data to them in the future. This comprehensive scan is crucial for a drive exhibiting physical symptoms like clicking, as it directly addresses the integrity of the disk's storage media.

Why this answer

The correct command is `chkdsk /r` because it locates bad sectors on the hard drive and recovers readable information from them. The `/r` switch implies `/f` (which fixes file system errors) and additionally performs a surface scan to identify and mark bad sectors, directly addressing the clicking noise and file access issue.

Exam trap

The trap here is that candidates confuse `/f` (file system repair) with `/r` (bad sector recovery), assuming that fixing file system errors also addresses physical disk damage, but `/r` is the only switch that performs a surface scan for bad sectors.

How to eliminate wrong answers

Option A is wrong because `chkdsk /f` only fixes file system errors (e.g., in the MFT or directory structure) without scanning for or repairing bad sectors on the disk surface; it does not address physical media damage indicated by clicking noises. Option C is wrong because `sfc /scannow` (System File Checker) verifies and repairs protected system files, such as Windows DLLs and executables, not the hard drive's physical sectors or file system integrity. Option D is wrong because `diskpart` is a disk partitioning tool used to manage volumes and partitions (create, delete, extend) and has no capability to check for errors or repair bad sectors.

218
MCQmedium

A technician needs to create a bootable USB drive that can run Windows PE to deploy a custom Windows 10 image to multiple laptops. Which Windows tool should they use to create this bootable media?

A.Windows Media Creation Tool
B.Windows System Image Manager (Windows SIM)
C.Windows ADK (Assessment and Deployment Kit)
D.Disk Management
AnswerC

The Windows Assessment and Deployment Kit (ADK) is the correct toolset for this task, as it includes Windows Preinstallation Environment (Windows PE) and the Deployment and Imaging Tools Environment. Within the ADK, technicians can use tools like DISM (Deployment Image Servicing and Management) to customize a Windows PE image with necessary drivers and applications, and then utilize scripts or commands to create a bootable USB drive specifically tailored for system imaging and deployment operations.

Why this answer

The Windows Assessment and Deployment Kit (Windows ADK) includes the Deployment Tools, which contain the necessary utilities (such as `copype.cmd` and `MakeWinPEMedia`) to create a bootable Windows PE USB drive. This is the correct tool for building custom WinPE media to deploy a Windows 10 image to multiple laptops, as it provides the full environment for customizing and generating the bootable image.

Exam trap

The trap here is that candidates often confuse the Windows Media Creation Tool (which creates standard Windows installation media) with the ADK's tools for creating custom WinPE bootable media, leading them to select option A.

How to eliminate wrong answers

Option A is wrong because the Windows Media Creation Tool is designed to download and create installation media for Windows 10 (e.g., for clean installs or upgrades), not to generate a custom Windows PE environment for imaging. Option B is wrong because Windows System Image Manager (Windows SIM) is used to create and manage unattended answer files (Unattend.xml) for automated installations, not to create bootable media. Option D is wrong because Disk Management is a utility for managing disk partitions and volumes (e.g., formatting, shrinking volumes), and it cannot create a bootable Windows PE USB drive.

219
MCQmedium

A technician is setting up a new workstation in a cubicle. The cubicle has multiple power strips daisy-chained together to provide enough outlets. What is the correct safety action the technician should take?

A.Continue using the daisy-chained setup since it is convenient and all strips are rated for 15 amps.
B.Remove the daisy chain and plug each device directly into a wall outlet using a single power strip with surge protection.
C.Replace all power strips with heavy-duty extension cords rated for the total load.
D.Install a UPS at the end of the daisy chain to regulate power.
AnswerB

Removing the daisy chain and plugging each device directly into a wall outlet using a single power strip with surge protection is the safest and most compliant solution. This ensures that each power strip draws power from a properly protected circuit, preventing cumulative overload on a single point of connection. The integrated circuit breaker in the power strip provides overcurrent protection, while surge protection safeguards connected equipment from voltage spikes.

Why this answer

Daisy-chaining power strips is a fire hazard because it can exceed the ampacity of the circuit, leading to overheating and potential electrical fires. The correct safety action is to remove the daisy chain and plug each device directly into a wall outlet, using a single power strip with surge protection to safely distribute power without overloading the circuit.

Exam trap

CompTIA often tests the misconception that using multiple high-rated power strips in series is safe as long as each strip's rating is not exceeded, ignoring the cumulative load on the upstream circuit and the fire risk from daisy-chaining.

How to eliminate wrong answers

Option A is wrong because daisy-chaining power strips, even if each is rated for 15 amps, can still overload the wall outlet circuit (typically 15 or 20 amps) and violates OSHA and NEC safety standards. Option C is wrong because heavy-duty extension cords are not designed for permanent use and can still cause voltage drop or overheating if the total load exceeds the cord's rating; they also lack surge protection. Option D is wrong because installing a UPS at the end of a daisy chain does not address the root hazard of overloading the circuit; it only adds battery backup and surge protection, but the daisy chain itself remains a fire risk.

220
MCQmedium

A technician is replacing a power supply in a desktop computer. After unplugging the unit, what additional step should be taken to ensure personal safety before touching internal components?

A.Wear an anti-static wrist strap.
B.Press and hold the power button for 10 seconds.
C.Remove the CMOS battery.
D.Unplug all peripheral cables.
AnswerB

Pressing and holding the power button for approximately 10 seconds is the correct and safest procedure to discharge residual electrical energy stored within the power supply's capacitors. Even after a computer is unplugged from its AC power source, these capacitors can retain a significant and dangerous voltage for an extended period. This action provides a discharge path through the system's internal circuitry, allowing the stored energy to dissipate safely, thereby eliminating the risk of electrical shock when handling the power supply.

Why this answer

After unplugging the power supply, pressing and holding the power button for 10 seconds discharges residual electrical charge stored in the system's capacitors (especially in the power supply and motherboard). This step, often called a 'parasitic drain,' ensures that no stored voltage remains that could cause an electric shock or damage components when touched. It is a standard safety practice before working inside a desktop computer.

Exam trap

CompTIA often tests the distinction between ESD protection (anti-static wrist strap) and electrical safety (discharging capacitors), causing candidates to mistakenly choose the wrist strap as the primary safety step after unplugging.

How to eliminate wrong answers

Option A is wrong because an anti-static wrist strap protects against electrostatic discharge (ESD) damage to components, not against electric shock from stored charge; it does not discharge the power supply's capacitors. Option C is wrong because removing the CMOS battery clears BIOS settings and may help drain some motherboard capacitors, but it does not discharge the main power supply capacitors, which hold the highest risk of shock. Option D is wrong because unplugging peripheral cables reduces cable clutter but does not discharge the internal capacitors that pose a shock hazard.

221
MCQhard

A technician is creating a PowerShell script that must be deployed via Group Policy to all workstations. The script should run in the user context and display a message if the user's password is about to expire within 7 days. The script must not show any PowerShell console window. Which scripting technique should be used?

A.Use the 'Write-Host' cmdlet to display the message
B.Use a VBScript with a pop-up message box
C.Use the '-NoProfile' parameter when starting PowerShell
D.Use a scheduled task with 'Run whether user is logged on or not'
AnswerB

A VBScript can effectively display a pop-up message box using the 'MsgBox' function, which creates a graphical dialog independent of any console window. When executed via 'wscript.exe' (Windows Script Host), the VBScript process can be launched with a hidden window style (e.g., using `Start-Process -WindowStyle Hidden` in PowerShell or `WScript.Shell.Run` with a '0' parameter), allowing the message to appear without the script's execution window being visible. This method perfectly satisfies both the hidden window and user notification requirements.

Why this answer

VBScript's `MsgBox` function creates a pop-up message box that runs in the user context without a console window, making it ideal for displaying password-expiry warnings via Group Policy. PowerShell scripts, even with `-WindowStyle Hidden`, briefly flash a console window unless compiled into an executable, which violates the requirement to show no console window. VBScript natively integrates with Windows Script Host (WSH) to produce a GUI pop-up without any console overhead.

Exam trap

The trap here is that candidates assume PowerShell's `-WindowStyle Hidden` or `-NoProfile` eliminates the console window entirely, but they overlook that PowerShell.exe is inherently a console application and will still flash a window, whereas VBScript's `wscript.exe` host runs without any console.

How to eliminate wrong answers

Option A is wrong because `Write-Host` outputs text to the PowerShell console, which would display a console window, contradicting the requirement to show no console. Option C is wrong because `-NoProfile` only prevents loading PowerShell profiles, but does not suppress the console window itself; the script would still launch a visible PowerShell window. Option D is wrong because a scheduled task with 'Run whether user is logged on or not' runs in the system context, not the user context, and would not display a message to the logged-on user.

222
MCQeasy

A small business owner wants to ensure that employees cannot install unauthorized browser extensions on company-managed Windows 10 computers. Which method should you use to enforce this restriction?

A.Enable private browsing mode in each browser
B.Configure Group Policy to block extension installation
C.Set the browser homepage to a company-approved site
D.Install an ad-blocker extension
AnswerB

Configuring Group Policy to block extension installation is the most effective administrative control for domain-joined computers. Group Policy Objects (GPOs) allow network administrators to centrally define and enforce specific browser settings, including disabling the ability to install extensions, across all user accounts and machines within an Microsoft Active Directory domain. This ensures consistent security and compliance by preventing unauthorized software from being added to browsers.

Why this answer

Group Policy allows administrators to centrally manage Windows settings, including browser policies. By configuring the 'Block installation of extensions' policy under Administrative Templates for each browser (e.g., Chrome, Edge), you can prevent users from installing unauthorized extensions on company-managed Windows 10 computers.

Exam trap

The trap here is that candidates may confuse browser security features (like private browsing or homepage settings) with actual policy-based controls, overlooking that only Group Policy or registry-based policies can centrally enforce restrictions on extension installation in a managed environment.

How to eliminate wrong answers

Option A is wrong because enabling private browsing mode only prevents the browser from storing history, cookies, and form data; it does not restrict extension installation. Option C is wrong because setting the browser homepage to a company-approved site only controls the default startup page, not the ability to install extensions. Option D is wrong because installing an ad-blocker extension does not enforce a restriction; it is itself an extension and does not prevent other extensions from being installed.

223
MCQeasy

During a security incident, a technician needs to verify whether a specific application was granted camera and microphone permissions on a macOS computer. Which macOS tool should they use to check these privacy settings?

A.Keychain Access
B.System Settings > Privacy & Security
C.Console
D.Terminal with 'tccutil' command
AnswerB

System Settings > Privacy & Security is the definitive macOS interface for managing application access to sensitive system resources, including the camera and microphone. During a security incident, a technician can directly navigate to this centralized control panel to view which applications have been explicitly granted or denied these critical permissions. This allows for immediate identification and modification of potentially unauthorized access, making it the primary tool for such verification.

Why this answer

System Settings > Privacy & Security is the correct tool because macOS centralizes all privacy-related permissions—including camera and microphone access—in this GUI panel. The technician can navigate to the specific application under the Camera and Microphone sub-sections to verify granted permissions. This is the standard, user-facing interface for managing privacy controls on macOS.

Exam trap

The trap here is that candidates may confuse the 'tccutil' command (Option D) as a tool for checking permissions, when in fact it is only used for resetting or modifying the TCC database, not for viewing current permissions.

How to eliminate wrong answers

Option A is wrong because Keychain Access manages passwords, certificates, and secure notes, not application permissions for hardware like the camera or microphone. Option C is wrong because Console displays system logs and diagnostic messages, not privacy settings or permission states. Option D is wrong because while the 'tccutil' command can reset privacy permissions via Terminal, it is not designed to simply check or view current permissions; it requires administrative privileges and is used for bulk resets, not verification.

224
MCQhard

A user reports that their cloud-based virtual desktop (VDI) is disconnecting frequently. The user's internet connection is stable, and other cloud services work fine. The technician checks the VDI's resource usage and finds that the virtual machine's RAM is consistently at 95% usage. What should the technician do to resolve the disconnections?

A.Reduce the amount of RAM allocated to the VDI.
B.Increase the amount of RAM allocated to the VDI.
C.Reinstall the VDI client software on the user's device.
D.Enable GPU acceleration for the VDI.
AnswerB

Increasing the amount of RAM allocated to the VDI directly addresses memory-related performance bottlenecks. Providing more physical memory to the virtual machine allows the operating system and applications to run more efficiently, reducing the need for disk-based paging. This improves overall system responsiveness, prevents applications from crashing or becoming unresponsive due to memory exhaustion, and significantly enhances session stability, thereby mitigating disconnections.

Why this answer

This scenario tests advanced troubleshooting of VDI performance. High memory usage can cause the VM to become unresponsive, leading to disconnections. Increasing the VM's RAM allocation directly addresses the resource bottleneck.

Reducing RAM would worsen the problem, and network or GPU issues are not indicated.

225
MCQhard

During a security audit, you find that a server room door has a standard key lock, but the key is kept in an unlocked drawer nearby. Which physical security principle is being violated?

A.Least privilege
B.Defense in depth
C.Separation of duties
D.Change management
AnswerB

Defense in depth is a security strategy that employs multiple, overlapping security controls to protect assets. The physical lock on the server cabinet represents one layer of defense, but if the key to that lock is stored insecurely and easily accessible, this critical layer is effectively bypassed. This undermines the entire multi-layered security posture, as a single point of failure (the insecure key) compromises the protection intended by the physical barrier, demonstrating a failure in applying defense in depth.

Why this answer

The principle of defense in depth requires multiple layers of security. Storing the key in an unlocked drawer negates the door lock, creating a single point of failure. Proper key management is essential.

Page 2

Page 3 of 7

Page 4

All pages

Practice 220-1202 by domain

Target a specific domain to shore up weak areas.

See all domains with question counts →