Multiple choice technology operating systems

How to terminate a process which is running

  1. end pid

  2. delete pid

  3. kill pid

  4. kill all

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

The 'kill' command terminates processes by PID (Process ID). Options A and B use non-existent commands (end, delete). Option D 'kill all' is not a valid command - kill requires specific PID(s). Option C 'kill pid' is correct: you use 'kill' followed by the process ID number to terminate that specific process.