Difference between a process and a thread
This is the most frequently asked question during interviews. In this post we will discuss the differences between thread and process. You must have heard these terms while reading multithreading in java, both of these terms are related to each other. Both processes and threads are independent sequences of execution. The main difference is that threads (of the same process) run in a shared memory space, while processes run in separate memory spaces. Lets see the differences in detail:
https://noidatut.com/oops-using-java/...