edited by
3,930 views

2 Answers

Best answer
2 votes
2 votes

Ans 3

The parent and child share only the shared memory segments.

Everything else (like stack , heap etc) is duplicated

selected by
2 votes
2 votes

Only memory segments are shared..

Heap and stack are being duplicated...

To remve the unnecessary copying of pages from parent to child copy-on-write methos is used...

Which pages have been modified in parent process only   copies into child address space..

Answer:

Related questions

0 votes
0 votes
1 answer
2
Sanjay Sharma asked Jul 11, 2016
2,334 views
In UNIX , processes that have finished execution but have not yet had their status collected are known as _________Sleeping processesStopped ProcessesZombie ProcessOrpha...