Multiple choice

Move the given process from the background to the foreground

  1. fg <job number>

  2. bg <job number>

  3. kill <process id>

  4. killall <process name>

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

The 'fg' command brings a background job to the foreground. 'bg' sends a process to the background, and 'kill' terminates it.