2
Reply

What are the difference between a Thread and a Process?

    As both are the independent sources of execution.

    but the basic difference is
    Threads run in a shared memory space of the same process whereas processes run in a seperate memory space.

    Thread are sub unit of an process, A process can have multiple threads.