Pregunta de entrevista de Adobe

What’s the difference between Processes and Threads?

Respuestas de entrevistas

Anónimo

19 oct 2017

Outside of a stressful interview context, I would have gotten this answer pretty much correct: a process, in the simplest terms, is an executing program. One or more threads run in the context of the process. A thread is the basic unit to which the OS allocates processor time.

Anónimo

30 ago 2018

A process also gets its own address space, while a thread does not (it operates in the parent process's address space).