If you can see this check that
Which of the following is a true statement when considering the process
of sending a KILL signal to process 500.
A. | "signal -KILL 500" stops process 500 immediately.
|
B. | "kill -500" will only stops the child processes of process 500, and
leave process 500 running normally.
|
C. | "kill -9 500" stops process 500 immediately.
|
D. | "signal -KILL 500" tells process 500 to re-read its configuration file.
|
E. | "signal 500 KILL" stops process 500 immediately.
|
1-sa-12
The command is "kill" not "signal".
Close
4-sa-12
This command is not well-formed, but could possibly send the TERM signal to process 500, which would either kill it and all its children or leave everything ok.
Close
0-sa-12
True. Signal 9 is KILL, and cannot be trapped.
Close
3-sa-12
The command is "kill" not "signal", and a KILL signal cannot be caught and always terminates a process. The HUP signal often gets a process to re-read its configuration file.
Close
2-sa-12
The command is "kill" not signal, and the signal number must be the second parameter.
Close