Thread creation is less expensive than ___________ creation.

  • Monitor
  • Pipeline
  • Process
  • Semaphore
The creation of threads is typically less costly in terms of system resources compared to creating processes. Threads share memory space within a process, while processes have separate memory spaces. Semaphores, monitors, and pipelines are synchronization mechanisms used in concurrent programming but are not directly related to the cost of creation in terms of system resources.
Add your answer
Loading...

Leave a comment

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