101-400 Exam QuestionsBrowse all questions from this exam

101-400 Exam - Question 64


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

Show Answer
Correct Answer: B

The 'bg' command is used to continue the background execution of a suspended command. When a job is suspended (usually with Ctrl+Z), it can be resumed in the background using 'bg'. This command tells the shell to continue the job in the background, freeing up the terminal for other tasks.

Discussion

3 comments
Sign in to comment
LollosbrolloOption: A
Jul 1, 2022

A is correct

sis_net_sec
Jul 10, 2022

& : run a program in the background to begin with bg : put the recently suspended process in the background,So the correct Answer is B

ciola89Option: B
Oct 12, 2023

& : run a program in the background to begin with bg : put the recently suspended process in the background,So the correct Answer is B

DuboisNicolasDuclairOption: B
Oct 21, 2023

The shell command used to continue background execution of a suspended command is: B. `bg` The `bg` command is used to put a suspended job into the background, allowing it to continue running in the background without being connected to the current terminal.