Skip to main content
Chapter 2 of 8
~27 min read
Last reviewed July 17, 2026

System Recovery and Advanced Maintenance

Covers Task Manager, Resource Monitor, Event Viewer, System Restore, building a bootable recovery USB, preventive maintenance, Disk Cleanup, and recovering lost data.

Written and reviewed by the IK Learning team

  • Task Manager
  • Resource Monitor
  • Event Viewer
  • System Restore
  • Disk Cleanup
  • Data Recovery

This chapter covers advanced system maintenance and recovery tools, including Task Manager, Resource Monitor, and Event Viewer for diagnosing problems, System Restore and bootable recovery USBs for fixing a broken system, and preventive maintenance practices like Disk Cleanup and data recovery.

Chapter Introduction

What this chapter is about, and why it matters

Every computer eventually misbehaves. This chapter is about the tools already built into the system for finding out why, and the habits that stop small problems becoming lost coursework.

The tools split into two groups worth keeping separate in your mind. Task Manager, Resource Monitor and Event Viewer are diagnostic — they tell you what is happening or what happened. System Restore, recovery drives and data recovery software are corrective — they undo damage. Exam questions frequently ask which tool suits a given situation, and the diagnostic/corrective split answers most of them.

The single most valuable idea in this chapter is that prevention costs almost nothing compared with recovery. A backup made in advance turns a catastrophe into an inconvenience.

What You Will Learn

The skills this chapter is assessed on

  • Use Task Manager, Resource Monitor and Event Viewer to diagnose a performance or stability problem.
  • Explain what System Restore does and, just as importantly, what it does not do.
  • Describe how a bootable recovery USB is created and when it is needed.
  • Carry out preventive maintenance tasks including Disk Cleanup and defragmentation.
  • Explain how deleted data can sometimes be recovered, and what action makes recovery impossible.

Key Concepts Explained

8 core ideas — each with its definition and a separate worked example

Task Manager

Definition

Task Manager is a system utility that displays the applications, processes and services currently running, shows how much CPU, memory, disk and network each is using, and allows a user to end an unresponsive process.

Example

A laptop's fan is loud and everything is slow. Opening Task Manager and sorting by the CPU column reveals a single browser tab consuming 95%. Ending that process restores normal speed immediately.

Detailed Explanation

Sorting by column is the skill, not merely opening the tool. The question is always "which process is responsible?", and the answer is at the top of whichever resource column is saturated.

Resource Monitor

Definition

Resource Monitor is an advanced diagnostic tool that provides detailed, real-time information about how processes are using the CPU, memory, disk and network, including which specific files and network connections each process is accessing.

Example

Task Manager shows disk usage stuck at 100% but not why. Resource Monitor goes further and names the exact files being read and written, revealing that an antivirus scan is responsible.

Detailed Explanation

Use Task Manager first for the quick answer and Resource Monitor when you need detail it cannot give. An exam question mentioning "which files" or "which connections" is pointing at Resource Monitor.

Event Viewer

Definition

Event Viewer is a Windows utility that displays logs of system, security and application events recorded by the operating system, including errors, warnings and informational messages with their timestamps.

Example

A computer restarted overnight and nobody knows why. Event Viewer holds a logged critical error with the exact time and the component that failed — evidence that exists even though nobody was watching.

Detailed Explanation

Event Viewer is the only one of these three tools that looks backwards. Task Manager and Resource Monitor show the present; Event Viewer shows the past, which is what you need for intermittent faults.

System Restore

Definition

System Restore is a Windows recovery feature that returns system files, installed programs, drivers and registry settings to the state saved in an earlier restore point, without affecting the user's personal documents.

Example

A newly installed driver causes the display to fail after every restart. Rolling back to a restore point created before that installation undoes the driver change and the display works again.

Detailed Explanation

The limitation is the examinable part: System Restore does not recover deleted personal files. It is not a backup. It repairs a broken system configuration, and a student who confuses the two loses both the mark and, in real life, the files.

Bootable recovery USB

Definition

A bootable recovery drive is a USB device containing the files needed to start a computer independently of its installed operating system, so that repair, restore or reinstallation tools can be used when the system will not boot.

Example

A laptop shows an error before Windows loads, so nothing on the internal drive can be run. Starting from a recovery USB loads a minimal working environment from which the installation can be repaired or the files rescued.

Detailed Explanation

The essential detail is timing: a recovery drive has to be created while the computer still works. Made after the failure, it cannot be made at all — which is why this is a preventive measure listed alongside backups.

Preventive maintenance

Definition

Preventive maintenance is the routine set of tasks carried out on a computer to keep it running reliably and to prevent problems from developing, rather than to fix problems that have already occurred.

Example

A monthly routine of installing updates, running Disk Cleanup, checking free disk space, scanning for malware, verifying that backups completed, and physically clearing dust from the vents.

Detailed Explanation

The dust matters more than students expect. Blocked vents raise internal temperature, the CPU deliberately slows itself to avoid damage, and the machine appears to have a software problem that no amount of software work will fix.

Disk Cleanup and defragmentation

Definition

Disk Cleanup is a utility that reclaims storage space by deleting temporary files, cached data and other files that are no longer needed. Defragmentation reorganises fragmented files on a magnetic hard drive so that each file's data is stored in adjacent physical locations.

Example

Disk Cleanup on a drive that has been in use for a year commonly frees several gigabytes of temporary and update files. Defragmentation on a traditional hard disk reduces the physical head movement needed to read a large file.

Detailed Explanation

Do not defragment a solid-state drive. An SSD has no moving parts, so there is no seek time to save, and the extra writes shorten its lifespan. Modern systems handle SSDs with a different operation called TRIM instead.

Data recovery

Definition

Data recovery is the process of retrieving files that have been deleted, lost or made inaccessible, which is possible because deleting a file normally removes only its directory entry while leaving the underlying data on the storage medium until it is overwritten.

Example

An important file is deleted and the Recycle Bin emptied. Recovery software scans the drive and finds the data still physically present, because the OS only marked that space as available rather than erasing it.

Detailed Explanation

This is why the correct first action after accidental deletion is to stop using the drive immediately. Every subsequent save, download or install may land on the space holding your file. Installing recovery software onto the same drive is the classic way people destroy the very file they are trying to save.

Where This Is Used in Real Life

The same ideas, outside the syllabus

Diagnosing a slow computer methodically

Open Task Manager and identify which of CPU, memory or disk is saturated. Each points somewhere different: CPU to a runaway process, memory to too many programs or insufficient RAM, disk to background indexing or a failing drive. The measurement replaces the guesswork.

The 3-2-1 backup rule

Keep three copies of important data, on two different types of storage, with one copy kept elsewhere. It sounds excessive until you consider that fire, theft and ransomware all destroy every copy kept in one place.

Reading an error before searching for it

Event Viewer gives an exact error code and source. Searching that specific code finds a specific answer; searching "my computer crashed" does not. Precision in the input decides the quality of the result.

Common Mistakes to Avoid

Errors that cost marks in this chapter, and the correction for each

Mistake

Believing System Restore recovers deleted personal files.

Correct Approach

It restores system files, programs, drivers and settings only. Personal documents are untouched — and unrecovered.

Mistake

Continuing to use a drive after accidentally deleting an important file.

Correct Approach

Stop writing to it immediately. Every new file written risks overwriting the data you are trying to recover.

Mistake

Defragmenting a solid-state drive.

Correct Approach

SSDs have no moving parts, gain nothing from defragmentation, and lose write endurance. Use TRIM, which the OS runs automatically.

Mistake

Creating a recovery USB after the computer has already failed.

Correct Approach

It must be created while the system still works. This is preventive, not corrective.

Mistake

Ending unknown processes in Task Manager to speed up a computer.

Correct Approach

Ending a required system process can crash the machine or corrupt open work. Identify what a process is before terminating it.

Mistake

Treating "delete" as "erase".

Correct Approach

Normal deletion only removes the file's directory entry. The data remains until overwritten — which is both why recovery works and why disposing of an old drive needs secure erasure.

Exam Preparation Tips

Technique specific to this chapter

  • For "which tool would you use?" questions, decide first whether the situation needs diagnosis or correction. That halves the options immediately.
  • When describing a maintenance routine, include a frequency — weekly, monthly. A schedule reads as a plan; a bare list reads as guesswork.
  • State the limitation of System Restore whenever you define it. Examiners frequently allocate a mark to the fact that personal files are not restored.
  • In data recovery answers, explain *why* recovery is possible (the data is not immediately erased). The mechanism is worth more than the instruction.
  • Use precise tool names. "Windows tools" scores nothing; "Event Viewer, to check the system log for the error recorded at the time of the crash" scores fully.

Quick Revision Summary

The whole chapter in one screen — read this the night before

  • Diagnostic tools: Task Manager (quick), Resource Monitor (detailed), Event Viewer (historical logs).
  • Corrective tools: System Restore, recovery USB, data recovery software.
  • System Restore fixes system files, programs, drivers and settings — NOT personal files.
  • A recovery USB must be created while the computer still works.
  • Preventive maintenance: updates, Disk Cleanup, malware scan, backup check, dust removal.
  • Never defragment an SSD; it uses TRIM instead.
  • Deleting removes the directory entry, not the data — recovery is possible until it is overwritten.
  • After accidental deletion, stop using the drive at once.
  • Backup rule: 3 copies, 2 media types, 1 stored off-site.

Glossary of Terms

Words used in this chapter, defined plainly

Restore point
A saved snapshot of system settings and files that can be returned to later.
Boot
The process of starting a computer and loading its operating system.
Fragmentation
A file being stored in non-adjacent pieces across a disk.
TRIM
A command that tells an SSD which blocks are no longer in use so it can manage them efficiently.
Log
A recorded history of events with timestamps.
Overwrite
To write new data on top of existing data, destroying the original permanently.
Backup
A separate copy of data kept so it can be restored if the original is lost.

Practice Questions

Now test yourself on the concepts above. Collapse the answers to make it a real practice run.

Multiple Choice Questions with Explanations

8 MCQs — pick an option to check yourself, then read why the answer is right

1Task Manager is primarily used for:

Correct answer: AMonitoring running applications

Task Manager lets you monitor and control running applications and processes, showing their CPU and memory usage.

2Safe Mode boots Windows using:

Correct answer: BBasic drivers only

Safe Mode starts Windows with only the basic drivers and services needed, which helps isolate and fix problems.

3Bootable USB drives are mainly used for:

Correct answer: BSystem repair and recovery

A bootable USB drive can start a computer independently of its hard disk, making it useful for system repair and recovery.

4On UEFI systems, a bootable USB needs to be created in:

Correct answer: CGPT style

UEFI systems require a bootable USB partitioned in the GPT style rather than the older MBR scheme.

5The Power-On Self-Test (POST) runs:

Correct answer: CAt system startup

The Power-On Self-Test runs at system startup to check that the hardware is working before the operating system loads.

6Tenorshare is a tool used for:

Correct answer: BRecovering lost files

Tenorshare is a data-recovery tool used to restore lost or deleted files.

7File History is used to:

Correct answer: BKeep copies of personal files

File History automatically keeps backup copies of personal files so they can be restored if lost or changed.

8Windows Defender offers:

Correct answer: BVirus protection

Windows Defender is the built-in Windows security tool that provides virus and malware protection.

Short Questions with Answers

7 short-answer questions

The Resource Monitor is a built-in Windows tool that displays in detail how the computer is using its CPU, memory, disk, and network resources, which helps pinpoint the programs that are slowing the system down. Example: If the computer feels slow, Resource Monitor shows which program is causing heavy disk activity so that it can be closed.
Safe Mode is a special startup mode that boots Windows with only the essential drivers and services running, so that users can troubleshoot and fix issues when the system fails to start normally. Example: If a faulty display driver stops Windows from loading, the computer can be started in Safe Mode and that driver can be uninstalled.
A bootable USB is a USB drive that holds operating system or recovery files, allowing a computer to start directly from it. Rufus is a free tool used to create such a drive. Example: Plug in the USB and open Rufus → select the USB drive → choose the ISO file → click Start.
The Power-On Self-Test (POST) is the check carried out as soon as the computer is switched on, in which the system tests essential hardware components such as the RAM, keyboard, and storage devices to confirm they are working correctly before the operating system loads. Example: If the RAM is missing or faulty, POST stops the startup and gives a beep sound as a warning.
The boot order is the BIOS setting that decides which device the computer tries to start from first. It matters because recovery tools will only run if the USB drive is placed above the hard disk in this order. Example: In BIOS setup, moving "USB Drive" above "Hard Disk" lets the computer boot from a Windows recovery USB.
Disk cleanup is the process of removing unnecessary files from a storage device. Its two main benefits are that it frees up storage space and improves system speed and performance. Example: Deleting temporary files and emptying the Recycle Bin can recover several gigabytes of disk space.
Windows Defender is the built-in security program of Windows that maintains system health by shielding the computer from viruses, malware, and other threats, scanning files and programs in real time. Example: When an infected file is downloaded from the internet, Defender detects it and blocks or removes it automatically.

Long Questions with Detailed Answers

5 in-depth answers

Beyond the basic troubleshooting steps, modern operating systems also include built-in tools that let users monitor system performance in greater detail. These tools reveal useful details about the computer's current state and help pinpoint problems related to memory, storage, processing power, and system errors. Three important diagnostic tools available in Microsoft Windows are: - Task Manager - Resource Monitor - Event Viewer Each of these tools plays a distinct role in resolving system health and performance-related issues. - Task Manager Task Manager is a built-in Microsoft Windows tool that lets users keep track of their computer's performance. It provides real-time information on how the processor (CPU), memory (RAM), and storage (disk) are being used. The Processes tab lists all active programs along with the resources they are consuming, while the Performance tab shows detailed graphs for CPU, memory, disk, and network usage. Example: If your computer feels sluggish, open Task Manager to see which application is consuming too much CPU or RAM (e.g., a browser with many open tabs). Ending that task can instantly improve performance. a. How to Open Task Manager? There are two quick ways to open Task Manager: i. Press the Ctrl + Shift + Esc keyboard shortcut ii. Right-click the taskbar and choose Task Manager from the menu b. What You Can Do with Task Manager? Task Manager comes in handy when your computer is slow or an application stops responding. It lets you: i. Check how much processing power and memory each program is using. ii. Select a program in the Processes tab and click End Task to close it if it isn't working properly. iii. View programs that are running quietly in the background. iv. Use the Performance tab to see real-time graphs and data on how your computer is performing. - Resource Monitor Resource Monitor is an advanced Microsoft Windows tool that offers a more in-depth view of how your computer's resources (memory, CPU, and disk) are being used. While Task Manager gives a quick snapshot, Resource Monitor provides more detailed information about which programs and background services are consuming system resources. It is particularly useful when the system is running slowly, overheating, or using excessive memory for no obvious reason. Example: If your computer is slow but Task Manager doesn't reveal a clear cause, open Resource Monitor, check the Disk tab, locate a background program heavily using the disk, and then stop or investigate it. a. How to Open Resource Monitor? There are two common ways to open Resource Monitor: i. Open Task Manager, go to the Performance tab, and click Open Resource Monitor at the bottom. ii. Or press the Windows + R shortcut, type resmon in the dialog box that appears, and press Enter. b. Key Features of Resource Monitor Some key features of Resource Monitor are listed below: i. CPU Tab: Shows which processes and services are using the processor. ii. Memory Tab: Displays how much memory is used, free, or reserved. iii. Disk Tab: Tracks which programs are reading from or writing to the hard drive. iv. Network Tab: Shows which applications are sending or receiving data over the internet or network. - Event Viewer Event Viewer is another built-in Windows tool that keeps detailed logs of system activities. It helps users review errors, warnings, and important events tied to software, hardware, and security. Example: If Windows crashes or an application repeatedly fails to start, Event Viewer can display error messages (such as "Application X failed to start due to missing DLL"), helping you identify the cause and troubleshoot it. a. How to Open Event Viewer? i. Press the Windows + R shortcut, type eventvwr in the dialog box that appears, and press Enter.
When a computer fails to start properly because of a system issue (e.g., corrupted system files, a bad driver, a faulty update, or a registry error), you can try to fix it without losing personal files (documents, photos, videos, downloads, etc.) using one of these two main methods: Method 1: Using System Restore (if you can reach the Windows Recovery Environment) System Restore rolls back important system files, settings, and registry entries to an earlier working state (a restore point), while leaving your personal files completely untouched. How to use it when the computer won't start normally: 1. Turn on the computer and repeatedly press the key that opens the boot menu or recovery options (commonly F8, F11, Shift + F8, or F12, depending on the brand; or let Windows fail to boot 2–3 times to trigger Automatic Repair). 2. When the Automatic Repair screen appears → choose Advanced options. 3. Select Troubleshoot → Advanced options → System Restore. 4. If prompted, select your Windows account and enter the password. 5. Pick a restore point from the list — ideally the most recent one dated before the problem began (e.g., "Windows Update March 2026" or "Before installing new driver"). 6. Click Next → Finish to begin the restoration. 7. The computer will restart a few times and revert to that earlier state. Method 2: Using a Bootable Recovery USB (when System Restore isn't accessible or doesn't work) If the system is too damaged to reach the built-in recovery options, use a bootable Windows USB (created on another working computer). Steps to fix the problem using a bootable recovery USB: 1. On another working computer, create a bootable Windows USB: 1. Download the official Windows Media Creation Tool or Windows ISO from microsoft.com. 2. Use the Media Creation Tool (simplest option) or Rufus to build a bootable USB (minimum 8–16 GB). 2. Plug the USB into the affected computer. 3. Restart and enter the BIOS/UEFI setup (press F2, Del, F10, Esc, or F12 during startup — varies by brand) → set the USB as the first boot device → save and exit. 4. The computer boots from the USB → choose your language → click Next → select Repair your computer (bottom-left, not Install now). 5. Go to Troubleshoot → Advanced options. 6. Try these options in order (all of them preserve personal files): 1. Startup Repair → automatically fixes common boot problems. 2. System Restore → same as Method 1 above — pick a suitable restore point. 3. Command Prompt → run commands such as: 4. `sfc /scannow /offbootdir=C:\ /offwindir=C:\Windows` (repairs system files) 5. `chkdsk C: /f /r` (fixes disk errors) 6. If nothing else works → Reset this PC → choose Keep my files → this reinstalls Windows while keeping personal files and most installed apps.
- Best Practices for Preventive Maintenance Just as we look after our health or maintain our vehicles, computers also need regular attention to keep functioning properly. Preventive maintenance refers to simple tasks that help prevent bigger problems later on. These tasks can boost your computer's speed, keep it secure, and extend its lifespan. a. Disk Cleanup Over time, a computer accumulates unnecessary files such as temporary internet files, system cache, Windows update files, and items sitting in the Recycle Bin. These files take up space and can slow down system performance. Disk Cleanup is a built-in Windows tool that safely removes such files. Steps to Perform Disk Cleanup: 1. Type Disk Cleanup into the Windows search bar and open the tool from the list. A small window appears asking you to pick a drive to clean. 2. Select the drive you want to clean (usually C:) and click OK. 3. Tick the boxes in the dialog box that appears after clicking OK for the file types you want to delete. 4. Click OK to remove the selected files. - Patch Management / System Updating Software updates, also called patches, are released regularly by developers to fix bugs, add features, and strengthen security. Keeping your system updated helps guard it against viruses and security threats. There are two types of updates: 1. Operating system updates (for Windows, macOS, etc.) 2. Application updates (for programs like browsers, media players, etc.) To check for updates in Windows: 1. Open Settings > Update & Security. 2. Click Check for updates. 3. Install any available updates. - Staying Protected with Windows Defender Windows Defender is the built-in Windows security tool that shields your computer from viruses, malware, and other threats. It offers two types of scans. a. Quick Scan to check the most common problem areas. b. Full Scan to thoroughly check the entire system. Windows Defender also offers real-time protection, meaning it continuously watches your system in the background and alerts you if anything suspicious occurs. - Keeping a Maintenance Calendar It's a good habit to set a regular schedule for basic maintenance tasks. A maintenance calendar helps you remember when to clean your system, scan for viruses, or check for updates. You can note it down or set reminders on your phone or computer.
Data Recovery Techniques Sometimes files get deleted by mistake or lost because of system problems. In many cases, lost files can be recovered using built-in tools or special third-party software. There are two main ways to recover deleted files: - Using built-in tools (i.e. Recycle Bin) - Using third-party software (i.e. Tenorshare) - Built-in Tools These tools are already part of the operating system, which is why they are called built-in tools. Below are some built-in tools available for recovering deleted files. a. Recycle Bin When a file is deleted in Windows, it typically moves to the Recycle Bin, where it remains until the bin is emptied. You can open the Recycle Bin, right-click the file, and choose Restore to return it to its original location. b. File History File History is a backup feature in Windows. When turned on, the system keeps copies of your files at regular intervals. This lets you recover earlier versions of files, even ones that have been deleted or changed. To enable it, go to Settings > Update & Security > Backup, connect an external USB or hard drive, and select "Add a drive". Once enabled, Windows will regularly back up files such as Documents, Pictures, and Desktop onto that drive. c. Previous Versions This feature lets you recover an earlier version of a file or folder. Right-click the file or folder, choose Properties, then go to the Previous Versions tab. If one is available, you can select and restore an older copy. - Third-Party Tools Sometimes deleted files can't be found in the Recycle Bin or Previous Versions. In such cases, third-party recovery software can help. Tenorshare is one example of a free, easy-to-use file recovery program. It scans your hard drive, USB, or memory card to locate recently deleted files, letting you choose which ones to recover. a. How to use Tenorshare? Steps to Use Tenorshare: 1. Open Tenorshare and select the location you want to recover a file from, such as a specific drive or folder. 2. Choose the file type to recover (e.g., pictures, documents). 3. Click "Scan" to begin searching for lost files. 4. Select the files you want back and click "Recover" to restore them. Recovery success depends on how recently the file was deleted and whether new data has already overwritten it. b. How can deleted files be recovered using third-party software? i. Deletion doesn't erase data right away: When a file is deleted, Windows marks that space as "available" but does not immediately remove the underlying data. ii. Scanning for recoverable data: Third-party software (such as Tenorshare, Recuva, or EaseUS) scans the disk for data that is still physically present but marked as deleted. iii. Restoring the file: Once the software locates the file, it can copy it to a safe location (ideally a different drive) so the data is recovered without overwriting anything else. c. Why does recovery not always succeed? i. Overwriting: If new data has already been written to the space once occupied by the deleted file, part or all of it may be overwritten and unrecoverable. ii. File system damage: Corruption within the disk's file system can render the deleted data unreadable. iii. Time factor: The longer you wait after deleting a file, the greater the chance new files will overwrite the deleted data, lowering the odds of recovery.
A large Windows update can leave several gigabytes of leftover files on the drive. Disk Cleanup is the built-in Windows tool used to reclaim that space safely, without touching your personal documents. - Disk Cleanup After a big update, the drive fills with temporary files, the system cache, old Windows update files, and items in the Recycle Bin. Disk Cleanup scans for these and lets you choose which to remove. To clear the update leftovers specifically, you use its Clean up system files option, which safely deletes the old system and update files. - Steps to Perform Disk Cleanup 1. Type Disk Cleanup into the Windows search bar and open the tool. 2. Select the drive you want to clean (usually C:) and click OK. 3. Click "Clean up system files" to safely remove old Windows update files and other system files. 4. Tick the boxes for the file types you want to delete. 5. Click OK to remove the selected files.

Important Questions for Revision

5 high-priority questions

Resource Monitor displays detailed, real-time information about how the computer's CPU, memory, disk, and network resources are being used. It helps identify which programs are consuming the most resources, especially when the system slows down for no obvious reason.
Safe Mode boots Windows with only the most essential drivers and services running, disabling unnecessary background programs. It is used when the system cannot start normally — to troubleshoot faulty drivers, remove malware, or fix problems caused by a bad update or app installation.
POST (Power-On Self-Test) is the first check run by the firmware (BIOS/UEFI) when the computer is powered on. It verifies essential hardware components like RAM, keyboard, and storage devices to confirm they are working correctly. If a problem turns up, it may beep or display an error message before the OS loads.
Task Manager: A built-in Windows tool that shows real-time CPU, RAM, and disk usage of running programs. It lets users end unresponsive tasks. Example: If a browser is consuming too much RAM, open Task Manager, select it, and click End Task to free up memory. Event Viewer: A built-in Windows tool that keeps detailed logs of system activities, errors, and warnings related to software, hardware, and security. Example: If Windows keeps crashing, check Event Viewer for error codes that reveal which driver or program is causing the crash.
System Restore: Rolls system files and settings back to a previous restore point (saved before the problem occurred) without deleting personal files. Go to Advanced Options → System Restore and select a restore point from before the issue began. Bootable Recovery USB: If the system is too damaged to access recovery options normally, boot from a USB created with Windows installation files. Go to Repair your computer → Troubleshoot → Advanced Options → Startup Repair or System Restore. Personal files remain safe throughout this process.

Frequently Asked Questions

6 quick answers to common questions about this chapter

Task Manager gives a quick overview of which programs are using CPU, memory, and disk. Resource Monitor goes much deeper, showing exactly which background processes are affecting each resource — it's the tool to use when Task Manager doesn't reveal a clear cause for a slowdown.
No. System Restore rolls back system files and settings to an earlier saved point while leaving your personal files untouched. Reinstalling Windows ("Reset this PC") is a much bigger step that wipes and rebuilds the operating system, only used when System Restore and other fixes don't work.
If installing a new graphics driver makes Windows crash every time it starts normally, booting into Safe Mode — which loads only essential drivers — lets you get into the system, uninstall that faulty driver, and fix the problem without the crash getting in the way.
When a file is deleted, Windows just marks that space as available for reuse — the actual data usually stays on the disk until something else overwrites it. This is exactly why recovery tools like Tenorshare can often bring back "deleted" files, as long as they act before new data overwrites that space.
Yes. Task Manager, Resource Monitor, Event Viewer, System Restore, bootable recovery USBs, preventive maintenance, Disk Cleanup, and data recovery methods are all examinable and tested through MCQs and short/long answer questions.
Disk Cleanup frees up storage space by removing unnecessary files like temporary internet files and old update files — it has nothing to do with security. A virus scan, done through tools like Windows Defender, checks for malicious software instead. They solve two completely different problems.

Chapter Test

8 questions with the answers hidden — check what you actually remember

You have just read the explanations above. This checks whether they stuck. The answers stay hidden until you finish, so it is closer to exam conditions than scrolling through the notes again.

  • 8 questions, one at a time — no time limit.
  • You can move back and change an answer before submitting.
  • Afterwards you get your score, every explanation, and what to re-read.

Your score is saved in this browser only. No account, nothing sent anywhere.

Related Topics in the Other Class