Ask Question

13) What are the benefits and detriments of each of the following? Consider both the systems and the programmers' levels. a. Symmetric and asymmetric communication b. Automatic and explicit buffering c. Send by copy and send by reference d. Fixed-sized and variable-sized messages

+1
Answers (1)
  1. 26 May, 23:01
    0
    Automatic and Explicit Buffering.

    In the case of explicit buffering, the length of the queue is provided while in automatic buffering the queue size needs to be indefinite. In automatic buffering there is no need to block the sender while coping the message. While in explicit buffering the sender is blocked for the space in queue.

    No memory is being wasted in explicit buffering.

    Send by Copy and Send by Reference.

    By using the send by copy method, the receiver is not able to change the state of parameter while send by reference allow. The advantage of using the send by reference method is that it allows to change a centralized application to its distributed version.

    Fixed-sized and Variable-sized Messages.

    In fixed size messaging refers, the buffer size is fixed. This means only a particular number of messages can only be supported by the fixed size buffer. The drawback of the fixed size messages is that they must be a part of fixed size buffer. These are not a part of variable size buffer. The advantage of variable size message is that the length of the message is variable means not fixed. The buffer length is unknown. The shared memory is being used by the variable size messages.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “13) What are the benefits and detriments of each of the following? Consider both the systems and the programmers' levels. a. Symmetric and ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers