1. A process terminates when it finishes executing its final statement and asks the operating system to delete it by using the exit() system call
2. A parent process may terminate the execution of one of its children
3. When a process terminates, its resources are deallocated by the operating system
4. A terminating child process must have its entry in the process table until the parent calls wait()
5. A process that has terminated, but whose parent has not yet called wait(), is known as a zombie process
6. A situation where a parent did not invoke wait() but instead terminate, leaves its child processes as orphans process