Multiple Choices
(Choose 1 answer)
F
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-ti
B. Each user request results in a thread that calls the service method of the previously creat
C.
Multiple concurrent requests normally result in multiple threads calling service simultanec
D. Servlet can implement a special interface that stipulates that only a single thread is perm
one time.
E. When the server decides to unload a servlet, it first calls the servlet's destroy method.
F. All the others
Ex