LPIC-1 Exam 101 (Linux Administrator) — Question 44
Which of the following signals is sent to a process when the key combination CTRL+C is pressed on the keyboard?
Answer options
- A. SIGTERM
- B. SIGINT
- C. SIGSTOP
- D. SIGKILL
Correct answer: B
Explanation
The correct answer is B, SIGINT, which is specifically designed to interrupt a running process when CTRL+C is pressed. SIGTERM (A) is a termination signal that can be sent to gracefully stop a process, while SIGSTOP (C) temporarily halts a process without allowing it to exit, and SIGKILL (D) forcefully terminates a process without cleanup.