easyMultiple ChoiceObjective-mapped
XK0-006 Practice Question: A system administrator notices that a critical…
A system administrator notices that a critical application's process is consuming too much CPU, affecting other services. The administrator needs to reduce the CPU priority of that process without affecting its memory or other resources. The process PID is 4521. Which command should the administrator use?
⚠ Common exam trap
Many candidates confuse `nice` (for starting processes) with `renice` (for adjusting running processes), or they misremember the correct argument order for `renice`, leading them to choose option B or C.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
renice -n 10 -p 4521
The `renice` command is used to change the priority of an already running process. By specifying `-n 10` and `-p 4521`, the administrator sets the nice value to 10, which lowers the CPU priority (higher nice value = lower priority) without affecting the process's memory or other resources. This directly addresses the need to reduce CPU consumption for the critical application.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
renice -n 10 -p 4521
Why this is correct
Correct syntax for changing priority of a running process.
- ✗
nice -n 10 -p 4521
Why it's wrong here
nice is for starting processes with a given priority, not changing running ones.
- ✗
renice -p 4521 10
Why it's wrong here
Incorrect syntax; priority should be specified with -n.
- ✗
chrt -p 10 4521
Why it's wrong here
chrt sets real-time scheduling policy, not niceness.
Go deeper
Related to this question
Learn chapter
Process Management and System Monitoring
Key term
Value
Value is the perceived worth, benefit, or usefulness that a service, product, or activity delivers to stakeholders, especially customers and the business.
Key term
Process
In IT service management, a process is a structured set of activities designed to accomplish a specific objective, such as managing incidents or changes, by transforming inputs into defined outputs.
About these practice questions
This XK0-006 question is part of Courseiva's 979-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This XK0-006 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the XK0-006 exam.