MCQ Detail

Search MCQs, Papers, Topics

AI easy

Which Command In Linux Is Used To Display Running Processes?

A. ps aux
B. ls -p
C. netstat
D. df -h

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.

Linux Top Processes Command Line Monitoring
Submitting...

🚀 Found an error or have a suggestion?

Your feedback helps us keep our MCQs accurate and up-to-date.

We appreciate your contribution to improving the quality of our MCQs.

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.

Downtime Troubleshooting Monitoring Maintenance
AI easy

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.

Docker Container Docker Ps Devops Linux
AI easy

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.

Linux Disk Usage Du Command Line Devops
AI medium

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.

Prometheus Grafana Monitoring Devops Metrics
AI easy

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.

Linux Chmod Permissions Command Line Devops