Complete the command to start the basic system monitor tool.
[1]The top command starts the basic live system monitor showing processes and resource usage.
Complete the command to start the enhanced system monitor with a user-friendly interface.
[1]The htop command starts an enhanced interactive system monitor with color and easier navigation.
Fix the error in the command to quit the top or htop program.
Press [1] to exit the program.Pressing q cleanly exits both top and htop.
Fill both blanks to filter processes by user and sort by CPU usage in top.
top -u [1] -o [2]
The -u option filters by user name, and -o cpu sorts by CPU usage.
Fill all three blanks to create a dictionary comprehension that maps process IDs to their memory usage if memory usage is above 100MB.
{pid: mem for pid, mem in processes.items() if mem [1] [2]The comprehension filters processes where memory usage is greater than 100MB.