
Servlet handles multiple request simultaneously.Every new request will be assigned to thread, then the thread calls service method.Init method will be called only once and same instance shared for all the requests. Am sending two requests to servlet ,which request will be executed first , please correct me if question is wrong.

The first request will execute first.