Multiple choice technology programming languages

25.) How to send signals to other processes?

  1. a) Use sigsend()

  2. b) use kill()

  3. c) use signal()

  4. d) Only init can send signals

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Unix-like operating systems, the kill() system call is used to send a signal to a process or a group of processes, despite its name suggesting it only terminates them.