(Choose 1 answer)
Which statement(s) about Servlet Life Cycle is (are) correct? (Choose one)
A. When the servlet is first created, its init method is invoked, so that is where you put one-time setup code.
B. Each user request results in a thread that calls the service method of the previously created instance.
C. Multiple concurrent requests normally result in multiple threads calling service simultaneously.
D. Servlet can implement a special interface that stipulates that only a single thread is permitted to run at any one time.
E. When the server decides to unload a servlet, it first calls the servlet's destroy method.
F. All the others
Q: 25