Complete the sentence to define thrashing.
Thrashing occurs when a system spends most of its time [1] pages rather than executing processes.Thrashing happens when the system spends too much time swapping pages in and out of memory instead of running actual processes.
Complete the sentence to explain the working set model.
The working set model tracks the set of pages a process has used in the last [1] time units.
The working set model focuses on the pages a process has used recently to decide which pages to keep in memory.
Fix the error in the sentence about thrashing.
Thrashing happens when the CPU is mostly idle due to [1] page faults.Thrashing is caused by excessive page faults, which keep the CPU busy handling memory instead of running processes.
Fill both blanks to describe the working set window and its purpose.
The working set window is a [1] of time used to determine the [2] of pages a process needs.
The working set window is a fixed interval of time used to find the set of pages a process currently needs in memory.
Fill all three blanks to complete the explanation of thrashing prevention.
To prevent thrashing, the system must [1] the number of [2] and ensure the [3] fits in memory.
Preventing thrashing involves limiting the number of processes and making sure each process's working set fits in memory.