What resources are used when a thread created? How do they differ from those when a process is created?
Thread:
In case of thread only one copy of resources are made. means Resources are shared between different threads. This is done on a synchronised basis.
Process:
A separate instances of resources are alloted to different processes at same time and they are not synchronised.