AKUNA CAPITAL Interview Question

Difference between process and thread?

Interview Answers

Anonymous

Oct 15, 2015

A process is a full running program that is managed by the os. A thread is a child of a process that is running it. In addition process do not have direct access to information in other process but threads cab access information from other threads.

1

Anonymous

Nov 19, 2019

OS uses the process as the basic unit to schedule the recourses. A thread is a child of a process and shares its resources. A thread is a basic unit for OS to run.