Which of the following commands will send a process's resources to /dev/null to kill the process for process ID 1357?

a) kill -9 1357
b) ps aux | grep 1357 | awk 'print 2' | xargs kill
c) pkill -15 -F 1357
d) killall -SIGTERM 1357