Cancel the currently running process.
-
CTRL + C
-
kill <process id>
-
CTRL + Z
-
CTRL + D
A
Correct answer
Explanation
CTRL + C sends the SIGINT signal to the foreground process, which typically causes it to terminate immediately. Other options like CTRL + Z suspend a process, and CTRL + D signals end-of-file.