MCQ Detail
Search MCQs, Papers, Topics
Which Command In Linux Is Used To Display Running Processes?
ps aux displays all currently running processes with details like PID, CPU, and memory usage. The top command provides a real-time dynamic view of running processes.
🚀 Found an error or have a suggestion?
Your feedback helps us keep our MCQs accurate and up-to-date.
Related MCQs
Related MCQs where subject and topic are same as this mcq
Question 1: Which of the following can help reduce network downtime?
Regular monitoring, preventive maintenance, and timely replacement of faulty equipment help reduce downtime.
Question 2: In Docker, what command is used to list all running containers?
The docker ps command lists all currently running containers. Adding the -a flag shows all containers including stopped ones.
Question 3: Which Linux command is used to check disk usage of a directory?
The du (disk usage) command in Linux is used to estimate and display the disk space used by files and directories. df shows overall filesystem usage.
Question 4: Which monitoring tool is commonly paired with Grafana for metrics visualization in DevOps?
Prometheus is a widely used open-source metrics monitoring and alerting system. It is commonly paired with Grafana to create real-time dashboards for visualizing application and infrastructure metrics.
Question 5: Which Linux command is used to change file permissions?
chmod (change mode) is used in Linux to change the read, write, and execute permissions of files and directories. chown changes ownership, while chgrp changes group ownership.