Problem Statement
Which signal is sent by default when you run the kill command without specifying one?
Explanation
By default, kill sends the SIGTERM signal, requesting the process to terminate gracefully.
To forcefully stop a process, SIGKILL (-9) can be used, but it doesn’t allow cleanup operations.
Code Solution
SolutionRead Only
kill 1234
Practice Sets
This question appears in the following practice sets: