Tag: linux

Questions Related to linux

From a command prompt, what does the command "ls" do?

  1. Lists the settings of the OS

  2. Lists the contents of the directory

  3. List command to list contents of files

  4. Finnish words, means to direct a file to a port

  5. None of the Above


Correct Option: B

Which command creates a file system?

  1. fdisk

  2. crfs

  3. mkfs

  4. fs


Correct Option: C

What is the default administrator username?

  1. administrator

  2. admin

  3. superuser

  4. root

  5. head


Correct Option: D
  1. Prints the directory

  2. Shows what processes are running

  3. Print status of LPT1

  4. Produces system statistics

  5. None of the above


Correct Option: B
Explanation:

To understand what the command "ps" does, the user needs to have knowledge about command line interfaces and operating systems.

The correct answer is:

B. Shows what processes are running

Explanation:

The "ps" command is a command used in Unix-like operating systems (such as Linux and macOS) to display information about the currently running processes on the system. It provides a snapshot of the processes running at the time the command is executed, including details such as the process ID (PID), CPU and memory usage, and the parent process ID (PPID). This information is useful for monitoring system resources, troubleshooting performance issues, and managing processes on the system.

Let's go through the other options:

A. Prints the directory: This option is incorrect. The "ps" command does not print the directory. To print the current directory in a command line interface, the "pwd" command is used.

C. Print status of LPT1: This option is incorrect. The "ps" command does not print the status of LPT1. LPT1 is a parallel port used for connecting printers in older systems.

D. Produces system statistics: This option is partially incorrect. While the "ps" command displays information about processes running on the system, it does not provide comprehensive system statistics. For system statistics, other commands like "top" or "sar" may be used.

E. None of the above: This option is incorrect. As explained above, option B is the correct answer.

Therefore, the correct answer is:

The Answer is: B. Shows what processes are running