Explain the concept of process hierarchy in Linux. How are parent and child processes related, and what is the significance of the parent process ID (ppid)?
The process that spawns a new process is known as parent, the new process is known as the child. Every process is spawned from another process. Every child has a parent. The relationship is recorded in each process's parent process ID(ppid), which is the pid of the child's parent.