What's the distinction between a thread and a Process?
A process is a running programme, or an active programme. A thread is a small, self-contained process that may be handled by a scheduler. Because processes are more complex, context switching takes longer. Because threads are lighter than processes, context switching takes less time.
#Difference_between_processes_and_threads
#ThreadVsProcess
#OperatingSystem