InterviewSolution
Saved Bookmarks
| 1. |
What is a job?(a) group of tasks(b) group of commands(c) group of processes(d) group of signalsI had been asked this question in unit test.My question is taken from Process Management topic in division The Process of Unix |
|
Answer» RIGHT choice is (c) group of PROCESSES The best explanation: A JOB is a name given to a group of processes. The easiest WAY of creating a job is to run a pipeline of two or more commands. If we are using C, Korn or Bash shell we can USE the job control commands to manipulate jobs. |
|