Question 3 In a Linux machine, what command can you use to safely terminate 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