How to terminate a process which is running
-
end pid
-
delete pid
-
kill pid
-
kill all
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.