The loopback address routes packets internally to the local machine without using an external network link.
It is useful for testing network services and local client-server communication.
A socket is a communication endpoint identified by addressing information and a transport protocol.
It supports local or networked process communication depending on the socket family.
A named pipe appears as a file-system object and can connect processes without a parent-child relationship.
An anonymous pipe is usually inherited through process creation.
An ordinary pipe provides a byte-stream channel often used between related processes such as a parent and child.
It is not a memory-protection or storage-allocation structure.
Correct Answer: C. The send operation returns without waiting for the receiver to accept the message
Explanation:
A nonblocking send lets the sender continue after submitting the message.
Delivery or reception may complete later depending on buffering and IPC semantics.
Correct Answer: B. The sender waits until the message is accepted according to the communication semantics
Explanation:
A blocking send suspends the sender until the system or receiver has accepted the message as defined.
A nonblocking send returns control without waiting for that condition.
Indirect communication associates messages with a mailbox, port, or message queue.
Processes communicate by referring to that shared communication object.