A zombie(defunct) process is a process that has completed execution but still has an entry in the process table. It is a process in a terminated state. It is also called a defunct process or a dead process. A zombie process remains in the process table until its parent process reads its exit status using the wait() system call. If the parent process does not read the exit status, the zombie proc..