Multiple choice

Cancel the currently running process.

  1. CTRL + C

  2. kill <process id>

  3. CTRL + Z

  4. CTRL + D

Reveal answer Fill a bubble to check yourself
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.