InterviewSolution
Saved Bookmarks
| 1. |
Each process is identified by a unique integer called ______(a) PID(b) PPID(c) TID(d) PTIDThis question was posed to me during an interview for a job.This intriguing question originated from Process Basics in section The Process of Unix |
|
Answer» CORRECT option is (a) PID To explain I WOULD say: Each PROCESS is UNIQUELY identified by a unique integer called as the Process ID (PID) which is allotted by the kernel when the process is born. This PID is used for CONTROLLING the process of killing it. |
|