Multiple choice technology programming languages

I know linux can multitask -- how do I switch between programs?

  1. fg,bg, &

  2. switch

  3. None

  4. Both

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

Linux multitasking uses job control built into the shell. fg brings a background job to foreground, bg sends a foreground job to background, and & after a command starts it in background. These shell builtins control process execution without external utilities.