Q. How to run a background process?

  • (A) |
  • (B) &
  • (C) *
  • (D) ?
πŸ’¬ Discuss
βœ… Correct Answer: (B) &
Explanation: To run a process in the background use the character “&”, example:

$ vlc &

In this case, the vlc process goes into the background and you can continue to use the terminal. You have the command prompt again. The sign “&” at the end of the command means: run this command in the background.
Explanation by: Mr. Dubey
To run a process in the background use the character “&”, example:

$ vlc &

In this case, the vlc process goes into the background and you can continue to use the terminal. You have the command prompt again. The sign “&” at the end of the command means: run this command in the background.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
202
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
95%
Success Rate