LINE interview question

What is the difference between thread and process?

Interview Answer

Anonymous

Jul 28, 2020

Information are easily shared between threads but process. To communicate between 2 process you need to use some message channel. Thread share same heap memory, in one process may have many threads Process has its own memory.