Which Linux command is used to send a signal to a process, often to terminate it? MCQ with Answer and Explanation

Which Linux command is used to send a signal to a process, often to terminate it?
A. stop
B. signal
C. kill
D. term
Answer: Option C
Solution (By JKExamLibrary)
kill sends a signal to a process; by default, SIGTERM terminates it; use kill -9 for forced termination.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
What is the purpose of the Android 'Permission System'?
A. To grant superuser rights
B. To manage file permissions
C. To protect user privacy by controlling app access to sensitive data
D. To allow apps to communicate

Correct Answer: Option C


Explanation:
Android permissions restrict access to dangerous data and system features; users grant permissions at runtime.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What is the name of the structural system table maintained by an operating system to keep track of all relevant details of a running process?
A. Interrupt Vector Table (IVT)
B. Master Boot Record (MBR)
C. Process Control Block (PCB)
D. File Allocation Table (FAT)

Correct Answer: Option C


Explanation:
The Process Control Block (PCB) is a data structure used by the operating system kernel to store all structural metadata and state flags for a specific process.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which type of booting occurs when the system starts from a powered-off state?
A. Soft boot
B. Cold boot
C. Warm boot
D. Reboot

Correct Answer: Option B


Explanation:
A cold boot is starting the computer from a completely powered-off state, performing full POST and boot sequence.

This question belongs to: Computer Operating Systems