Multiple choice technology mainframe

What happens when we append a & symbol before a primary command?

  1. Will give error

  2. Command will be executed and the command will be available on the command prompt

  3. It will take multiple inputs for processing

  4. Invalid

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

Appending & before a command runs it in the background, allowing the command to execute asynchronously while returning you to the command prompt immediately. The shell does not wait for the command to complete. Option A is incorrect because no error occurs. Option C is incorrect because & does not enable multiple input processing. Option D is incorrect because the syntax is valid.