Multiple choice technology operating systems

What is the command for killing the suspended job number three?

  1. kill $3
  2. kill <<3

  3. kill %3

  4. terminate #3

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

In Unix-like shells, suspended or background jobs are referenced using the job specifier prefix %. Therefore, kill %3 sends the termination signal to job number three. The prefix $ is for variables, while &lt;&lt; and # are syntactically incorrect for referencing job IDs.