nerdexam
Linux_Foundation

LFCS · Question #807

Which shell command is used to continue background execution of a suspended command?

The correct answer is B. bg. The bg command is used in shell job control to resume a suspended process in the background.

Submitted by javi_es· Apr 18, 2026Essential Commands

Question

Which shell command is used to continue background execution of a suspended command?

Options

  • A&
  • Bbg
  • Ccont
  • Dexec
  • E:&

How the community answered

(62 responses)
  • B
    94% (58)
  • C
    2% (1)
  • D
    2% (1)
  • E
    3% (2)

Why each option

The `bg` command is used in shell job control to resume a suspended process in the background.

A&

The `&` symbol is used to start a command in the background initially, not to resume a suspended one.

BbgCorrect

When a command is suspended (typically by pressing Ctrl+Z), the `bg` (background) command can be used to resume its execution in the background, allowing the user to regain control of the shell while the job continues running.

Ccont

`cont` is not a standard shell command for continuing background execution of suspended jobs.

Dexec

`exec` replaces the current shell with the specified command, it does not resume suspended jobs.

E:&

`:` is a no-operation command and `:&` is not a standard shell command for job control.

Concept tested: Shell job control (backgrounding processes)

Source: https://www.gnu.org/software/bash/manual/bash.html#Job-Control-Builtins

Topics

#process management#job control#shell commands#background processes

Community Discussion

No community discussion yet for this question.

Full LFCS Practice