Interview Question
Qus: Difference between thread and process?
A process is a program under execution that is an active program whereas a thread is a lightweight process that can be managed independently by a scheduler.
Threads are usually made for small tasks, whereas processes are used for more ‘heavyweight’ tasks – basically the execution of applications.
Answers (2)