Question
A web server creates a separate execution flow for each incoming request while sharing cached data. Which design is this?
Select an option. Your answer will be checked instantly.
Correct Answer: B. Multithreaded server
Explanation:
A multithreaded server can handle multiple client requests concurrently within one process.
Shared caches and code reduce duplication compared with creating a completely independent program for each request.
Leave a Reply