Multiple choice technology operating systems

If kill command does not allow killing of a process then we could use kill -9 to forcefully kill the process by mentioning the PID

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The statement describes the correct behavior of kill commands. The standard kill sends SIGTERM (15), which processes can catch and ignore. Kill -9 sends SIGKILL (9), which cannot be caught or blocked by the process, forcing immediate termination. This is the standard escalation path for unresponsive processes.