When starting a program with the nice command without any additional parameters, which nice level is set for the resulting process?
Click on the arrows to vote for the correct answer
A. B. C. D.C
The "nice" command is used to launch a process with a modified scheduling priority. The priority is represented by a value called the "niceness" level, which ranges from -20 (most favorable scheduling) to 19 (least favorable scheduling).
When starting a program with the "nice" command without any additional parameters, the default nice value assigned to the process is 10. This is because the default value of nice is 10 in Linux.
Therefore, the correct answer is option C - 10.