Bird
0
0

Which of the following is the correct syntax to resume a stopped job in the background?

easy📝 Syntax Q12 of 15
Linux CLI - Process Management
Which of the following is the correct syntax to resume a stopped job in the background?
Afg %1
Bbg %1
Cjobs %1
Dstop %1
Step-by-Step Solution
Solution:
  1. Step 1: Identify the command to resume a stopped job in background

    The bg command resumes a stopped job in the background, allowing the terminal to be free.
  2. Step 2: Understand job specification

    Using %1 specifies job number 1. So bg %1 resumes job 1 in background.
  3. Final Answer:

    bg %1 -> Option B
  4. Quick Check:

    bg %jobnumber resumes job in background [OK]
Quick Trick: Use bg with %jobnumber to resume in background [OK]
Common Mistakes:
  • Using fg instead of bg to resume in background
  • Trying to use jobs command to resume
  • Using stop which is invalid

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes