LPI Exam Questions

Which command would run “make” in the background?

Which command would run "make" in the background?

A.
make && bg

B.
make ; bg

C.
make &

D.
nohup make

Explanation/Reference:
append & to any command to run it in the background (alternatively use CTRL+Z and bg)