All practice questions

423 questions

Question 381Question

A desktop support technician at a maritime shipping terminal is responding to a Windows workstation exhibiting active ransomware symptoms. Place the following CompTIA standard malware remediation actions in the correct order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order of steps is: 1. Disconnect the workstation's network cable and disable wireless interfaces. 2. Turn off Windows System Restore. 3. Update anti-malware definitions and execute a complete remediation scan. 4. Re-enable Windows System Restore and create a clean restore point. 5. Provide security awareness guidance to the terminal operator on phishing prevention.
According to CompTIA's 7-step malware removal procedure, the technician must first isolate the system from the network to stop lateral spread. Next, System Restore must be disabled so that infected files are not retained in system restore points. Once disabled, the technician updates anti-malware signatures and remediates the computer. After confirming remediation, System Restore is re-enabled and a new restore point is generated. Finally, educating the end user prevents recurrence.

Step-by-Step Solution

1
Isolate the infected device.
Prevents ransomware from scanning network shares or propagating across the port terminal network.
CompTIA Step 2 requires network isolation before performing any changes or scans on the host.
2
Disable System Restore.
Prevents Windows from saving infected binaries or encrypted state into system restore points.
CompTIA Step 3 requires turning off System Restore prior to cleaning the system.
3
Remediate the infected system.
Cleans the malware files from the hard drive and memory.
CompTIA Step 4 involves updating anti-malware software and scanning/removing malicious content.
4
Enable System Restore and generate a clean restore point.
Creates a valid, uninfected system snapshot for future rollback capabilities.
CompTIA Step 6 ensures system protection is restored only after infection removal is confirmed.
5
Educate the end user.
Reduces the likelihood of repeated infection through social engineering vectors.
CompTIA Step 7 completes the standard malware removal workflow.

Key Concept

CompTIA 7-Step Malware Removal Process
Estimated Time:1m 15s
Question 382Question

A technician is resolving a Windows startup failure caused by a corrupted Boot Configuration Data (BCD) store. Operating in the Windows Recovery Environment (WinRE) Command Prompt, the technician attempts to run `bootrec /rebuildbcd`, but the command cannot replace the existing store because the BCD file remains locked and marked as system-protected. Place the remaining steps required to unlock, replace, and successfully rebuild the BCD store in the correct sequential order.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with removing the file attributes using `attrib`, followed by renaming the corrupted BCD file using `ren`, re-executing `bootrec /rebuildbcd` to regenerate the boot store, and finally confirming the addition of the OS installation when prompted.
When repairing BCD store corruption, `bootrec /rebuildbcd` may fail if the existing BCD file is locked or damaged. The proper recovery procedure requires removing the system, hidden, and read-only attributes from `c:\boot\bcd` using `attrib -h -r -s`. Next, renaming the file with `ren c:\boot\bcd bcd.old` clears the path. Running `bootrec /rebuildbcd` then initializes a new configuration store, and entering `Y` at the prompt adds the operating system to the clean BCD file.

Step-by-Step Solution

1
Clear system file locks and attributes.
File attributes (-h -r -s) are removed from `c:\boot\bcd` so administrative commands can modify it.
Windows protects boot configuration files with System, Read-only, and Hidden attributes, preventing them from being renamed or overwritten while protected.
2
Rename the existing corrupted BCD store.
The file `c:\boot\bcd` is renamed to `bcd.old`.
`bootrec /rebuildbcd` will fail to create a new file if an existing file with the same name exists at that directory path.
3
Initiate the boot reconstruction utility.
The utility scans all connected drives for Windows installations and prompts to add discovered OS installations.
Now that the corrupted file path is clear, running the rebuild command allows the installer to initialize a clean boot database.
4
Confirm adding the detected OS to the new boot store.
The Windows boot manager entry is successfully written to the new BCD store.
User confirmation is required by `bootrec` to finalize adding identified OS installations to the newly constructed database.

Key Concept

Rebuilding Corrupted BCD Files via WinRE Command Line
Question 383Question

A desktop support technician at a municipal water utility is responding to a Windows 11 workstation that was infected with malware via a malicious email attachment. The technician has already identified and confirmed the malware infection symptoms. In what order should the technician execute the following remediation steps according to the standard CompTIA 7-step malware removal procedure?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order follows CompTIA's 7-step malware removal process: first quarantine the system by disconnecting network connections, next disable System Restore, then remediate the system by updating signatures and scanning, followed by re-enabling System Restore to create a clean restore point, and finally educating the end user.
The standard CompTIA 7-step malware remediation process specifies the following sequence: 1) Identify malware symptoms, 2) Quarantine infected systems, 3) Disable System Restore, 4) Remediate infected systems (update definitions and scan), 5) Schedule scans and run updates, 6) Enable System Restore and create a restore point, and 7) Educate the end user. Disconnecting network interfaces isolates the device first, followed by turning off System Restore, running updated anti-malware scans, re-enabling System Restore to build a clean baseline, and concluding with user education.

Step-by-Step Solution

1
Quarantine the infected system.
Network adapters are disconnected, preventing the malware from spreading across the local municipal network.
CompTIA Step 2 requires isolating the infected host immediately following identification.
2
Disable System Restore.
Previous restore points containing latent malware files are purged and new restore point creation is paused.
CompTIA Step 3 ensures that malware cannot persist or re-infect the system via Windows System Restore.
3
Remediate the system.
Anti-malware definitions are updated and a comprehensive scan cleans or quarantines infected files.
CompTIA Step 4 involves active malware removal using updated tools.
4
Enable System Restore and create a restore point.
System protection is restored with a verified malware-free baseline.
CompTIA Step 6 re-establishes OS recovery capabilities once the system is verified clean.
5
Educate the end user.
The user is trained to recognize social engineering tactics and suspicious attachments.
CompTIA Step 7 concludes the remediation process by addressing human risk factors.

Key Concept

CompTIA 7-Step Malware Removal Procedure
Question 384Question

A technician is troubleshooting a Windows workstation configured in UEFI mode that fails to start due to corrupted EFI boot files. The system has been booted into the Windows Recovery Environment (WinRE) Command Prompt to manually repair the EFI System Partition (ESP). In what sequence should the technician execute the following steps to rebuild the system boot environment?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with launching diskpart to select the target disk, assigning a drive letter to the EFI System Partition, exiting diskpart to navigate to the EFI directory, and running the bcdboot command to deploy new boot files.
To repair a corrupted EFI System Partition in UEFI mode, a technician must first open diskpart and select the main disk. Next, the hidden FAT32 EFI partition must be located and assigned a temporary drive letter. After exiting diskpart and changing to the target directory, the technician executes the bcdboot command to copy clean bootloader binaries and recreate the Boot Configuration Data (BCD) store.

Step-by-Step Solution

1
Launch diskpart and execute select disk to choose the physical OS drive.
The operating system disk is selected for partition configuration.
Before partition-level actions can be performed in WinRE, the utility must be focused on the correct disk.
2
Identify the hidden FAT32 EFI System Partition volume and assign a letter using assign letter=Z.
The EFI System Partition is mounted with drive letter Z:.
Command-line repair utilities require an active drive letter path to write updated boot files to the partition.
3
Type exit to leave diskpart, then use cd /d Z:\EFI\Microsoft\Boot\ to change directories.
The command prompt active path is positioned within the EFI boot folder.
Leaving diskpart returns the environment to standard CLI operation for file manipulation and repair commands.
4
Run bcdboot C:\Windows /s Z: /f UEFI to rebuild boot files.
Fresh bootloader binaries and a clean BCD store are generated on the EFI System Partition.
The BCDBoot tool extracts healthy boot files from the Windows directory and writes them to the specified UEFI partition.

Key Concept

Manual EFI System Partition Restoration using Diskpart and BCDBoot
Estimated Time:1m 30s
Question 385Question

An IT technician at a regional logistics center is responding to a Windows workstation displaying unauthorized pop-ups and rogue security software alerts. Arrange the following malware remediation actions in the correct sequence according to standard CompTIA 7-step procedures, starting from the earliest step to the final step.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The proper sequence follows CompTIA's standard 7-step malware remediation process: 1) Disconnect network connections to isolate the system, 2) Disable System Restore, 3) Update anti-malware signatures and scan/remediate, 4) Re-enable System Restore and create a new restore point, and 5) Educate the end user.
The standard CompTIA workflow dictates isolating the host first to contain the infection, disabling System Restore to purge infected backup states, updating definitions and remediating the system, restoring System Restore with a clean baseline, and concluding with end-user education.

Step-by-Step Solution

1
Identify the immediate containment action required after detecting malware.
Disconnecting network interfaces isolates the machine (Step 2).
Isolating the system prevents rogue software from communicating with command-and-control servers or spreading across the LAN.
2
Prepare the system for clean remediation by preventing infected restore image retention.
Disabling System Restore purges existing system snapshots (Step 3).
If System Restore remains enabled, infected files might be saved or re-initialized during recovery attempts.
3
Apply anti-malware engine updates and eliminate the threat.
Updating definitions and running an in-depth scan removes the malware (Step 4).
Up-to-date signatures are required to detect and clean modern malware variants effectively.
4
Restore system protection infrastructure.
Re-enabling System Restore and creating a fresh restore point secures a known-good baseline (Step 6).
Once the machine is fully remediated, establishing a fresh restore point protects future working states.
5
Provide preventative guidance.
Educating the end user completes the process (Step 7).
Training users on threat vectors prevents re-infection from similar attacks.

Key Concept

CompTIA 7-Step Malware Removal Procedure
Estimated Time:1m 30s
Question 386Question

A technician is using the Windows Recovery Environment (WinRE) Command Prompt to resolve a boot failure caused by system file corruption on a Windows workstation. Place the troubleshooting and repair steps in the correct sequential order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequential order to repair corrupted system boot files using WinRE is: 1) Boot into WinRE and launch Command Prompt, 2) Run diskpart and list volume to confirm the Windows drive letter, 3) Execute chkdsk C: /f to fix file system corruption, 4) Run sfc /scannow with /offbootdir and /offwindir flags, and 5) Reboot the system to confirm normal startup.
The correct repair sequence begins by accessing the WinRE Command Prompt environment. Because WinRE reassigns drive letters dynamically, running diskpart and list volume is necessary to verify the OS partition letter. Running chkdsk repairs any underlying file system errors on the volume before running sfc /scannow with /offbootdir and /offwindir parameters to repair corrupted system files. Finally, rebooting the system confirms that the repair was successful.

Step-by-Step Solution

1
Boot into Windows Recovery Environment (WinRE) and select Command Prompt.
Access to the administrative recovery CLI environment.
Offline troubleshooting tools must be executed outside the active operating system environment.
2
Execute diskpart and list volume.
Identifies the specific drive letter assigned to the main Windows volume in WinRE.
WinRE dynamically assigns volume letters, which may differ from the standard OS C: drive mapping.
3
Run chkdsk C: /f on the verified Windows volume.
Fixes file system structural corruption and metadata inconsistencies on the volume.
File system errors can cause System File Checker repair operations to abort or fail.
4
Run sfc /scannow with offline parameters matching the target system.
Scans and replaces missing or corrupted operating system system files.
Offline SFC requires explicitly defining the boot volume and Windows directory locations.
5
Restart the computer.
Loads Windows normally into the user login interface.
Validates that system file integrity is restored and the system boots cleanly.

Key Concept

Offline Windows System File Repair via WinRE Command Line
Estimated Time:1m 30s
Question 387Question

An IT support technician at a regional veterinary hospital is responding to a Windows 11 workstation that is showing rogue pop-up security alerts and browser redirects. Place the following remediation actions in the correct chronological order according to CompTIA's standard 7-step malware removal procedure.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order follows the standard CompTIA malware removal steps: 1. Disconnect the workstation from wired/wireless networks (Isolate system), 2. Disable System Restore, 3. Update anti-malware signatures and perform a full scan (Remediate system), 4. Re-enable System Restore and create a clean restore point, 5. Educate the clinic staff member (Educate end user).
CompTIA defines a strict sequence for malware remediation: 1. Identify symptoms, 2. Isolate the infected system, 3. Disable System Restore, 4. Remediate infected systems (update definitions, scan, and remove), 5. Schedule scans and updates, 6. Enable System Restore and create a restore point, 7. Educate the end user. Disconnecting network interfaces immediately isolates the system. Disabling System Restore purges infected backup files. Remediation updates software and removes malware. Once clean, System Restore is turned back on to create a baseline. User education finishes the process.

Step-by-Step Solution

1
Isolate the infected system
Network connectivity is severed.
Disconnecting network cables and Wi-Fi prevents malware from propagating to other hosts on the hospital network.
2
Disable System Restore
Existing restore points containing malicious files are deleted.
Disabling System Restore prevents infected code from being archived or inadvertently restored.
3
Remediate the infected system
Malware is identified and deleted using updated anti-malware tools.
Updating definitions ensures detection of current threats, followed by scanning to clean the machine.
4
Enable System Restore and create a restore point
A clean recovery baseline is created.
System restore points should only be re-enabled after verifying that all malware has been completely removed.
5
Educate the end user
User learns best practices to prevent reinfection.
End-user training completes the remediation cycle by addressing human factors in security.

Key Concept

CompTIA 7-Step Malware Removal Process
Question 388Question

A cybersecurity technician is responding to a malware infection on a computer at a municipal water utility facility. Arrange the following remediation actions in the correct order according to CompTIA's standard 7-step malware removal procedure, from first action to last action.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequential order follows the CompTIA 7-step malware removal framework: (1) Disconnect network cabling and wireless connections to isolate the system, (2) Disable Windows System Restore, (3) Update anti-malware signatures and perform full system remediation scans, (4) Re-enable System Restore and create a clean restore point, and (5) Educate the end user on security awareness.
The correct order adheres strictly to CompTIA's 7-step remediation framework: Isolate system (Step 2) -> Disable System Restore (Step 3) -> Remediate system via signature updates and scans (Step 4) -> Re-enable System Restore and create a clean restore point (Step 6) -> Educate end user (Step 7).

Step-by-Step Solution

1
Isolate the infected system
Network cables are unplugged and Wi-Fi interfaces are disabled.
Prevents lateral movement of malware across the organization's network.
2
Disable System Restore in Windows
System Restore is turned off and past restore points containing malicious code are purged.
Ensures that malware cannot persist within Windows system backups.
3
Remediate infected system
Anti-malware software definitions are updated to the latest release and a full system scan removes infected files.
Clears active malicious processes and files from the operating system.
4
Enable System Restore and create a new restore point
System Restore service is re-enabled and a fresh baseline snapshot is captured.
Establishes a clean, known-good recovery point for future use.
5
Educate the end user
The user receives guidance on avoiding phishing emails, rogue software, and risky downloads.
Addresses the human factor to prevent future security incidents.

Key Concept

CompTIA 7-Step Malware Removal Procedure
Question 389Question

A technician is troubleshooting a legacy BIOS-based Windows workstation that fails to boot, displaying the error message 'Operating System not found'. After booting into the Windows Recovery Environment (WinRE) and opening the Command Prompt, in what sequence should the technician execute the Bootrec utility commands to manually repair the boot loader infrastructure?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence to repair legacy Windows startup boot loader infrastructure using the Bootrec utility is: 1) bootrec /fixmbr, 2) bootrec /fixboot, 3) bootrec /scanos, 4) bootrec /rebuildbcd.
In a legacy MBR boot troubleshooting context, recovery follows a hierarchical repair sequence. First, the Master Boot Record is restored (/fixmbr) to establish disk-level boot code. Next, the partition boot sector is written (/fixboot) to enable partition loading. Then, all disks are scanned (/scanos) to locate compatible Windows installations missing from the boot configuration. Finally, the Boot Configuration Data store is rebuilt (/rebuildbcd) to register the operating system installations into the boot manager menu.

Step-by-Step Solution

1
Run bootrec /fixmbr in WinRE Command Prompt.
Writes a master boot record compatible with Windows to the system partition without overwriting the existing partition table.
Resolves basic MBR corruption issues before addressing partition boot sector logic.
2
Run bootrec /fixboot in WinRE Command Prompt.
Writes a new boot sector to the system partition using a boot sector compatible with the installed Windows OS.
Fixes corrupted or non-standard partition boot sectors after the MBR is validated.
3
Run bootrec /scanos in WinRE Command Prompt.
Scans all connected storage drives for operating systems compatible with Windows and reports any entries not listed in the BCD.
Verifies which installations are available for inclusion before initiating the rebuild process.
4
Run bootrec /rebuildbcd in WinRE Command Prompt.
Rebuilds the Boot Configuration Data (BCD) store and prompts to add the discovered OS installations.
Completes the boot repair process by restoring missing boot entries to the BCD store.

Key Concept

Bootrec Command Sequence for Legacy Windows Recovery
Estimated Time:1m 30s
Question 390Question

A desktop technician at a pharmaceutical research laboratory is responding to a Windows workstation compromised by rogue software. Arrange the following remediation actions in the correct chronological sequence according to the CompTIA standard malware removal procedure.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with isolating the infected system from the network, disabling System Restore, updating definitions and remediating the infection through scanning, scheduling future automated scans and updates, and finally re-enabling System Restore to create a clean baseline.
The official CompTIA 7-step malware remediation process dictates a strict linear workflow: 1. Identify symptoms, 2. Isolate infected systems, 3. Disable System Restore, 4. Remediate infected systems (update definitions and perform removal scans), 5. Schedule scans and run updates, 6. Enable System Restore and create a restore point, 7. Educate end user. Isolating network connectivity immediately contains the threat. Disabling System Restore ensures malicious payloads are not archived into system backup states. Updating anti-malware signatures and executing scans cleans the OS. Scheduling future scans maintains protection, and re-enabling System Restore provides a clean recovery baseline.

Step-by-Step Solution

1
Disconnect network interfaces to isolate the infected workstation.
Network communication is severed, stopping potential lateral movement or communication with command-and-control servers.
CompTIA Step 2 requires immediate isolation of the host following symptom identification.
2
Disable System Protection / System Restore in Windows.
Previous restore points containing malware are removed, preventing reinstatement of infected files.
CompTIA Step 3 prevents malware from backing itself up or hiding within system restore snapshots.
3
Download signature updates and run removal scans.
The anti-malware software detects, quarantines, and cleans infected files and registry entries.
CompTIA Step 4 requires updating tools prior to scanning and executing remediation protocols.
4
Establish scheduled automated scans and OS updates.
Ongoing preventative maintenance is configured to prevent reinfection.
CompTIA Step 5 ensures the machine remains safe through proactive scheduling.
5
Turn System Restore back on and generate a new restore point.
A known-good operational baseline is created for future recovery needs.
CompTIA Step 6 reinstates rollback capability only after verifying the workstation is entirely clean.

Key Concept

CompTIA 7-Step Malware Removal Process
Estimated Time:1m 30s
Question 391Question

An IT technician at a marine research station is troubleshooting a Windows 11 workstation displaying unexpected pop-up advertisements and modified system host files. Place the following malware remediation actions in the correct sequential order according to the standard CompTIA 7-step malware removal procedure, starting immediately after symptom identification.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The proper sequence follows CompTIA's 7-step malware removal workflow: Isolate the workstation by disconnecting all network interfaces, Disable System Restore to delete infected restore points, Remediate the system by updating signatures and scanning in Safe Mode, Schedule automated scans and OS updates, and finally Enable System Restore to create a fresh restore point.
The correct sequence directly aligns with CompTIA's official 7-step remediation framework: 1. Identify symptoms (described in the stem context), 2. Isolate the infected system (unplug cables/disable Wi-Fi), 3. Disable System Restore (purge infected snapshots), 4. Remediate infected systems (update definitions and run full scans), 5. Schedule scans and enable updates, 6. Enable System Restore and create a clean restore point, and 7. Educate the end user.

Step-by-Step Solution

1
Isolate the infected workstation
The device is disconnected from Ethernet and Wi-Fi networks.
Prevents lateral movement of malware to other network assets.
2
Disable System Restore
System protection snapshots harbouring infected binaries are purged.
Ensures malware cannot persist inside Windows restore points.
3
Remediate infected system
Anti-malware definitions are updated and a scan cleans active threats.
Removes malicious files, registry entries, and corrupted host file modifications.
4
Schedule scans and updates
Automated recurring scans and automatic updates are configured.
Maintains ongoing system protection against recurring or new vulnerabilities.
5
Enable System Restore and create restore point
System protection is enabled and a clean baseline snapshot is stored.
Establishes a verified, healthy state for future system recovery.

Key Concept

CompTIA 7-Step Malware Removal Procedure
Question 392Question

A technician is configuring a corporate smartphone to synchronize email, contacts, and calendar data with an enterprise server. In what chronological order should the technician perform the configuration steps?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with opening account setup in settings, entering credentials, configuring server and security parameters, and finally selecting the data items to synchronize.
To set up corporate synchronization, a technician must first open the account setup wizard in settings, provide user authentication credentials, enter necessary server and domain information, and finally choose which items (such as email, contacts, and calendars) to sync.

Step-by-Step Solution

1
Open the mobile device's settings menu and initiate adding a new corporate email account.
The account setup wizard opens.
The system must know which account protocol/type is being added before prompts appear.
2
Input the user's corporate email address and password.
User credentials are provided to the setup wizard.
Authentication credentials are required to verify account identity on the network.
3
Configure the server address, domain name, and enable SSL/TLS encryption.
The device establishes a secure connection to the corporate synchronization server.
Explicit server and security options allow autodiscover or manual configuration to succeed securely.
4
Toggle on synchronization for desired items such as Mail, Contacts, and Calendars.
Data synchronization begins between the cloud/server and the smartphone.
Once connected, the user chooses which specific data categories to replicate onto the device.

Key Concept

Enterprise Mobile Account Synchronization Sequence
Question 393Question

A field technician is troubleshooting a corporate laptop that will not power on or charge when connected to its AC adapter. Place the troubleshooting steps in the correct order to isolate whether the issue is caused by external power, residual flea power, or a faulty battery.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order to isolate the laptop power issue is: 1) Verify the wall outlet with a known-good device or multimeter; 2) Inspect the AC adapter and laptop DC jack for damage; 3) Disconnect power sources and hold the power button to drain residual flea power; 4) Reconnect only the AC adapter without the battery and attempt to power on the laptop.
Following standard troubleshooting methodology requires starting with the simplest external checks (verifying the AC outlet and inspecting power cables), discharging flea power to clear logic locks, and finally isolating the battery component by booting solely on AC power.

Step-by-Step Solution

1
Verify external power supply to the wall socket.
Confirms that the electrical outlet is supplying power.
Always eliminate simple external environment issues before performing hardware diagnostics.
2
Check the external power cables and DC input connector.
Identifies broken pins, frayed cables, or unseated connections.
Ensures power can physically travel from the wall into the system board.
3
Perform a hard reset to discharge flea power.
Clears residual electrical charge trapped in board capacitors and resets the power management logic.
Flea power can prevent laptops from responding to the power button even when power components are functional.
4
Bypass the battery and test startup on AC adapter power alone.
Determines if a failing or shorted battery is preventing the power circuit from energizing.
If the laptop powers on without the battery, the battery is damaged/shorted and must be replaced.

Key Concept

Laptop Power Symptom Isolation and Flea Power Discharge Procedure
Question 394Question

A technician is performing an internal battery replacement on a corporate laptop. In what order should the technician perform the initial steps to safely remove the battery?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The technician should proceed in the following order: 1) Shut down the laptop completely and disconnect the AC power adapter, 2) Remove the bottom base enclosure cover screws and open the chassis, 3) Disconnect the battery power cable connector from the motherboard, and 4) Remove the battery retaining screws and extract the battery from the chassis.
Proper technician safety protocol dictates disconnecting AC power and turning off the device first, removing the bottom panel to access the internals, disconnecting the battery header to de-energize the motherboard, and finally unfastening and removing the battery.

Step-by-Step Solution

1
Isolate external power
Laptop is completely powered down and disconnected from external electricity.
Prevents accidental power-on and electrical hazards.
2
Access internal components
Bottom panel is removed, exposing motherboard and battery assembly.
Allows direct physical access to internal connections.
3
Disconnect battery power connector
Motherboard is de-energized and protected from battery power.
Prevents short circuits on the motherboard while removing metal fasteners.
4
Remove retaining fasteners and battery unit
Battery is unfastened and safely lifted out of the chassis.
Completes the physical removal step safely.

Key Concept

Safe Laptop Battery Removal Procedure
Question 395Question

A technician is tasked with replacing an internal lithium-ion battery in a corporate laptop following repeated thermal shutdowns and improper battery state reporting. Arrange the technician's actions in the correct sequential order from first step to final step to safely complete the replacement and power system initialization.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct procedural sequence is: 1) Disconnect external power and peripherals, 2) Remove chassis cover and disconnect internal battery header, 3) Press and hold the power button to discharge flea power, 4) Replace the battery unit and reconnect the battery header, 5) Reassemble chassis, plug in AC power, and perform a calibration cycle.
Technicians must follow ESD and electrical safety protocols: first removing external AC and peripheral power, then disconnecting the internal battery connection, followed by pressing the power button to discharge residual capacitor energy (flea power). Only then is the physical hardware swapped. Finally, the chassis is reassembled, connected to AC power, and calibrated to update power system telemetry.

Step-by-Step Solution

1
Isolate the laptop from external power sources and connected peripherals.
Prevents accidental shorting or shock from live AC supply voltage during disassembly.
Safety protocol requires removing all external energy inputs before opening hardware enclosures.
2
Access internal compartment and disconnect the internal battery electrical cable.
Fully isolates motherboard circuits from internal stored energy.
Disconnecting the battery cable prevents accidental shorts when handling motherboard components or tools.
3
Depress and hold the power button for 15 to 30 seconds.
Discharges stored static energy (flea power) from capacitors and resets the power management controller.
Flea power removal protects sensitive ICs from residual voltage discharges during component swaps.
4
Swap out the degraded battery for the new OEM battery unit and plug the cable back into the motherboard header.
Installs the new chemical cell and restores internal DC power wiring.
Physical replacement must occur only after the system is fully discharged of flea power.
5
Close the enclosure, connect the AC charger, and execute a full charge/discharge calibration sequence.
Ensures structural safety and calibrates the system power management firmware to accurately measure battery capacity.
Calibration resets the battery gas gauge IC accurate charge thresholds.

Key Concept

Safe laptop power component servicing and flea power discharge procedure
Question 396Question

A field technician is assigned to replace a degraded internal lithium-ion battery inside a corporate ultrabook. Arrange the following diagnostic and service steps in the correct chronological order from first step to last step.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence from first to last is: Disconnect AC power and shut down OS -> Remove bottom chassis panel -> Disconnect battery header from motherboard -> Remove battery screws and extract old pack -> Install new battery, reconnect motherboard header, close chassis, and connect AC power.
The correct sequence strictly follows standard technician safety and hardware disassembly guidelines. External power must be isolated and the system shut down before opening the case. Once opened, disconnecting the battery electrical header from the motherboard immediately de-energizes internal components. Only after de-energizing the board should metal tools be used to unfasten the battery retention screws to remove the pack. Finally, the new unit is physically secured, re-energized via motherboard connection, encased in the chassis, and connected to AC power.

Step-by-Step Solution

1
Disconnect external power adapter and initiate complete OS shutdown.
System is off and isolated from external high-voltage mains power.
Prevents data loss, file corruption, and electrocution hazards prior to hardware disassembly.
2
Unbolt fasteners and remove the bottom laptop cover.
Internal system board and battery compartment exposed.
Grants physical access to internal battery assembly.
3
Unplug the battery interface cable from the motherboard header.
System motherboard is completely de-energized.
Disconnecting power prior to loosening metal screws avoids dropping conductive fasteners onto live motherboard traces, which causes catastrophic shorts.
4
Remove internal battery mounting screws and remove defective unit.
Old battery module safely extracted from laptop casing.
Clears the internal bay for placement of the replacement component.
5
Secure replacement battery, reconnect electrical harness, reattach bottom chassis panel, and connect AC power.
Laptop reassembled cleanly and receiving charge power.
Restores structural integrity, electronically connects power, and prepares battery for calibration/charging.

Key Concept

Internal Laptop Battery Replacement and ESD/Electrical Safety Procedure
Question 397Question

A field technician needs to safely replace an internal M.2 solid-state drive (SSD) in a corporate laptop. Place the technician's repair steps in the correct sequence from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order for safely replacing a laptop M.2 SSD is: 1) Shut down the laptop and disconnect the AC power adapter; 2) Remove the bottom cover and disconnect the internal battery cable from the system board; 3) Unscrew the retaining fastener from the existing M.2 SSD and pull the drive out of the slot; 4) Slide the replacement M.2 SSD into the slot at an angle and tighten the retaining fastener.
Safely replacing laptop hardware requires isolating all power sources prior to handling internal circuitry. External AC power is disconnected first, followed by internal battery disconnection once the chassis is opened. After power isolation, the original M.2 SSD retaining screw is removed to release the drive, and finally the replacement M.2 SSD is inserted into the key slot and secured.

Step-by-Step Solution

1
Disconnect external power supply.
Laptop is powered down and isolated from external AC power.
Prevents risk of electrical shock and cuts primary power before opening the case.
2
Isolate internal power supply.
System board is completely de-energized.
Disconnecting the battery prevents short-circuiting sensitive board traces during servicing.
3
Unfasten and remove original M.2 SSD.
The M.2 slot is cleared for the replacement drive.
Removing the securing screw releases tension on the drive key interface.
4
Install and secure new M.2 drive.
Replacement drive is properly seated and anchored.
Ensures reliable electrical contact and mechanical stability before reassembling.

Key Concept

Standard laptop component replacement and electrical safety sequence
Question 398Question

A field technician needs to safely replace an internal SODIMM memory module in a corporate laptop. Place the following hardware upgrade procedure steps in the correct order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order begins with disconnecting external power and shutting down the OS, followed by removing the chassis cover, disconnecting the internal battery, removing the old SODIMM at a 45-degree angle after releasing the clips, and finally inserting the new SODIMM at an angle and locking it down.
The proper sequence follows standard CompTIA hardware maintenance protocols: first isolate external AC power and shut down the device, remove the lower enclosure, disconnect the internal battery to eliminate residual voltage, release and tilt the existing SODIMM module out of its socket, and insert the new SODIMM at a 45-degree angle before locking it flat into the retaining latches.

Step-by-Step Solution

1
Isolate system power source
System powered off completely with no external AC connection
Prevents data corruption and electrical hazards during physical disassembly.
2
Gain physical access to internal chassis
Bottom enclosure panel removed
Exposes motherboard components and RAM expansion slots.
3
Isolate internal power supply
Internal battery cable disconnected from system board header
Eliminates lingering standby voltage that could cause short circuits while handling components.
4
Remove existing SODIMM memory module
Retaining clips opened and module unseated at 45 degrees
Allows memory card extraction without placing strain on motherboard socket pins.
5
Install replacement SODIMM memory module
New module seated in slot at 45-degree tilt and pressed flat until locked
Ensures complete pin contact alignment and secure mechanical retention.

Key Concept

Laptop SODIMM Memory Replacement Procedure and Electrostatic/Electrical Safety
Question 399Question

A field technician is tasked with replacing a swollen internal lithium-ion battery in an enterprise ultra-thin laptop. In what chronological sequence should the technician perform the following maintenance steps to ensure physical safety and protect internal circuitry from electrical damage?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct chronological order is: 1) Perform complete OS shutdown and disconnect AC power, 2) Establish ESD grounding protection, 3) Remove bottom chassis screws and base panel, 4) Disconnect internal battery cable from the motherboard header, 5) Unscrew, swap the battery unit, and reconnect power.
The repair process must strictly follow electrical safety and ESD prevention standards: shut down and disconnect AC power first, ground the technician, remove the base panel to expose hardware, disconnect internal power from the motherboard header to prevent accidental shorts, and finally swap out the component.

Step-by-Step Solution

1
Disconnect external power supply and power down system
System transitions from active power state to off, isolating AC line voltage.
Prevents electrical hazards and system corruptions while servicing.
2
Equip anti-static wrist strap attached to ESD mat ground
Equalizes electrostatic potential between technician and laptop frame.
Protects sensitive microelectronics from silent ESD damage.
3
Unfasten bottom enclosure screws and pry off lower panel
Gains physical entry to motherboard, internal battery module, and cooling.
Required step to access internal battery module and its board connector.
4
Unplug internal battery header from system board
Completely cuts off standby DC current from motherboard traces.
Crucial safety precaution to avoid short-circuiting live motherboard traces with metallic screwdrivers or component edges.
5
Replace physical battery assembly and reconnect internal cable header
Faulty swollen battery is safely extracted, replacement installed, and main power pathway restored.
Final hardware replacement executed safely inside electrically de-energized system.

Key Concept

Servicing non-removable internal laptop hardware requires isolating external power, establishing ESD protection, removing exterior panels, disconnecting internal battery power from the motherboard header, and executing physical component replacement.
Question 400Question

A field technician needs to replace a damaged motherboard inside a modern enterprise laptop. To comply with standard hardware safety practices and prevent component damage, in what order should the technician perform the following disassembly steps?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The proper technician workflow sequence is: 1) Disconnect AC power and shut down, 2) Attach ESD wrist strap, 3) Remove bottom chassis access panel, 4) Disconnect the main internal battery cable, 5) Disconnect internal ribbon cables and remove motherboard mounting screws.
The correct service procedure begins by cutting external AC power and shutting down the system, followed immediately by establishing anti-static ESD grounding. Once grounded, the technician removes the lower base cover to reveal internal components. Before detaching sensitive peripheral ribbons (such as the display panel cable), the internal battery MUST be unplugged to de-energize standby power rails. Finally, with power completely severed, peripheral ribbon cables and mounting screws are removed to release the motherboard.

Step-by-Step Solution

1
Isolate external power sources
System powered down with no external power draw.
Prevents electrical surges or data loss during hardware servicing.
2
Apply ESD personal protection
Technician grounded to equalized potential.
Protects sensitive microelectronics from electrostatic discharge damage before contacting internal components.
3
Remove lower chassis access cover
Internal system components exposed.
Provides physical access to internal motherboard connections.
4
Unplug internal main battery connection
System board completely de-energized.
Modern laptops keep standby power active on motherboard traces even when powered off; removing battery power prevents short circuits when detaching display/ribbon cables.
5
Detach peripheral data ribbons and extract retaining screws
Motherboard uncoupled from chassis.
Ensures no trace tearing or cable connector damage occurs during board extraction.

Key Concept

Laptop Disassembly Safety Procedure and Component Isolation Sequence
PreviousPage 20 / 22Next
All practice questions — CompTIA A+ (Core 1 & Core 2) | Examkin