Q. Shared-memory programming model?
In shared-memory programming model tasks share a common address space that they read and write asynchronously. Several mechanisms like semaphores / locks can be used to control access to shared memory. A benefit of this model from programmer's point of view is program development can frequently be simplified. A significant shortcoming of this model (in terms of performance) is that for this model data management is tough.