Question 4 In a Linux machine, what command can you use to absolutely kill a process with a PID of 342? code example
Example: kill process linux
#terminate process with SIGKILL signal by process id
kill -9 pid
#terminate process with SIGKILL signal by process id
kill -9 pid