Suppose we run a foreground process in a shell and it's assigned PID 1234. Assume the process doesn't block or ignore SIGTERM.
We hit ctrl-z. Then we run "kill 1234". What will happen?
a) SIGTERM is discarded since process 1234 is stopped
b) process 1234 receives SIGTERM and terminates
c) the kill command fails
d) SIGTERM is marked as a pending signal for process 1234