In the context of Inter-Process Communication (IPC), what does a 'pipe' do? MCQ with Answer and Explanation

In the context of Inter-Process Communication (IPC), what does a 'pipe' do?
A. It blocks unauthorized external network incoming data packets.
B. It defragments the master storage drive blocks.
C. It routes the standard output of one process directly into the standard input of another process.
D. It amplifies audio outputs to peripheral speakers.
Answer: Option C
Solution (By JKExamLibrary)
A pipe is an IPC mechanism that channels the data output sequence of one system process into the data input stream of another 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 of the following commands can be used in Linux to move a file or rename it directly?
A. mv
B. ren
C. rn
D. cp

Correct Answer: Option A


Explanation:
The 'mv' command stands for move and is used in Unix-like systems to either move a file to another path or change its name.

This question belongs to: Computer Operating Systems
Question #2 Report Error
What is the function of the Android 'NotificationManager'?
A. To send SMS
B. To post and manage notifications in the status bar
C. To manage alarm clocks
D. To handle intents

Correct Answer: Option B


Explanation:
NotificationManager is used to create, update, and cancel notifications displayed to the user.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux command is used to display disk usage in a human-readable format?
A. fdisk -l
B. du -h
C. lsblk
D. df -h

Correct Answer: Option D


Explanation:
df -h shows file system disk space usage in human-readable format (GB, MB).

This question belongs to: Computer Operating Systems