A.) Process State
- new: The process is being created.
- running: Instructions are being executed.
- waiting: The process is waiting for some event to occur.
- ready: The process is waiting to be assigned to a processorF terminated: The process has finished execution.
B.) Process Control Block
Information associated with each process.
- Process ID
- Process staten
- Program counter
- CPU registers
- CPU scheduling informationn
- Memory-management informationn
- Accounting informationn
- I/O status information
C.) Treands
- thread of execution results from a fork of a computer program into two or more concurrently running tasks. The implementation of threads and processes differs from one operating system to another, but in most cases, a thread is contained inside a process. Multiple threads can exist within the same process and share resources such as memory, while different processes do not share hese resources.

No comments:
Post a Comment