Interview Questions - UNIX Process Management

Why should I learn to solve UNIX Process Management technical interview questions?

Learn and practise solving UNIX Process Management technical interview questions and answers to enhance your skills for clearing technical interviews, HR interviews, campus interviews, and placement tests.

Where can I get technical UNIX Process Management technical interview questions and answers with explanations?

IndiaBIX provides you with lots of fully solved UNIX Process Management technical interview questions and answers with a short answer description. You can download UNIX Process Management technical interview questions and answers as PDF files or e-books.

How do I answer UNIX Process Management technical interview questions from various companies?

You can answer all kinds of UNIX Process Management technical interview questions by practising the given exercises (short answer type). You can also find the frequently asked UNIX Process Management technical interview questions with answers from various companies, such as TCS, Wipro, Infosys, CTS, IBM, etc.

1.
Brief about the initial process sequence while the system boots up.
While booting, special process called the 'swapper' or 'scheduler' is created with Process- ID 0. The swapper manages memory allocation for processes and influences CPU allocation. The swapper inturn creates 3 children:
  1. the process dispatcher,
  2. vhand and
  3. dbflush
with IDs 1,2 and 3 respectively.

This is done by executing the file "/etc/init". Process dispatcher gives birth to the shell. Unix keeps track of all the processes in an internal data structure called the Process Table (listing command is ps -el).


2.
What are various IDs associated with a process?
Unix identifies each process with a unique integer called ProcessID. The process that executes the request for creation of a process is called the 'parent process' whose PID is 'Parent Process ID'. Every process is associated with a particular user called the 'owner' who has privileges over the process. The identification for the user is 'UserID'. Owner is the user who executes the process. Process also has 'Effective User ID' which determines the access privileges for accessing resources like files.
  • getpid() -process id
  • getppid() -parent process id
  • getuid() -user id
  • geteuid() -effective user id

3.
Explain fork() system call.
The 'fork()' used to create a new process from an existing process. The new process is called the child process, and the existing process is called the parent. We can tell which is which by checking the return value from 'fork()'. The parent gets the child's pid returned to him, but the child gets 0 returned to him.

4.
Predict the output of the following program code.
main()
{
   fork();
   printf("Hello World!");
}
Answer: Hello World!Hello World!
Explanation: The fork creates a child that is a duplicate of the parent process. The child begins from the fork(). All the statements after the call to fork() will be executed twice.(once by the parent process and other by child). The statement before fork() is executed only by the parent process.