Saved Bookmarks
| 1. |
If a process does not call exec after forking ____________(a) the program specified in the parameter to exec will replace the entire process(b) all the threads should be duplicated(c) all the threads should not be duplicated(d) none of the mentioned |
|
Answer» Correct option is (b) all the threads should be duplicated For explanation: The new process is purely based on fork, due to no exec command, duplication will be done. |
|