Which statement is not correct about the “init” process in Unix?
It is the first process in the system.
It has PID 1.
It is generally the parent of the login shell.
Init forks and execs a ‘getty’ process at every port connected to a terminal.
View Answer
Correct Answer: A — It is the first process in the system.
Explanation:
While init is the first user-level process with PID 1, it is technically preceded by the swapper/sched process (PID 0) which is created by the kernel during boot.
