Question
Why can threads within one process communicate more easily than separate processes?
Select an option. Your answer will be checked instantly.
Correct Answer: D. They naturally share the process's memory and resources
Explanation:
Shared code and data let threads exchange information without establishing a separate IPC address space.
Synchronization is still required when multiple threads access shared mutable data.
Leave a Reply