in Operating System edited by
2,906 views
2 votes
2 votes

A thread is a light weight process.

In the above statement, weight refers to

  1. time
  2. number of resources
  3. speed
  4. all of the above
in Operating System edited by
2.9k views

2 Comments

what is above statement ?
0
0
edited by
B number of resources
1
1

2 Answers

10 votes
10 votes
Best answer

A thread is a light weight Process. 

We might call it that way because a thread, like a process, is a way to have a parallel, concurrent, flow of execution. But contrary to a process, a thread shares the same memory as the other threads in the same process, instead of having a completely separate memory.

Hence,Option(B)Number of resource is the correct choice.

selected by

1 comment

Why not d
I agreed with number of resources are less but also a thread less time of cpu burst compared to process and also speed of execution I also more
0
0
4 votes
4 votes

Each process should have code, data, files, stack and registers as separate resources

individual threads have only stack and registers as separate resources allocated to them.

answer must be B) Number of resources

by
Answer:

Related questions