Which of the following is an example of one process with multiple threads?

In the context of a web server program using Java and Java Servlets, multiple threads can be utilized within the same process to handle concurrent client requests. This concurrency model allows the server to handle multiple connections simultaneously without creating a separate process for each connection, which is more efficient in terms of resource utilization.