Multiple choice technology operating systems

top command can be used to control processes

  1. True

  2. False

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

The top command provides interactive process monitoring and control capabilities. Users can kill processes (k), renice processes (r), and perform other operations directly from top's interface by pressing corresponding keys. This makes it both a monitoring and control tool.

AI explanation

The statement is True. Although top is best known as a monitoring tool, its interactive mode lets you act on processes directly: press 'k' to kill a selected PID (after entering the signal) or 'r' to change its nice/priority value. This makes top a legitimate tool for controlling, not just viewing, running processes.