What is a thread in Operating System?

Asked 04-Apr-2022
Viewed 233 times

1 Answer


0

  • In an operating system, a thread is the smallest unit of computation that may be done. A thread resides within a process in most modern operating systems, which means that a single process can include numerous threads.
  • The lightweight process is also known as a thread. By dividing a process into many threads, parallelism can be achieved. Multiple tabs in a browser, for example, can represent different threads. MS Word makes use of numerous threads: one to format the text, another to receive inputs, and so on.


Read More: What is FCFS in Operating System?