Complete the sentence to define a process.
A process is a [1] program in execution.
A process is a running program. It means the program is currently being executed by the computer.
Complete the sentence to explain what a process contains.
A process contains the program code and its current [1].
A process contains the program code and its current state, which includes information like the program counter and variables.
Fix the error in the sentence about process resources.
A process uses [1] such as CPU time, memory, and I/O devices.
A process uses resources like CPU time, memory, and input/output devices to run.
Fill both blanks to describe process states.
A process can be in [1] state when it is ready to run, and in [2] state when it is waiting for an event.
A process is in the ready state when it can run but is waiting for CPU time, and in the waiting state when it waits for something like input/output.
Fill all three blanks to complete the process description.
The [1] manages processes, the [2] stores process information, and the [3] executes the process instructions.
The operating system manages processes, the process control block stores information about each process, and the CPU executes the instructions of the process.