How do threads differ from processes in resource usage?

  • Depends on the operating system
  • Less memory usage than processes
  • More memory usage than processes
  • Same memory usage as processes
Threads typically use less memory compared to processes because they share the same address space and resources like code and data sections. Processes, on the other hand, have their own memory space and require more overhead for context switching and resource allocation.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *