What is the name of the structural system table maintained by an operating system to keep track of all relevant details of a running process? MCQ with Answer and Explanation

What is the name of the structural system table maintained by an operating system to keep track of all relevant details of a running process?
A. Process Control Block (PCB)
B. File Allocation Table (FAT)
C. Interrupt Vector Table (IVT)
D. Master Boot Record (MBR)
Answer: Option A
Solution (By JKExamLibrary)
The Process Control Block (PCB) is a data structure used by the operating system kernel to store all structural metadata and state flags for a specific process.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1 Report Error
Which Linux command is used to change the current directory?
A. pwd
B. dir
C. cd
D. ls

Correct Answer: Option C


Explanation:
cd (change directory) moves the user to a different directory.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What is the function of the Windows 'chkdsk' command?
A. Converts FAT to NTFS
B. Checks the file system and disk for errors and repairs them
C. Defragments the hard disk
D. Cleans up temporary files

Correct Answer: Option B


Explanation:
chkdsk (Check Disk) scans the file system and disk sectors for errors and attempts to fix them.

This question belongs to: Computer Operating Systems
Question #3 Report Error
In Linux, the 'at' command is used to:
A. Run jobs immediately
B. Schedule a job to run once at a specified time
C. Schedule recurring jobs
D. List scheduled jobs

Correct Answer: Option B


Explanation:
at schedules one-time tasks; cron is for recurring jobs; atq lists pending at jobs.

This question belongs to: Computer Operating Systems