CCNA Windows Os Troubleshooting Questions

30 questions · Windows Os Troubleshooting topic · All types, answers revealed

1
MCQmedium

A user is trying to install a legacy application on Windows 10, but the installer fails with a message about 'incompatible version'. The application is known to work on Windows 7. Which compatibility settings should you try first to allow the installation to proceed?

A.Set the installer to run as an administrator.
B.Enable the 'Reduced color mode' compatibility setting.
C.Right-click the installer, go to Properties > Compatibility, and check 'Run this program in compatibility mode for: Windows 7'.
D.Use the Program Compatibility Troubleshooter from the Control Panel.
AnswerC

This setting makes Windows 10 report itself as Windows 7 to the application, which is the most direct fix for a version incompatibility error during installation.

Why this answer

Windows 10 includes compatibility modes that emulate older versions of Windows. Running the installer in compatibility mode for Windows 7 can often resolve version-check errors, as it tricks the application into thinking it is running on a compatible OS.

2
MCQmedium

A user installs a new application and immediately receives a 'The application was unable to start correctly (0xc000007b)' error. The application worked on another computer with the same Windows version. Which component is most likely causing this error?

A.The application requires a newer version of DirectX.
B.The Visual C++ Redistributable package is missing or corrupted.
C.The user does not have administrative privileges.
D.The hard drive has bad sectors affecting the application files.
AnswerB

This error often occurs when a 64-bit application tries to load a 32-bit DLL or vice versa; reinstalling the correct Visual C++ Redistributable resolves it.

Why this answer

Error code 0xc000007b is a STATUS_INVALID_IMAGE_FORMAT error, typically indicating a mismatch between 32-bit and 64-bit binaries. The most common cause is a missing or corrupted Visual C++ Redistributable package, which provides essential runtime libraries (e.g., MSVCR120.dll) that the application depends on. Without these libraries, the application cannot load correctly, even if the Windows version matches.

Exam trap

CompTIA often tests the 0xc000007b error by pairing it with a plausible but incorrect option like DirectX, exploiting the fact that many candidates associate all 'missing DLL' errors with DirectX or graphics issues.

How to eliminate wrong answers

Option A is wrong because DirectX errors usually produce different error codes (e.g., 0xc000007b is not a DirectX-specific error) and DirectX is primarily for graphics APIs, not general application startup. Option C is wrong because insufficient administrative privileges typically trigger 'Access Denied' or UAC prompts, not error 0xc000007b. Option D is wrong because bad sectors on the hard drive would cause file read errors or data corruption, not a specific STATUS_INVALID_IMAGE_FORMAT error; the error occurs before the application files are fully read.

3
MCQmedium

A user reports that their Windows 10 laptop suddenly shows a black screen with a movable mouse cursor after logging in. They can press Ctrl+Alt+Del to open the security screen. Which troubleshooting step should you perform first to restore the desktop?

A.Boot into Safe Mode and run System File Checker (sfc /scannow).
B.Press Ctrl+Alt+Del, open Task Manager, then run a new task and type 'explorer.exe'.
C.Perform a system restore to a point before the issue started.
D.Check the display driver by pressing Windows+P and switching display modes.
AnswerB

This restarts the Windows shell, which is the most common fix for a black screen with a cursor. It is quick, safe, and often restores the desktop immediately.

Why this answer

A black screen with a cursor after login often indicates that the Windows Explorer shell (explorer.exe) has crashed or is not starting properly. Using Task Manager to manually restart the explorer.exe process is a quick and non-destructive first step that often resolves the issue without rebooting.

4
MCQhard

A user reports that their Windows 10 PC suddenly shows a 'Your IT administrator has limited access' message when trying to change the desktop background. The user has local administrator rights. Which Group Policy or registry setting is most likely misconfigured?

A.The 'Prevent changing desktop background' policy is enabled in Local Group Policy.
B.The user's account is not part of the Administrators group.
C.The desktop background file is corrupted.
D.The Windows license has expired.
AnswerA

This policy under User Configuration > Administrative Templates > Control Panel > Personalization restricts background changes, overriding admin rights.

Why this answer

The 'Prevent changing desktop background' policy, when enabled in Local Group Policy Editor (gpedit.msc) under User Configuration > Administrative Templates > Control Panel > Personalization, explicitly blocks background changes regardless of local administrator rights. Since the user has local admin rights but still sees the restriction, this policy is the most likely cause, as it overrides user permissions.

Exam trap

CompTIA often tests the misconception that local administrator rights bypass all Group Policy restrictions, but in reality, many administrative templates apply to all users, including administrators, unless specifically configured otherwise.

How to eliminate wrong answers

Option B is wrong because the user already has local administrator rights, so not being part of the Administrators group is contradictory to the scenario. Option C is wrong because a corrupted background file would cause a display issue (e.g., black screen or error), not a specific 'IT administrator has limited access' message. Option D is wrong because an expired Windows license triggers activation warnings (e.g., 'Windows is not activated') and may disable personalization features, but it does not produce the exact 'Your IT administrator has limited access' message, which is specific to Group Policy restrictions.

5
MCQmedium

A customer reports that their Windows 10 desktop shows a black screen with a movable cursor after logging in. They can press Ctrl+Alt+Del and open Task Manager. Which process should be restarted from Task Manager to restore the desktop and taskbar?

A.Restart the 'Windows Explorer' process in Task Manager.
B.End the 'svchost.exe' process group.
C.Start the 'winlogon.exe' process.
D.Run 'msconfig' from the Run dialog to enable normal startup.
AnswerA

Windows Explorer (explorer.exe) manages the desktop and taskbar; restarting it resolves the black screen issue.

Why this answer

The black screen with a movable cursor after login, combined with the ability to open Task Manager via Ctrl+Alt+Del, indicates that the Windows shell (explorer.exe) has crashed or is not running. Restarting the 'Windows Explorer' process from Task Manager (File > Run new task > 'explorer.exe') reloads the desktop, taskbar, and File Explorer, restoring the graphical user interface. This is the standard recovery step for a missing shell in Windows 10.

Exam trap

The trap here is that candidates confuse the 'Windows Explorer' process with Internet Explorer or assume that 'svchost.exe' is the correct service host to restart, when in fact the shell process (explorer.exe) is the specific component responsible for the desktop and taskbar.

How to eliminate wrong answers

Option B is wrong because ending the 'svchost.exe' process group would terminate critical Windows services (e.g., RPC, DHCP, DNS), potentially causing system instability or a blue screen, not restoring the desktop. Option C is wrong because 'winlogon.exe' is a system process that handles interactive logon and cannot be started manually from Task Manager; it is already running if the user can log in, and restarting it would force a logoff. Option D is wrong because 'msconfig' is a system configuration utility used to change boot options or startup mode, not a tool to restart a crashed shell process; running it from the Run dialog would not fix the immediate black screen issue.

6
MCQmedium

A customer calls saying that after installing a new printer, their Windows 10 computer now takes much longer to shut down. They have uninstalled the printer software, but the slow shutdown persists. Which tool should you use to identify the cause of the shutdown delay?

A.Task Manager
B.Performance Monitor
C.Event Viewer
D.Disk Cleanup
AnswerC

Event Viewer records system, application, and security logs. During a slow shutdown, the System log often contains warnings or errors from services or drivers that are delaying the process, allowing you to identify the culprit.

Why this answer

Slow shutdowns are often caused by services or drivers that fail to terminate properly. The Event Viewer logs system events, including errors and warnings during shutdown, which can pinpoint the offending component. This is more effective than generic performance monitoring or disk cleanup for this specific issue.

7
MCQeasy

A user in the accounting department cannot print to a network printer that other users can access. They are running Windows 10. When they try to print, they get a message: 'Windows cannot connect to the printer. Access is denied.' What is the most likely cause of this issue?

A.The printer driver is corrupt on the user's computer.
B.The network cable is unplugged from the user's computer.
C.The user does not have permission to use the printer.
D.The printer is out of paper or toner.
AnswerC

The 'access denied' error directly points to a permissions issue; the print server or printer security settings need to be checked and the user granted access.

Why this answer

An 'Access is denied' error when other users can print indicates that the user's permissions are the problem, not the printer or driver. This usually means the user account does not have the necessary permissions on the print server or the printer itself.

8
MCQhard

A user's Windows 10 laptop fails to boot and shows 'INACCESSIBLE_BOOT_DEVICE' blue screen error. The technician suspects a recent driver update for the storage controller. Which recovery environment command can be used to disable the problematic driver from loading?

A.Run 'bcdedit /set {default} safeboot minimal' from the recovery command prompt.
B.Run 'diskpart' and then 'clean' to wipe the disk.
C.Run 'chkdsk /f' to fix file system errors.
D.Run 'bootrec /fixboot' to repair the boot sector.
AnswerA

This command forces the system to boot into Safe Mode, bypassing the problematic driver and allowing repair.

Why this answer

The 'INACCESSIBLE_BOOT_DEVICE' error often occurs after a faulty storage controller driver update. Booting into Safe Mode with minimal drivers can bypass the problematic driver. The command 'bcdedit /set {default} safeboot minimal' configures the boot loader to start Windows in Safe Mode on the next restart, loading only essential drivers and services, which allows the technician to roll back or uninstall the offending driver.

Exam trap

The trap here is that candidates often confuse 'bcdedit' with 'bootrec' commands, assuming 'bootrec /fixboot' or 'chkdsk' can resolve driver-related boot failures, when in fact only Safe Mode or driver rollback via the recovery environment addresses the root cause.

How to eliminate wrong answers

Option B is wrong because 'diskpart clean' wipes the entire disk partition table, destroying all data and making the system unbootable — it does not disable a driver. Option C is wrong because 'chkdsk /f' repairs file system corruption, not driver-related boot failures; it cannot disable a storage controller driver. Option D is wrong because 'bootrec /fixboot' rewrites the boot sector code, which addresses bootloader corruption but does not prevent a specific driver from loading.

9
MCQhard

A user's Windows 11 PC displays a 'Critical Process Died' blue screen error after a recent Windows Update. The system boots into a recovery loop. Which advanced startup option should be used to remove the problematic update?

A.Boot into Safe Mode from the recovery environment and uninstall the latest update.
B.Use System Restore to revert to a point before the update.
C.Run the Windows Memory Diagnostic tool to check for RAM issues.
D.Perform a clean installation of Windows 11 using the recovery USB.
AnswerA

Safe Mode loads minimal drivers, allowing the technician to uninstall the update without the crash occurring.

Why this answer

Option A is correct because booting into Safe Mode from the Windows Recovery Environment (WinRE) allows you to access the desktop with minimal drivers and services, then use Settings > Windows Update > Update History > Uninstall updates to remove the problematic cumulative update. This directly addresses the 'Critical Process Died' bugcheck (0x000000EF), which often results from a corrupted system file or driver conflict introduced by a recent update, and Safe Mode bypasses the crash loop to enable the uninstall.

Exam trap

The trap here is that candidates often choose System Restore (Option B) because it sounds like a general 'undo' tool, but they fail to recognize that uninstalling the specific update is faster, more targeted, and does not require a pre-existing restore point, which may not exist after a forced update.

How to eliminate wrong answers

Option B is wrong because System Restore reverts the entire system state (registry, system files, installed applications) to a previous restore point, which is a broader and slower operation than simply uninstalling the specific update; it may also fail if no restore point exists or if the update itself corrupted the restore point data. Option C is wrong because the Windows Memory Diagnostic tool tests for physical RAM defects (e.g., bad memory cells, timing errors) and is irrelevant to a software-caused stop code like 'Critical Process Died' that stems from a Windows Update. Option D is wrong because performing a clean installation of Windows 11 using a recovery USB is a destructive, last-resort process that wipes all data and applications, whereas the problem can be solved non-destructively by simply removing the offending update.

10
MCQmedium

After a power outage, a Windows 10 computer boots to a black screen with the message 'Bootmgr is missing'. The technician has a Windows installation USB. Which repair command should be used to rebuild the Boot Configuration Data (BCD)?

A.From the recovery command prompt, run 'bootrec /fixmbr'.
B.Run 'bootrec /fixboot'.
C.Run 'bootrec /rebuildbcd'.
D.Run 'sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows'.
AnswerC

This command scans for Windows installations and rebuilds the BCD, directly addressing the missing Bootmgr error.

Why this answer

The 'Bootmgr is missing' error indicates that the Boot Configuration Data (BCD) store is corrupted or missing. The 'bootrec /rebuildbcd' command scans all disks for Windows installations and prompts you to add them to a new BCD store, directly rebuilding the BCD. This is the correct repair for a missing or corrupt BCD, which is the specific cause of this error.

Exam trap

The trap here is that candidates confuse the purpose of 'bootrec /fixmbr' and 'bootrec /fixboot' (which repair the boot sector and MBR) with rebuilding the BCD store, leading them to choose a wrong option when the specific error is about a missing or corrupt BCD.

How to eliminate wrong answers

Option A is wrong because 'bootrec /fixmbr' repairs the Master Boot Record (MBR) on the system partition, which handles the initial boot process but does not rebuild the BCD store. Option B is wrong because 'bootrec /fixboot' writes a new boot sector to the system partition, which is used for loading the boot manager but does not address a missing or corrupt BCD. Option D is wrong because 'sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows' checks and repairs system file integrity, not the BCD store, and is used for corrupted Windows system files, not boot configuration data.

11
MCQhard

A user's Windows 10 laptop is experiencing random restarts, especially under heavy load like gaming or video rendering. The Event Viewer shows multiple 'Kernel-Power 41' critical errors. The CPU temperature is normal, and the power supply is functioning. Which component is most likely causing the issue?

A.The RAM is faulty.
B.The graphics card is overheating.
C.The motherboard is failing.
D.The Windows installation is corrupt.
AnswerC

A failing motherboard can cause unstable power delivery to components, leading to random restarts under load, which matches the Kernel-Power 41 errors and the symptom pattern.

Why this answer

Kernel-Power 41 errors indicate unexpected shutdowns or restarts. Under heavy load, a failing power supply (even if it appears to function) can cause voltage drops that trigger restarts. However, if the PSU is ruled out, the most likely culprit is the motherboard, as it regulates power delivery to components and can cause instability under load.

12
MCQmedium

A user calls the help desk because their Windows 10 laptop will not connect to any Wi-Fi network. The Wi-Fi adapter is enabled in Device Manager and shows no errors, but the network list is empty. Other devices connect fine. Which command should be run first to reset the network stack?

A.Run 'ipconfig /release' followed by 'ipconfig /renew'.
B.Run 'netsh winsock reset' from an elevated Command Prompt.
C.Run 'sfc /scannow' to check system files.
D.Run 'net start wlansvc' to start the WLAN AutoConfig service.
AnswerB

Winsock reset restores the network stack to default, fixing issues where no networks are visible.

Why this answer

The 'netsh winsock reset' command is the correct first step because it resets the Winsock catalog, which manages network I/O and API calls. When the Wi-Fi adapter shows no errors but the network list is empty, the issue is often a corrupted Winsock configuration rather than a driver or service failure. This command restores the Winsock stack to a clean state without requiring a reboot, making it the most direct fix for this specific symptom.

Exam trap

CompTIA often tests the distinction between resetting the network stack (Winsock) versus restarting a service or refreshing an IP lease, and the trap here is that candidates mistakenly choose 'ipconfig /renew' because they think the issue is DHCP-related, when the empty network list indicates a lower-level Winsock corruption.

How to eliminate wrong answers

Option A is wrong because 'ipconfig /release' and 'ipconfig /renew' only refresh DHCP leases and IP addresses; they do not reset the network stack or fix a corrupted Winsock catalog, and they require an active connection to a network, which the user lacks. Option C is wrong because 'sfc /scannow' checks and repairs system file integrity, not the network stack; while a corrupted system file could theoretically cause network issues, it is not the first-line diagnostic for an empty Wi-Fi list with a functional adapter. Option D is wrong because 'net start wlansvc' starts the WLAN AutoConfig service, but the scenario states the adapter is enabled and shows no errors, implying the service is already running; forcing a start would either fail or be redundant, and it does not address Winsock corruption.

13
MCQeasy

After installing a new printer driver, a user's Windows 11 computer crashes with a blue screen error every time they try to print. The computer works fine otherwise. Which boot option should be used to restore functionality without affecting user data?

A.Boot into Safe Mode and uninstall the printer driver.
B.Use Last Known Good Configuration to revert driver changes.
C.Run System Restore from the recovery environment.
D.Perform a clean installation of Windows 11.
AnswerA

Safe Mode loads minimal drivers, allowing the technician to remove the faulty driver without the crash occurring.

Why this answer

The problem is caused by a faulty driver, and the safest way to recover is to boot into Safe Mode, which loads only essential drivers. From Safe Mode, the technician can uninstall the problematic printer driver. This tests understanding of Safe Mode as a troubleshooting environment for driver conflicts.

14
MCQhard

A technician is troubleshooting a Windows 10 computer that randomly restarts without any error message. The system does not create a minidump file. Which advanced startup option should be disabled in the System Properties to help capture the error for analysis?

A.Fast Startup
B.Automatic restart
C.Write an event to the system log
D.Small memory dump (256 KB)
AnswerB

Disabling 'Automatic restart' under Startup and Recovery in System Properties will stop the system from rebooting on a system failure, allowing the error to be seen and dump files to be written.

Why this answer

When 'Automatic restart' is enabled, the system restarts immediately after a critical error (BSOD) without displaying the error screen or creating a dump file. Disabling this option allows the system to halt on the blue screen, showing the error code and enabling dump file generation for troubleshooting.

15
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

This command creates a detailed battery report saved as an HTML file in the current directory. It shows battery design capacity, full charge capacity, and usage history, helping identify battery degradation or excessive drain.

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.

16
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

Setting the application to run in Windows 10 compatibility mode often resolves compatibility issues without needing to revert the OS, making it the most efficient solution.

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.

17
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

A 'CRITICAL_PROCESS_DIED' error that occurs only with one application suggests a problem with that application's files or its dependencies. The best first step is to reinstall the application, as this will replace any corrupted files that may be causing the crash.

18
MCQeasy

A user reports that their Windows 10 desktop is running very slowly, especially when opening multiple applications. They have 8 GB of RAM and a traditional hard drive. Task Manager shows that memory usage is consistently at 90% or higher. Which component is most likely the bottleneck and what is the best upgrade?

A.The CPU is the bottleneck; upgrade to a faster processor.
B.The hard drive is the bottleneck; upgrade to an SSD.
C.The RAM is the bottleneck; add more RAM.
D.The graphics card is the bottleneck; upgrade to a dedicated GPU.
AnswerC

High memory usage indicates the system needs more RAM; adding more will allow more applications to run without using slow virtual memory.

Why this answer

High memory usage (90%+) with 8 GB of RAM indicates that the system is running out of physical memory, causing it to use the hard drive as virtual memory, which is very slow. The best upgrade is to add more RAM to reduce reliance on the slow hard drive paging.

19
MCQmedium

A small business is deploying Windows 11 to 20 new workstations. During the setup, you need to ensure that each computer receives a unique computer name and joins the domain automatically. Which Windows deployment tool should you use to automate this process?

A.Windows System Image Manager (Windows SIM)
B.Windows Deployment Services (WDS)
C.Microsoft Deployment Toolkit (MDT)
D.Sysprep
AnswerB

WDS allows for network-based deployment of Windows images and can automate computer naming and domain join via answer files, making it the correct choice.

Why this answer

Windows Deployment Services (WDS) is designed for network-based deployment of Windows images to multiple computers. It can be configured with answer files to automate computer naming and domain joining, making it the ideal tool for this scenario.

20
MCQmedium

During a Windows 10 deployment, you need to ensure that a specific Group Policy setting is applied to a computer before any user logs on. Which policy processing mode should you configure?

A.Loopback processing mode
B.Computer Configuration
C.User Configuration
D.Administrative Templates
AnswerB

Policies under Computer Configuration are applied during system startup, before any user logs in. This ensures the setting is in effect for all users and at the login screen.

Why this answer

Computer Configuration policies in Group Policy apply to the computer itself and take effect at boot, before user logon. User Configuration policies apply only after a user logs on. To ensure a setting is applied before any user logs on, it must be placed under Computer Configuration.

21
MCQeasy

A user reports that after a recent Windows update, their computer now boots to a blue screen with the error 'INACCESSIBLE_BOOT_DEVICE'. They need to get back to work quickly. Which Windows recovery tool should you use first to attempt a repair?

A.System Restore
B.Reset this PC
C.Startup Repair
D.Command Prompt (chkdsk /f)
AnswerC

Startup Repair is designed to fix boot problems like missing or corrupted system files, driver issues, and disk errors. It is the correct first-line tool for this scenario.

Why this answer

The 'INACCESSIBLE_BOOT_DEVICE' error often indicates a driver or disk configuration issue caused by an update. The Startup Repair tool in the Windows Recovery Environment (WinRE) can automatically diagnose and fix common boot problems like this. It is the safest and fastest initial step before trying more invasive methods.

22
MCQhard

After a security incident, a Windows 10 workstation is suspected of having malware that prevents the Task Manager and Command Prompt from opening. You need to run a system scan. Which tool can you use from the Windows Recovery Environment (WinRE) to perform an offline antivirus scan?

A.System File Checker (sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows)
B.Windows Memory Diagnostic
C.Microsoft Defender Offline Scan
D.Diskpart
AnswerC

This offline scan can be initiated from WinRE and uses up-to-date virus definitions to detect and remove malware without loading the infected Windows installation.

Why this answer

Windows Defender Offline (now part of Microsoft Defender Antivirus) can be run from the Windows Recovery Environment to scan for malware without booting the infected OS. This bypasses malware that blocks security tools in the normal Windows environment. It is the appropriate tool for this scenario.

23
MCQmedium

A user reports that their Windows 11 computer is infected with ransomware. Files are encrypted and a ransom note is displayed. The user has a backup from two days ago stored on an external drive that was disconnected after the backup. What is the best course of action to recover the data?

A.Pay the ransom to get the decryption key.
B.Disconnect the computer from the network and restore files from the external backup.
C.Run a full antivirus scan to remove the ransomware and then restore files.
D.Use System Restore to revert the system to a previous state.
AnswerB

Disconnecting prevents the ransomware from spreading or communicating, and restoring from an unaffected backup is the best way to recover data without paying.

Why this answer

Since the backup was stored on a disconnected external drive, it is likely not encrypted by the ransomware. The best action is to disconnect the infected computer from the network to prevent further spread, then restore the files from the clean backup.

24
MCQmedium

A user reports that their Windows 10 laptop will not boot and displays the error 'Bootmgr is missing'. They have a valid Windows installation USB. Which steps should you take to repair the boot manager?

A.Boot from the USB, go to Troubleshoot > Advanced Options > Command Prompt, and run 'bootrec /rebuildbcd' and 'bootrec /fixmbr'.
B.Boot from the USB and select 'Repair your computer' > 'Startup Repair'.
C.Boot from the USB and run 'sfc /scannow' from the Command Prompt.
D.Boot from the USB and perform a system restore to a previous point.
AnswerA

These bootrec commands are specifically designed to rebuild the BCD and repair the master boot record, fixing the 'Bootmgr is missing' error.

Why this answer

The 'Bootmgr is missing' error indicates that the Boot Configuration Data (BCD) is corrupted or missing. Booting from the Windows installation USB and using the bootrec command-line tool can rebuild the BCD and fix the boot manager.

25
MCQeasy

A user reports that their Windows 10 laptop takes an unusually long time to boot and frequently shows a 'Preparing Automatic Repair' screen before finally loading the desktop. Which Windows tool should be used first to diagnose and potentially fix the boot process?

A.Run the System File Checker (SFC) from an elevated Command Prompt.
B.Perform a full system restore from a backup made last month.
C.Use the Disk Cleanup tool to remove temporary files.
D.Reinstall Windows using the 'Reset this PC' option.
AnswerA

SFC scans and repairs corrupted system files, which can resolve boot delays and automatic repair loops.

Why this answer

The 'Preparing Automatic Repair' loop and slow boot often indicate corruption in critical boot files, such as the Boot Configuration Data (BCD) or system files. Running System File Checker (SFC) from an elevated Command Prompt scans and repairs protected system files, addressing the root cause without data loss. This is the first-line diagnostic tool for boot integrity issues before escalating to more destructive methods.

Exam trap

CompTIA often tests the misconception that Disk Cleanup or a full restore is the appropriate first step for boot issues, when in fact SFC is the correct initial diagnostic tool for file corruption without data loss.

How to eliminate wrong answers

Option B is wrong because performing a full system restore from a backup is a reactive, data-loss-prone step that should only be used after less invasive repairs fail; it does not diagnose the specific boot file corruption. Option C is wrong because Disk Cleanup only removes temporary files and does not repair system files or boot configuration, making it irrelevant to boot loops. Option D is wrong because reinstalling Windows via 'Reset this PC' is a last-resort destructive recovery that wipes applications and settings, and is not the first tool to use for boot file corruption.

26
MCQeasy

A user reports that their Windows 10 laptop takes a very long time to boot and shows a 'Preparing Automatic Repair' message before eventually loading the desktop. They mention this started after a power outage. Which Windows tool should you use first to diagnose and attempt to fix the boot issue?

A.System Restore
B.Startup Repair
C.Reset this PC
D.System File Checker (sfc /scannow)
AnswerB

Startup Repair is designed to diagnose and fix boot problems like corrupted BCD or missing system files, making it the correct first step.

Why this answer

The 'Preparing Automatic Repair' loop often indicates a corrupted boot configuration or system file. Using the Startup Repair tool from the Windows Recovery Environment (WinRE) is the first recommended step, as it can automatically fix many common boot problems without needing to reinstall the OS.

27
MCQmedium

A user on Windows 11 is trying to install a new application, but receives the error 'Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item.' The user is a local administrator. What is the most likely cause?

A.The file is corrupted and needs to be re-downloaded.
B.User Account Control (UAC) is blocking the installation.
C.The file has been blocked by Windows because it was downloaded from the internet.
D.The user does not have 'Read & Execute' permissions on the file.
AnswerC

Windows adds a security zone to downloaded files. Right-clicking the file, selecting Properties, and clicking 'Unblock' removes the restriction. This is a common cause of this error for admin users.

Why this answer

Even local administrators can be blocked from running executables that were downloaded from the internet because Windows marks them with a zone identifier. The 'Unblock' button in the file's Properties removes this mark, allowing the file to run. This is a common security feature in Windows to prevent accidental execution of potentially unsafe files.

28
MCQmedium

A small office user reports that their Windows 10 PC randomly freezes for 10-15 seconds, especially when opening large files. Task Manager shows high disk usage (100%) but low CPU and memory usage. Which built-in Windows tool should be used to diagnose the disk performance issue?

A.Use Resource Monitor to analyze disk activity and queue length.
B.Run the Performance Monitor with a Data Collector Set for disk.
C.Check the Event Viewer for disk-related errors.
D.Defragment the hard drive using the Optimize Drives tool.
AnswerA

Resource Monitor shows real-time disk I/O per process, helping pinpoint which process is causing high disk usage.

Why this answer

Resource Monitor (resmon.exe) provides real-time metrics on disk activity, including disk queue length, average disk seconds per read/write, and per-process I/O. The user's symptom of 100% disk usage with low CPU/memory suggests a disk bottleneck; a consistently high queue length (above 2 per spindle) indicates the disk cannot keep up with I/O requests, which Resource Monitor can pinpoint directly.

Exam trap

CompTIA often tests the distinction between real-time diagnostic tools (Resource Monitor) and historical logging tools (Performance Monitor), leading candidates to choose Performance Monitor because it sounds more comprehensive, but it is not designed for live troubleshooting of an active bottleneck.

How to eliminate wrong answers

Option B is wrong because Performance Monitor with a Data Collector Set is a historical logging tool, not a real-time diagnostic tool for immediate analysis of current high disk usage. Option C is wrong because Event Viewer logs system errors and warnings, not granular per-process disk I/O metrics like queue length or latency. Option D is wrong because defragmentation (Optimize Drives) improves sequential read performance on HDDs but does not address the underlying cause of high disk queue length or random freezes, and is irrelevant for SSDs which do not benefit from defragmentation.

29
MCQmedium

A user on Windows 11 reports that their computer frequently freezes for 5–10 seconds at a time, especially when opening multiple browser tabs. The system has 8 GB of RAM and a mechanical hard drive. Which performance monitor counter should you check first to confirm the likely bottleneck?

A.% Processor Time
B.Available Mbytes
C.Avg. Disk Queue Length
D.Pages/sec
AnswerC

A high average disk queue length indicates that the disk is overwhelmed with requests, which is a classic symptom of excessive paging on a system with insufficient RAM and a slow HDD. This is the best counter to confirm the bottleneck.

Why this answer

Frequent freezing when multitasking on a system with a mechanical hard drive and limited RAM often points to excessive disk usage due to paging. The 'Avg. Disk Queue Length' counter in Performance Monitor indicates how many requests are waiting for the disk; a sustained value over 2 suggests the disk is the bottleneck, likely from swapping memory to the page file.

30
MCQhard

While configuring a new Windows 11 workstation, you need to ensure that a legacy application can always run with administrative privileges without prompting the user. The user is a standard user. What is the best way to accomplish this?

A.Set the application's compatibility mode to 'Run this program as an administrator' and grant the user full control over the program's folder.
B.Create a scheduled task that runs with the highest privileges and launches the application at user logon.
C.Disable User Account Control (UAC) via the Control Panel.
D.Add the user to the local Administrators group.
AnswerB

A scheduled task can be configured to run with stored administrator credentials and launch the application without any UAC prompt. This is the supported method for standard users to run legacy apps that require elevation.

Why this answer

Forcing a legacy app to run as administrator without UAC prompts for a standard user requires creating a scheduled task that runs with elevated privileges. The task can be set to run at user logon or on demand, and the application is launched by the task with the stored admin credentials. This bypasses UAC while maintaining security for the standard user account.

Ready to test yourself?

Try a timed practice session using only Windows Os Troubleshooting questions.