Multiple choice technology operating systems

With what can you stop a process?

  1. Shutdown

  2. stop

  3. kill

  4. delete

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

The kill command sends signals to processes, typically SIGTERM (15) or SIGKILL (9) to stop them. Shutdown is for system-wide power off, stop is not a standard Unix process command, and delete is for removing files not processes.