nerdexam
LPI

010-150 · Question #23

What is the number called that is used to identify a process?

The correct answer is D. PID. A Process ID (PID) is the unique numeric identifier assigned by the operating system kernel to each running process.

The Linux Operating System

Question

What is the number called that is used to identify a process?

Options

  • AProc Num
  • BPIN
  • CProcess Entry
  • DPID

How the community answered

(34 responses)
  • A
    3% (1)
  • B
    12% (4)
  • C
    6% (2)
  • D
    79% (27)

Why each option

A Process ID (PID) is the unique numeric identifier assigned by the operating system kernel to each running process.

AProc Num

Proc Num is not a defined or standard term in operating system terminology for identifying processes.

BPIN

PIN stands for Personal Identification Number and is an authentication concept, not an OS process identifier.

CProcess Entry

Process Entry describes a data structure or record in a process table, not the numeric identifier used to reference a specific process.

DPIDCorrect

The operating system kernel assigns each process a unique integer called a Process ID (PID) at creation time. The PID is used by the OS scheduler, system calls (such as kill and wait), and utilities like ps and top to reference and manage individual processes. It is the standard term defined in POSIX and used across all Unix-like operating systems.

Concept tested: Process identification and PID concept in Linux

Source: https://man7.org/linux/man-pages/man5/proc.5.html

Topics

#PID#process management#process ID#Linux processes

Community Discussion

No community discussion yet for this question.

Full 010-150 Practice