Q1. Explain the two models of interprocess communication? What are the strengths and weaknesses of the two approaches? Interprocess communication is the mechanism provided by the operating system that allows processes to communicate with each other. This communication could involve a process letting another process know that some event has occurred or transferring of data from one process to another. A diagram that illustrates interprocess communication is as follows: The models of interprocess communication are as follows : 1.Shared Memory Model Shared memory is the memory that can be simultaneously accessed by multiple processes. This is done so that the processes can communicate with each other. All POSIX systems, as well as Windows operating systems use shared memory. Advantage of Shared Memory Model Memory communication is faster on the shared memory model as compared to the mes...
competitive programming guides eg.algorithms,problems,tricks ,datastructure based on cp.