Bird
0
0

Which of the following is the correct syntax to resume job number 3 in the background?

easy📝 Syntax Q3 of 15
Linux CLI - Process Management
Which of the following is the correct syntax to resume job number 3 in the background?
Abg %3
Bjobs %3
Cfg %3
Dbg 3
Step-by-Step Solution
Solution:
  1. Step 1: Recall syntax for background job resume

    The bg command resumes a stopped job in the background, and jobs are referenced with a percent sign.
  2. Step 2: Confirm correct syntax

    The correct syntax is bg %3 to resume job number 3 in background.
  3. Final Answer:

    bg %3 -> Option A
  4. Quick Check:

    bg %jobID resumes job in background [OK]
Quick Trick: Use percent sign with job number for fg/bg commands [OK]
Common Mistakes:
  • Omitting percent sign before job number
  • Using fg instead of bg for background resume
  • Using jobs command incorrectly

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes